Example #1
0
 public void Compile(Compiler compiler)
 {
     KlassExpr.Compile(compiler);
     compiler.Push(new InsnGetMethod(Selector, mInfo));
 }
Example #2
0
 public void Compile(Compiler compiler)
 {
     mValueExpr.Compile(compiler);
     compiler.Push(new InsnDefVar(mSymbol, mInfo));
 }
Example #3
0
 public void Compile(Compiler compiler)
 {
     compiler.Push(new InsnGetVar(Symbol, mInfo));
 }
Example #4
0
 public void Compile(Compiler compiler)
 {
     compiler.Push(new InsnPush(mValue));
 }
Example #5
0
 public void Compile(Compiler compiler)
 {
     mKlassExpr.Compile(compiler);
     mValueExpr.Compile(compiler);
     compiler.Push(new InsnSetMethod(mSelector, mInfo));
 }