UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

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