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