summaryrefslogtreecommitdiff
path: root/sources/scalac/Global.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/Global.java')
-rw-r--r--sources/scalac/Global.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/scalac/Global.java b/sources/scalac/Global.java
index d9aa03947b..6cfcb77ba5 100644
--- a/sources/scalac/Global.java
+++ b/sources/scalac/Global.java
@@ -15,7 +15,7 @@ import scalac.ast.*;
import scalac.ast.parser.*;
import scalac.symtab.Definitions;
import scalac.ast.printer.*;
-//import scalac.backend.Primitives;
+import scalac.backend.Primitives;
/** The global environment of a compiler run
@@ -90,7 +90,7 @@ public class Global {
/** the global primitives
*/
- //public Primitives primitives;
+ public Primitives primitives;
/** compilation phases.
*/
@@ -165,7 +165,7 @@ public class Global {
this.make = new TreeCreator();
this.currentPhase = PhaseDescriptor.INITIAL;
this.definitions = new Definitions(this);
- //this.primitives = new Primitives(this);
+ this.primitives = new Primitives(this);
this.treeGen = new TreeGen(this, make);
this.PHASE = args.phases;
List phases = new ArrayList();