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

Method strToCase

src/hx/cppia/StringBuiltin.cpp:136–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134 }
135 #ifdef CPPIA_JIT
136 static void SLJIT_CALL strToCase(String *ioVal)
137 {
138 if (UPPER)
139 *ioVal = ioVal->toUpperCase();
140 else
141 *ioVal = ioVal->toLowerCase();
142 }
143
144 void genCode(CppiaCompiler *compiler, const JitVal &inDest,ExprType destType) HXCPP_OVERRIDE
145 {

Callers

nothing calls this directly

Calls 2

toUpperCaseMethod · 0.80
toLowerCaseMethod · 0.80

Tested by

no test coverage detected