Changeset 3425 for devel-tools
- Timestamp:
- Feb 23, 2008, 11:44:20 PM (13 years ago)
- Location:
- devel-tools/trunk/eclipse/org.refal.plus.rfpdt/src/org/refal/plus/rfpdt
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/src/org/refal/plus/rfpdt/comp/ast/AstCall.java
r3386 r3425 30 30 public String toString () { 31 31 String arg = this.arg.toString(); 32 return "<" + name + (arg.length() == 0 ? "" : " " + arg + " ") + ">";32 return "<" + name + (arg.length() == 0 ? "" : " " + arg) + ">"; 33 33 } 34 34 -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/src/org/refal/plus/rfpdt/core/builder/RfpBuilder.java
r3418 r3425 306 306 Expr env = new Expr(new Reference<org.refal.plus.comp.CompilerEnvironment>(externalCompilerEnvironment)); 307 307 Expr ast = RefalASGenerator.generateAS(astImplem); 308 org.refal.plus.compiler.rfpc.CompileASToJBC(env, ast); 308 Expr list = CallListGenerator.generateAS(astImplem); 309 org.refal.plus.compiler.rfpc.CompileASToJBC2(env, ast, list); 309 310 } catch (org.refal.plus.RefalException e) { 310 311 System.err.println(e);
Note: See TracChangeset
for help on using the changeset viewer.