diff options
Diffstat (limited to 'compiler/dfa/dfa.go')
-rw-r--r-- | compiler/dfa/dfa.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dfa/dfa.go b/compiler/dfa/dfa.go index c56af90..777bd24 100644 --- a/compiler/dfa/dfa.go +++ b/compiler/dfa/dfa.go @@ -47,7 +47,7 @@ type DFA struct { TransitionTable map[string][256]string } -func GenDFA(root byteTree, symTab *symbolTable) *DFA { +func GenDFA(root byteTree, symTab *symbolTable) *DFA { initialState := root.first() initialStateHash := initialState.hash() stateMap := map[string]*symbolPositionSet{ |