MCPcopy Create free account
hub / github.com/TASEmulators/fceux / generateCondition

Function generateCondition

src/conddebug.cpp:515–528  ·  view source on GitHub ↗

Root of the parser generator */

Source from the content-addressed store, hash-verified

513
514/* Root of the parser generator */
515Condition* generateCondition(const char* str)
516{
517 Condition* c;
518
519 scan(&str);
520 c = Connect(&str);
521
522 if (!c || next != 0)
523 {
524 if (c) delete c;
525 return 0;
526 }
527 else return c;
528}

Callers 2

checkConditionFunction · 0.85
conditionTextChangedMethod · 0.85

Calls 2

scanFunction · 0.85
ConnectFunction · 0.85

Tested by

no test coverage detected