コード例 #1
0
ファイル: DebugVMCompiler.java プロジェクト: higuchi-y/nez
 public Instruction encodeExpression(Expression e, Instruction next, Instruction failjump) {
   return e.encode(this, next, failjump);
 }
コード例 #2
0
ファイル: DebugVMCompiler.java プロジェクト: higuchi-y/nez
 @Override
 public Instruction encode(Expression e, Instruction next, Instruction failjump) {
   throw new RuntimeException("undifined encode method " + e.getClass());
 }