コード例 #1
0
ファイル: Let2.cs プロジェクト: NotJRM/jrm-code-project
 static SCode StandardMake(SimpleLambda rator, SCode arg0, SCode arg1)
 {
     return
         new SimpleLet2 (rator, arg0, arg1);
 }
コード例 #2
0
ファイル: Lambda.cs プロジェクト: NotJRM/jrm-code-project
 public object GetRealObject(StreamingContext context)
 {
     if (this.realObject == null)
         this.realObject = new SimpleLambda (this.name, this.formals,
             this.body, this.freeVariables);
     return this.realObject;
 }
コード例 #3
0
ファイル: Let2.cs プロジェクト: NotJRM/jrm-code-project
 public static SCode Make(SimpleLambda rator, SCode arg0, SCode arg1)
 {
     return StandardMake (rator, arg0, arg1);
 }