tests: add tests for multi-iterators
[nit.git] / lib / cpp.nit
index bd113dd..a09d634 100644 (file)
@@ -14,9 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# Offers features to interface with C++ code and libraries
+# Services for compatibility with C++ code and libraries
 module cpp is
-       new_annotation cpp_compiler_option
+       new_annotation cppflags
 end
 
 # A pointer to a C++ std::string instance
@@ -25,12 +25,12 @@ end
 
 redef class Text
        # Get `self` as a `CppString`
-       fun to_cpp_string: CppString do return to_cstring.to_cpp_string
+       fun to_cpp_string: CppString do return to_cstring.to_cpp_string(length)
 end
 
 redef class NativeString
        # Get `self` as a `CppString`
-       fun to_cpp_string: CppString in "C++" `{
-               return new std::string(recv);
+       fun to_cpp_string(length: Int): CppString in "C++" `{
+               return new std::string(self, length);
        `}
 end