compiler/PPCContext.st
changeset 421 7e08b31e0dae
parent 419 5c502ab8e87d
child 422 116d2b2af905
--- a/compiler/PPCContext.st	Wed Nov 19 10:52:37 2014 +0000
+++ b/compiler/PPCContext.st	Mon Nov 24 00:09:23 2014 +0000
@@ -235,23 +235,19 @@
 !
 
 remember
-        | memento |
+	| memento |
 "
-        ^ position
+	^ position
 "
-        memento := PPCContextMemento new
-                position: position;
-                yourself.
-                
-        self rememberProperties: memento.
-        "JK: Just while developing"
-        "
-        rc := rc + 1.
-        (rc > ((self size + 1)* 1000*1000)) ifTrue: [ self error: 'Hey, this is not normal, is it?' ].
-        "
-        ^ memento
-
-    "Modified (comment): / 08-11-2014 / 02:08:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+	memento := PPCContextMemento new
+		position: position;
+		yourself.
+		
+	self rememberProperties: memento.
+	"JK: Just while developing"
+	rc := rc + 1.
+	(rc > ((self size + 1)* 1000*1000)) ifTrue: [ self error: 'Hey, this is not normal, is it?' ].
+	^ memento
 !
 
 rememberProperties: aPPContextMemento