コード例 #1
0
ファイル: Interpreter.cs プロジェクト: mlewicki12/trashml
 public TrashObject VisitMemberStmt(Stmt.Member stmt)
 {
     return(this.MemberStmt(stmt));
 }
コード例 #2
0
ファイル: Member.cs プロジェクト: mlewicki12/trashml
 public static TrashObject MemberStmt(this Interpreter interpreter, Stmt.Member stmt)
 {
     // this is NOT where we add the member to the class
     // this should theoretically never be visited
     throw new NotImplementedException();
 }