| 9309 | var ExternalModuleReferenceSyntax = (function (_super) { |
| 9310 | __extends(ExternalModuleReferenceSyntax, _super); |
| 9311 | function ExternalModuleReferenceSyntax(moduleOrRequireKeyword, openParenToken, stringLiteral, closeParenToken, parsedInStrictMode) { |
| 9312 | _super.call(this, parsedInStrictMode); |
| 9313 | this.moduleOrRequireKeyword = moduleOrRequireKeyword; |
| 9314 | this.openParenToken = openParenToken; |
| 9315 | this.stringLiteral = stringLiteral; |
| 9316 | this.closeParenToken = closeParenToken; |
| 9317 | } |
| 9318 | ExternalModuleReferenceSyntax.prototype.accept = function (visitor) { |
| 9319 | return visitor.visitExternalModuleReference(this); |
| 9320 | }; |