Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
Regexp Namespace Reference

Functions

void addToNFA (const char *regexpString, NFA::Builder *nfaBuilder, NFA::StateIndex initialState, NFA::StateIndex finalState)
 

Function Documentation

◆ addToNFA()

void Regexp::addToNFA ( const char * regexpString,
NFA::Builder * nfaBuilder,
NFA::StateIndex initialState,
NFA::StateIndex finalState )

Definition at line 335 of file Regexp.cpp.

336 {
337 Node* rootNode = parse(regexpString);
338 createNFA(nfaBuilder,rootNode,initialState,finalState);
339 delete rootNode;
340 }
Here is the caller graph for this function: