(value)
| 43 | |
| 44 | const Identifier = module.exports.Identifier = class Identifier extends NotTagged { |
| 45 | constructor(value) { |
| 46 | super() |
| 47 | this.value = escapeIdentifier(value) |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | const Parameter = module.exports.Parameter = class Parameter extends NotTagged { |
nothing calls this directly
no test coverage detected