rta: use `to_s_with_length` instead of `to_s` in literal strings
authorJean Privat <jean@pryen.org>
Wed, 12 Feb 2014 14:31:31 +0000 (09:31 -0500)
committerJean Privat <jean@pryen.org>
Wed, 12 Feb 2014 14:55:35 +0000 (09:55 -0500)
This is more conform to the current nitg implementations.

Signed-off-by: Jean Privat <jean@pryen.org>

src/rapid_type_analysis.nit

index 3c32689..be9ea34 100644 (file)
@@ -428,7 +428,7 @@ redef class AStringFormExpr
        do
                var native = v.get_class("NativeString").mclass_type
                v.add_type(native)
-               var prop = v.get_method(native, "to_s")
+               var prop = v.get_method(native, "to_s_with_length")
                v.add_monomorphic_send(native, prop)
        end
 end