Example #1
0
 public LetNode(Token t, IdeNode ide, Node definition, Node body, Env e)
     : base(t, e)
 {
     this.ide = ide;
     this.definition = definition;
     this.body = body;
 }
Example #2
0
 public void addExpression(Node e)
 {
     nodes.Add(e);
 }
Example #3
0
 public Compiler(string input, Node root)
 {
     this.input = input;
     this.root = root;
 }