@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
18 lines (16 loc) • 689 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PartiallyEmittedExpressionCompiler = void 0;
const tslib_1 = require("tslib");
const typescript_1 = tslib_1.__importDefault(require("typescript"));
const NodeCompiler_1 = require("../NodeCompiler");
class PartiallyEmittedExpressionCompiler extends NodeCompiler_1.NodeCompiler {
constructor() {
super(...arguments);
this.kind = typescript_1.default.SyntaxKind.PartiallyEmittedExpression;
}
visitNode(_sb, _expr, _options) {
}
}
exports.PartiallyEmittedExpressionCompiler = PartiallyEmittedExpressionCompiler;
//# sourceMappingURL=PartiallyEmittedExpressionCompiler.js.map