示例#1
0
 public void Accept(IRuntimeVisitor visitor) => visitor.VisitLoadConstant(this);
示例#2
0
 public void Accept(IRuntimeVisitor visitor) => visitor.VisitLoadString(this);
示例#3
0
文件: VM.cs 项目: soltys/Melange
 public VM(IRuntimeVisitorFactory runtimeVisitor)
 {
     this.context        = new VMContext();
     this.runtimeVisitor = runtimeVisitor.Create(this.context);
 }
示例#4
0
 public void Accept(IRuntimeVisitor visitor) =>
 visitor.VisitLoadLibrary(this);
示例#5
0
 public void Accept(IRuntimeVisitor visitor) => visitor.VisitCall(this);
示例#6
0
 public void Accept(IRuntimeVisitor visitor) => visitor.VisitCompare(this);
示例#7
0
 public void Accept(IRuntimeVisitor visitor) => visitor.VisitBranch(this);