From: Jean-Christophe Beaupré Date: Fri, 8 Jul 2016 22:02:37 +0000 (-0400) Subject: global_compiler: Write errors to stderr X-Git-Url: http://nitlanguage.org global_compiler: Write errors to stderr Signed-off-by: Jean-Christophe Beaupré --- diff --git a/src/compiler/global_compiler.nit b/src/compiler/global_compiler.nit index 628e78a..d050876 100644 --- a/src/compiler/global_compiler.nit +++ b/src/compiler/global_compiler.nit @@ -151,7 +151,7 @@ class GlobalCompiler if self.classids.has_key(mtype) then return self.classids[mtype] end - print "No classid for {mtype}" + print_error "No classid for {mtype}" abort end @@ -523,7 +523,7 @@ class GlobalCompilerVisitor fun check_valid_reciever(recvtype: MClassType) do if self.compiler.runtime_type_analysis.live_types.has(recvtype) or recvtype.mclass.name == "Object" then return - print "{recvtype} is not a live type" + print_error "{recvtype} is not a live type" abort end