UNPKG

js-ast-parser

Version:
16 lines 668 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExportDeclarationStatement = void 0; const constants_1 = require("../../constants"); const Statement_1 = require("./Statement"); class ExportDeclarationStatement extends Statement_1.Statement { constructor(currentToken) { super(); this.type = 'ExportDeclarationStatement'; this.code = constants_1.NodeCode.ExportDeclarationStatement; this.specifiers = []; this.loc.start = currentToken.loc.start; } } exports.ExportDeclarationStatement = ExportDeclarationStatement; //# sourceMappingURL=ExportDeclarationStatement.js.map