Skip to content
Snippets Groups Projects
Commit 152a4000 authored by Michael Leuschel's avatar Michael Leuschel
Browse files

add comment

parent 43da3738
Branches
Tags
No related merge requests found
Pipeline #84659 passed
......@@ -175,6 +175,8 @@ public class Lexer implements ITokenListContainer
int low = 0;
int high = tmp1.length - 1;
// find next DFA state depending on character c
// an entry {Low, Up, Id} -> means if Low <= c <= Up -> goto state Id
while(low <= high)
{
int middle = (low + high) / 2;
......@@ -194,7 +196,7 @@ public class Lexer implements ITokenListContainer
break;
}
}
}while(dfa_state < -1);
} while(dfa_state < -1);
}
else
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment