199 Commits

Author SHA1 Message Date
d6779aef00 Start on Parser#build_tables 2021-09-22 23:26:36 -04:00
997f34a1e4 Keep track of item set in-links 2021-09-21 21:32:18 -04:00
a2795bb531 Keep track of follow item sets by symbol for each item set 2021-09-21 17:09:53 -04:00
5f7e548fe3 Remove Rule::Pattern, Item stores a Rule reference 2021-09-06 19:41:29 -04:00
7bdaf7cdbc Do not create item set following EOF token 2021-09-05 07:51:59 -04:00
2c8f3c6e9a Avoid infinite loop with self-referential rules 2021-09-04 22:29:10 -04:00
9dffa3c41a Recursively build item sets 2021-08-29 12:38:44 -04:00
ceb7e9ee32 Add EOF token to Start rule patterns 2021-08-29 11:48:49 -04:00
6026bf1514 Start building following item sets 2021-08-29 09:41:00 -04:00
9cc1890ddc One Rule object stores all alternative patterns 2021-08-28 10:28:50 -04:00
e4f2fffe50 add Item#closed_items 2021-08-28 09:47:01 -04:00
d931bcb513 Do not expand rules 2021-08-28 09:23:08 -04:00
2e16b0bd6e Start on Item and ItemSet 2021-08-28 09:02:19 -04:00
6ce94e15af Expand rules 2021-08-28 08:11:06 -04:00
3f92ae46c4 Map rule components to Token/Rule references 2021-08-22 21:21:41 -04:00
00016f16b3 Combine Grammar and Generator into top-level Imbecile class 2021-08-22 21:04:46 -04:00
9273bfccf6 Move Token/Rule out of Grammar class 2021-08-19 20:00:40 -04:00
f295acb593 Generator builds a Lexer, not a Lexer::DFA 2021-08-19 13:11:12 -04:00
51a31317a6 Move FA#build_tables to Lexer::DFA 2021-08-19 11:55:34 -04:00
9459883e74 Add Lexer class; Move LexerDFA to Lexer::DFA 2021-08-18 17:09:45 -04:00
28591907c1 Move FA class out of Regex class 2021-08-18 17:05:03 -04:00
37d6917b49 Rework Rule constructor 2021-07-27 21:22:46 -04:00
2685c05360 Change rule syntax 2021-07-19 21:55:08 -04:00
578e165e2d Fix off-by-one error in state IDs 2021-07-06 11:44:03 -04:00
c96d55b031 Fix class name 2021-07-06 10:14:14 -04:00
24d12be3b9 Add TOKEN enum entries for EOF, decode error, drop, and none 2021-07-05 20:11:55 -04:00
4beb3d2016 Add some token constants 2021-06-27 23:09:42 -04:00
93cb25df62 Do not generate token names for drop tokens 2021-06-26 16:16:18 -04:00
98584ce07a Add FA#build_tables 2021-06-24 15:06:10 -04:00
2122ca02fe Start generating lexer states and transitions 2021-06-23 23:15:02 -04:00
5881f13380 Generate enum of token identifiers 2021-06-23 22:22:45 -04:00
ebc1d8f001 Fix FA#to_s to show correct destination state 2021-06-23 22:21:53 -04:00
5fecd5c6a2 Refactor into FA#enumerate 2021-06-22 22:01:39 -04:00
5b688b090d Add some attr_readers 2021-06-21 22:52:27 -04:00
f77218801f Error if Start rule not found 2021-06-21 22:48:17 -04:00
70118dd019 Check for duplicate token/rule names in Generator 2021-06-21 22:34:43 -04:00
d552f2a540 CLI: accept --log option 2021-06-19 12:06:02 -04:00
d2fac07249 Add Generator class 2021-06-15 16:51:36 -04:00
a34272dfd6 Add Grammar::Rule class 2021-06-14 22:49:43 -04:00
9d05861819 Parse grammar input by multiline regex 2021-06-12 22:57:32 -04:00
db70f8b94d Add "drop" grammar keyword to drop patterns 2021-06-09 22:48:30 -04:00
f67dd62b20 Add \s to expand to whitespace characters 2021-06-09 22:37:00 -04:00
c6bac6d3a1 Rename TokenDFA -> LexerDFA 2021-06-08 13:54:46 -04:00
930ac56148 Do not accept 0-length tokens 2021-06-06 15:29:30 -04:00
7f54778ba8 Rename Regex::DFA to TokenDFA 2021-06-06 15:18:21 -04:00
701903def2 Token should build its own NFA 2021-06-06 14:09:28 -04:00
afea886ecb Add Grammar::Token class 2021-06-06 14:04:33 -04:00
03b2e87186 Grammar takes in input string instead of file name 2021-06-06 10:09:53 -04:00
e4370cac62 Print accepting token in FA#to_s 2021-06-06 09:59:28 -04:00
ed3f599e25 Create common FA/State/Transition classes across NFA/DFA 2021-06-06 09:41:23 -04:00