UNPKG

js-ast-parser

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