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

Method ToInterface

src/hx/cppia/Cppia.cpp:1419–1429  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1417
1418
1419 ToInterface(CppiaStream &stream,bool inArray)
1420 {
1421 toTypeId = stream.getInt();
1422 array = inArray;
1423 fromTypeId = array ? 0 : stream.getInt();
1424 value = createCppiaExpr(stream);
1425 interfaceInfo = 0;
1426 useNative = false;
1427 cppiaVTable = 0;
1428 toType = 0;
1429 }
1430
1431 const char *getName() HXCPP_OVERRIDE { return array ? "ToInterfaceArray" : "ToInterface"; }
1432

Callers

nothing calls this directly

Calls 2

createCppiaExprFunction · 0.85
getIntMethod · 0.45

Tested by

no test coverage detected