UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

14 lines (12 loc) 390 B
import ts from 'typescript'; import { NodeCompiler } from '../NodeCompiler'; export class DebuggerStatementCompiler extends NodeCompiler { constructor() { super(...arguments); this.kind = ts.SyntaxKind.DebuggerStatement; } visitNode(sb, node, _options) { sb.context.reportUnsupported(node); } } //# sourceMappingURL=DebuggerStatementCompiler.js.map