UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

11 lines (9 loc) 318 B
import { BuiltinInstanceOf } from './BuiltinInstanceOf'; import { BuiltinType } from './types'; export class BuiltinNew extends BuiltinInstanceOf { constructor() { super(...arguments); this.types = new Set([BuiltinType.InstanceOf, BuiltinType.New]); } } //# sourceMappingURL=BuiltinNew.js.map