Files
2020-05-26 10:37:57 +02:00

32 lines
1.1 KiB
JavaScript

"use strict"
const skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g
const tt = require("acorn").tokTypes
module.exports = function(Parser) {
return class extends Parser {
parseExport(node, exports) {
skipWhiteSpace.lastIndex = this.pos
const skip = skipWhiteSpace.exec(this.input)
const next = this.input.charAt(this.pos + skip[0].length)
if (next !== "*") return super.parseExport(node, exports)
this.next()
const specifier = this.startNode()
this.expect(tt.star)
if (this.eatContextual("as")) {
node.declaration = null
specifier.exported = this.parseIdent(true)
this.checkExport(exports, specifier.exported.name, this.lastTokStart)
node.specifiers = [this.finishNode(specifier, "ExportNamespaceSpecifier")]
}
this.expectContextual("from")
if (this.type !== tt.string) this.unexpected()
node.source = this.parseExprAtom()
this.semicolon()
return this.finishNode(node, node.specifiers ? "ExportNamedDeclaration" : "ExportAllDeclaration")
}
}
}