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

Function ReadExpressions

src/hx/cppia/Cppia.cpp:222–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

220CppiaExpr *createStaticAccess(CppiaExpr *inSrc, FieldStorage inType, void *inPtr);
221
222static void ReadExpressions(Expressions &outExpressions, CppiaStream &stream,int inN=-1)
223{
224 int count = inN>=0 ? inN : stream.getInt();
225 outExpressions.resize(count);
226
227 for(int i=0;i<count;i++)
228 outExpressions[i] = createCppiaExpr(stream);
229}
230
231
232

Callers 9

BlockExprMethod · 0.85
NewExprMethod · 0.85
CallStaticMethod · 0.85
CallGlobalMethod · 0.85
CallMethod · 0.85
CallMemberMethod · 0.85
ObjectDefMethod · 0.85
ArrayDefMethod · 0.85
SwitchExprMethod · 0.85

Calls 2

createCppiaExprFunction · 0.85
getIntMethod · 0.45

Tested by

no test coverage detected