UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

13 lines (12 loc) 754 B
/// <reference types="node" /> /// <reference types="pouchdb-core" /> import ts from 'typescript'; import { ScriptBuilder } from '../../../sb'; import { Name } from '../../../scope'; import { VisitOptions } from '../../../types'; import { MemberLikeExpression } from '../../types'; import { SmartContractForBase } from '../SmartContractForBase'; export declare class SmartContractFor extends SmartContractForBase { protected emitInitial(sb: ScriptBuilder, _func: MemberLikeExpression, node: ts.CallExpression, addressName: Name, options: VisitOptions): void; protected emitInvoke(sb: ScriptBuilder, _func: MemberLikeExpression, node: ts.CallExpression, prop: ts.Declaration, addressName: Name, callBuffer: Buffer, options: VisitOptions): void; }