예제 #1
0
 public void Compile(Compiler compiler)
 {
     KlassExpr.Compile(compiler);
     compiler.Push(new InsnGetMethod(Selector, mInfo));
 }
예제 #2
0
파일: ExprDefVar.cs 프로젝트: takuto-h/rhea
 public void Compile(Compiler compiler)
 {
     mValueExpr.Compile(compiler);
     compiler.Push(new InsnDefVar(mSymbol, mInfo));
 }
예제 #3
0
파일: ExprGetVar.cs 프로젝트: takuto-h/rhea
 public void Compile(Compiler compiler)
 {
     compiler.Push(new InsnGetVar(Symbol, mInfo));
 }
예제 #4
0
파일: ExprConst.cs 프로젝트: takuto-h/rhea
 public void Compile(Compiler compiler)
 {
     compiler.Push(new InsnPush(mValue));
 }
예제 #5
0
 public void Compile(Compiler compiler)
 {
     mKlassExpr.Compile(compiler);
     mValueExpr.Compile(compiler);
     compiler.Push(new InsnSetMethod(mSelector, mInfo));
 }