Example #1
0
 public EthSharpSyntaxVisitor(EthSharpCompilerContext context)
 {
     Context = context;
 }
 public EthSharpCompiler(SyntaxTree root)
 {
     Context       = new EthSharpCompilerContext(root);
     SyntaxVisitor = new EthSharpSyntaxVisitor(Context);
 }