From: Jean Privat Date: Wed, 12 Feb 2014 14:31:31 +0000 (-0500) Subject: rta: use `to_s_with_length` instead of `to_s` in literal strings X-Git-Tag: v0.6.4~31^2~7 X-Git-Url: http://nitlanguage.org rta: use `to_s_with_length` instead of `to_s` in literal strings This is more conform to the current nitg implementations. Signed-off-by: Jean Privat --- diff --git a/src/rapid_type_analysis.nit b/src/rapid_type_analysis.nit index 3c32689..be9ea34 100644 --- a/src/rapid_type_analysis.nit +++ b/src/rapid_type_analysis.nit @@ -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