compiler/benchmarks/PPCSmalltalkNoopParser.st
changeset 477 b18b6cc7aabc
parent 462 89464ab03518
child 503 ff58cd9f1f3c
--- a/compiler/benchmarks/PPCSmalltalkNoopParser.st	Fri May 29 07:25:31 2015 +0100
+++ b/compiler/benchmarks/PPCSmalltalkNoopParser.st	Mon Jun 01 22:02:17 2015 +0100
@@ -23,12 +23,10 @@
 !
 
 startMethod
-        "Make sure the method node has the source code properly set."
-        
-        ^ ([ :stream | stream collection ] asParser and , super startMethod)
-                map: [ :source :node | ]
-
-    "Modified: / 16-05-2015 / 09:47:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+	"Make sure the method node has the source code properly set."
+	
+	^ ([ :stream | stream collection ] asParser and , super startMethod)
+		map: [ :source :node | node source: source ]
 ! !
 
 !PPCSmalltalkNoopParser methodsFor:'grammar'!