typing: Added typing resolution for `ACallrefExpr`
[nit.git] / src / compiler / abstract_compiler.nit
index a6fdb2c..b512cdd 100644 (file)
@@ -2215,7 +2215,6 @@ abstract class AbstractRuntimeFunction
         # Step 6
         protected fun declare_signature(v: VISITOR, signature: String) is abstract
 
-
         # Generate the code for the body without return statement at the end and
         # no curly brace.
         # Step 7
@@ -2349,7 +2348,6 @@ abstract class ThunkFunction
 
 end
 
-
 # A runtime variable hold a runtime value in C.
 # Runtime variables are associated to Nit local variables and intermediate results in Nit expressions.
 #
@@ -4374,6 +4372,14 @@ redef class ASendExpr
        end
 end
 
+redef class ACallrefExpr
+        redef fun expr(v)
+        do
+                v.add_abort("NOT YET IMPLEMENTED callref expressions.")
+                return null
+        end
+end
+
 redef class ASendReassignFormExpr
        redef fun stmt(v)
        do