示例#1
0
 public void Compile(Compiler compiler)
 {
     KlassExpr.Compile(compiler);
     compiler.Push(new InsnGetMethod(Selector, mInfo));
 }
示例#2
0
 public void Compile(Compiler compiler)
 {
     mValueExpr.Compile(compiler);
     compiler.Push(new InsnDefVar(mSymbol, mInfo));
 }
示例#3
0
 public void Compile(Compiler compiler)
 {
     compiler.Push(new InsnGetVar(Symbol, mInfo));
 }
示例#4
0
 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));
 }