MCPcopy Create free account
hub / github.com/WheretIB/nullc / AddNumberNodeLong

Function AddNumberNodeLong

NULLC/Callbacks.cpp:634–637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

632 CodeInfo::nodeList.push_back(new NodeNumber((float)parseDouble(pos), typeFloat));
633}
634void AddNumberNodeLong(const char* pos, const char* end)
635{
636 CodeInfo::nodeList.push_back(new NodeNumber(parseLong(pos, end, 10), typeLong));
637}
638void AddNumberNodeDouble(const char* pos)
639{
640 CodeInfo::nodeList.push_back(new NodeNumber(parseDouble(pos), typeDouble));

Callers 1

ParseNumberFunction · 0.85

Calls 2

parseLongFunction · 0.85
push_backMethod · 0.45

Tested by

no test coverage detected