IRTranslator.st
changeset 3 c9845c180bd4
parent 2 6e1de7f85d59
child 5 b94aea1d3710
--- a/IRTranslator.st	Wed Sep 17 10:30:02 2008 +0000
+++ b/IRTranslator.st	Mon Nov 03 17:02:40 2008 +0000
@@ -309,9 +309,18 @@
 
 !IRTranslator methodsFor:'results'!
 
+bytecodes
+
+    ^gen bytecodes
+
+    "Created: / 03-11-2008 / 09:23:01 / Jan Vrany <vranyj1@fel.cvut.cz>"
+!
+
 compiledMethod
 
-	^ gen compiledMethodWith: trailerBytes
+        ^ gen compiledMethod
+
+    "Modified: / 03-11-2008 / 09:22:36 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
 compiledMethodUsing: aCompiledMethodClass
@@ -321,14 +330,11 @@
     "Modified: / 17-09-2008 / 12:18:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
-compiledMethodWith: trailer
+literals
 
-	^ gen compiledMethodWith: trailer
-!
+    ^gen literals
 
-compiledMethodWith: trailer using: aCompiledMethodClass
-
-	^ gen compiledMethodWith: trailer using: aCompiledMethodClass
+    "Created: / 03-11-2008 / 09:23:08 / Jan Vrany <vranyj1@fel.cvut.cz>"
 ! !
 
 !IRTranslator class methodsFor:'documentation'!