コード例 #1
0
ファイル: ExprGetMethod.cs プロジェクト: takuto-h/rhea
 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
ファイル: ExprSetMethod.cs プロジェクト: takuto-h/rhea
 public void Compile(Compiler compiler)
 {
     mKlassExpr.Compile(compiler);
     mValueExpr.Compile(compiler);
     compiler.Push(new InsnSetMethod(mSelector, mInfo));
 }