UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

22 lines (21 loc) 2.02 kB
import { BlockCompiler } from './BlockCompiler'; import { BreakStatementCompiler } from './BreakStatementCompiler'; import { ContinueStatementCompiler } from './ContinueStatementCompiler'; import { DebuggerStatementCompiler } from './DebuggerStatementCompiler'; import { DoStatementCompiler } from './DoStatementCompiler'; import { EmptyStatementCompiler } from './EmptyStatementCompiler'; import { ExpressionStatementCompiler } from './ExpressionStatementCompiler'; import { ForInStatementCompiler } from './ForInStatementCompiler'; import { ForOfStatementCompiler } from './ForOfStatementCompiler'; import { ForStatementCompiler } from './ForStatementCompiler'; import { IfStatementCompiler } from './IfStatementCompiler'; import { LabeledStatementCompiler } from './LabeledStatementCompiler'; import { NotEmittedStatementCompiler } from './NotEmittedStatementCompiler'; import { ReturnStatementCompiler } from './ReturnStatementCompiler'; import { SwitchStatementCompiler } from './SwitchStatementCompiler'; import { ThrowStatementCompiler } from './ThrowStatementCompiler'; import { TryStatementCompiler } from './TryStatementCompiler'; import { VariableStatementCompiler } from './VariableStatementCompiler'; import { WhileStatementCompiler } from './WhileStatementCompiler'; import { WithStatementCompiler } from './WithStatementCompiler'; export declare const statements: (typeof BlockCompiler | typeof BreakStatementCompiler | typeof ContinueStatementCompiler | typeof DebuggerStatementCompiler | typeof DoStatementCompiler | typeof EmptyStatementCompiler | typeof ExpressionStatementCompiler | typeof ForInStatementCompiler | typeof ForOfStatementCompiler | typeof ForStatementCompiler | typeof IfStatementCompiler | typeof LabeledStatementCompiler | typeof NotEmittedStatementCompiler | typeof ReturnStatementCompiler | typeof SwitchStatementCompiler | typeof ThrowStatementCompiler | typeof TryStatementCompiler | typeof VariableStatementCompiler | typeof WhileStatementCompiler | typeof WithStatementCompiler)[];