MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / sub

Method sub

src/simulate/simulate_fn_hash.cpp:97–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95 write(argN);
96 }
97 virtual void sub ( SimNode ** nodes, uint32_t count, const char * argN ) override {
98 write(&count, sizeof(count));
99 write(argN);
100 for ( uint32_t t=0; t!=count; ++t ) {
101 nodes[t] = nodes[t]->visit(*this);
102 }
103 }
104 virtual SimNode * sub ( SimNode * node, const char * opN ) override {
105 write(opN);
106 return SimVisitor::sub(node, opN);

Callers

nothing calls this directly

Calls 3

subFunction · 0.85
writeFunction · 0.50
visitMethod · 0.45

Tested by

no test coverage detected