compiler/PPCConfiguration.st
changeset 530 e36906742693
parent 529 439c4057517f
child 531 dc3d13c2837d
--- a/compiler/PPCConfiguration.st	Mon Aug 24 23:42:53 2015 +0100
+++ b/compiler/PPCConfiguration.st	Tue Aug 25 01:30:32 2015 +0100
@@ -3,7 +3,7 @@
 "{ NameSpace: Smalltalk }"
 
 Object subclass:#PPCConfiguration
-	instanceVariableNames:'options ir history'
+	instanceVariableNames:'context options ir history'
 	classVariableNames:''
 	poolDictionaries:''
 	category:'PetitCompiler-Core'
@@ -158,9 +158,10 @@
 
 initialize
     history := OrderedCollection new.
+    context := PPCCompilationContext new.
     options := PPCCompilationOptions default.
 
-    "Modified: / 24-08-2015 / 23:39:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 25-08-2015 / 00:02:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !PPCConfiguration methodsFor:'phases'!