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

add comment

parent 43da3738
No related branches found
No related tags found
No related merge requests found
Pipeline #84659 passed
...@@ -175,6 +175,8 @@ public class Lexer implements ITokenListContainer ...@@ -175,6 +175,8 @@ public class Lexer implements ITokenListContainer
int low = 0; int low = 0;
int high = tmp1.length - 1; 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) while(low <= high)
{ {
int middle = (low + high) / 2; int middle = (low + high) / 2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment