nitg-s: changed module importation for module coloring
authorAlexandre Terrasa <alexandre@moz-code.org>
Thu, 7 Feb 2013 16:33:54 +0000 (11:33 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Mon, 4 Mar 2013 18:20:00 +0000 (13:20 -0500)
Coloring now imports typing. Importation of rapid_type_analysis is done by separate_compiler

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/coloring.nit
src/separate_compiler.nit

index 1151a0c..bf591cb 100644 (file)
@@ -15,7 +15,7 @@
 # Graph coloring tools
 module coloring
 
-import rapid_type_analysis # for type coloration
+import typing
 
 abstract class AbstractColoring[E: Object]
 
index 34e378f..2efaa3e 100644 (file)
@@ -16,7 +16,8 @@
 module separate_compiler
 
 import abstract_compiler
-import coloring
+intrude import coloring
+import rapid_type_analysis
 
 # Add separate compiler specific options
 redef class ToolContext