| Server IP : 217.160.0.135 / Your IP : 216.73.217.37 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/nodejs/acorn-export-ns-from/ |
Upload File : |
"use strict"
const skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g
module.exports = function(Parser) {
const tt = (Parser.acorn || require("acorn")).tokTypes
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()
this.expect(tt.star)
if (this.eatContextual("as")) {
node.exported = this.parseIdent(true)
this.checkExport(exports, node.exported.name, node.exported.start)
} else node.exported = null
this.expectContextual("from")
if (this.type !== tt.string) this.unexpected()
node.source = this.parseExprAtom()
this.semicolon()
return this.finishNode(node, "ExportAllDeclaration")
}
}
}