UNPKG

js-ast-parser

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