コード例 #1
0
ファイル: Node.cs プロジェクト: JammyITA/APFebAss
 public LetNode(Token t, IdeNode ide, Node definition, Node body, Env e)
     : base(t, e)
 {
     this.ide = ide;
     this.definition = definition;
     this.body = body;
 }
コード例 #2
0
ファイル: Node.cs プロジェクト: JammyITA/APFebAss
 public void addExpression(Node e)
 {
     nodes.Add(e);
 }
コード例 #3
0
ファイル: Compiler.cs プロジェクト: JammyITA/APFebAss
 public Compiler(string input, Node root)
 {
     this.input = input;
     this.root = root;
 }