MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / runSubstring

Method runSubstring

src/hx/cppia/StringBuiltin.cpp:63–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61 *ioValue = ioValue->substr(start, Dynamic(end));
62 }
63 static void SLJIT_CALL runSubstring(String *ioValue, int start, hx::Object *end)
64 {
65 *ioValue = ioValue->substring(start, Dynamic(end));
66 }
67 void genCode(CppiaCompiler *compiler, const JitVal &inDest,ExprType destType) HXCPP_OVERRIDE
68 {
69 JitTemp ioValue(compiler,jtString);

Callers

nothing calls this directly

Calls 2

substringMethod · 0.80
DynamicClass · 0.50

Tested by

no test coverage detected