UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

13 lines (11 loc) 375 B
import ts from 'typescript'; import { NodeCompiler } from '../NodeCompiler'; export class PartiallyEmittedExpressionCompiler extends NodeCompiler { constructor() { super(...arguments); this.kind = ts.SyntaxKind.PartiallyEmittedExpression; } visitNode(_sb, _expr, _options) { } } //# sourceMappingURL=PartiallyEmittedExpressionCompiler.js.map