@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
14 lines (12 loc) • 387 B
JavaScript
import ts from 'typescript';
import { NodeCompiler } from '../NodeCompiler';
export class DeleteExpressionCompiler extends NodeCompiler {
constructor() {
super(...arguments);
this.kind = ts.SyntaxKind.DeleteExpression;
}
visitNode(sb, expr, _options) {
sb.context.reportUnsupported(expr);
}
}
//# sourceMappingURL=DeleteExpressionCompiler.js.map