|
c4bcb465da
|
Remove std.stdio import and printing of unexpected tokens
|
2023-07-17 21:57:31 -04:00 |
|
|
d39fa61af0
|
Remove D language reference from test names
|
2023-07-15 14:19:30 -04:00 |
|
|
6333762414
|
Add user guide math expression example
|
2023-07-14 20:32:50 -04:00 |
|
|
4942c76551
|
Show rule ID and rule set ID in reduce actions log section
|
2023-07-14 16:52:00 -04:00 |
|
|
653b4e00f6
|
Add testutils module with assert_eq()
|
2023-07-14 15:48:44 -04:00 |
|
|
5ce562cbc3
|
Allow configuring API prefix - close #9
|
2023-07-13 18:06:24 -04:00 |
|
|
7d7929a358
|
Compact some of the table output
|
2023-07-12 19:51:35 -04:00 |
|
|
424ddfe55a
|
Output position info for various error return codes - close #10
|
2023-07-12 19:22:44 -04:00 |
|
|
ce22e3465b
|
Use consistent styling
Prefix public symbols with "p_".
User lowercase for all type aliases.
Clean up some comments.
|
2023-07-12 16:45:59 -04:00 |
|
|
c7bca74d3e
|
Use symbol_id instead of token_id for shift table entries
|
2023-07-12 15:51:07 -04:00 |
|
|
7a1b4064c1
|
Switch to new API - close #8
The new API is more C-like and will allow consistency across all future
supported language targets.
|
2023-07-12 15:46:13 -04:00 |
|
|
e0e5e87338
|
Move public types to the top
|
2023-07-12 13:52:24 -04:00 |
|
|
779ba052c1
|
Use P_SUCCESS instead of P_TOKEN
|
2023-07-11 15:43:15 -04:00 |
|
|
eee6513384
|
Remove outer namespacing class
|
2023-07-10 22:54:33 -04:00 |
|
|
78ce7fb77a
|
Replace 'ref' arguments with plain pointers
|
2023-07-10 22:40:03 -04:00 |
|
|
ad768711ff
|
Use size_t to hold runtime object IDs and INVALID_ID
|
2023-07-10 22:32:33 -04:00 |
|
|
a2338a8fca
|
Add ShiftID
|
2023-07-10 22:28:48 -04:00 |
|
|
612eb12545
|
Add RuleID
|
2023-07-10 22:27:53 -04:00 |
|
|
ef7488747c
|
Add StateID
|
2023-07-10 22:25:28 -04:00 |
|
|
950fafc872
|
Add SymbolID
|
2023-07-10 22:17:54 -04:00 |
|
|
9dbae78724
|
Add ReduceID type
|
2023-07-10 21:55:49 -04:00 |
|
|
f973e9dc2c
|
Rename lexer and parser State structs to avoid conflicts
|
2023-07-10 11:21:45 -04:00 |
|
|
1c50d37a3e
|
Add Position struct to track text positions
|
2023-07-10 11:18:57 -04:00 |
|
|
80ac6c17f0
|
Replace Token struct with integer type
Replace _TOKEN_COUNT with INVALID_TOKEN_ID.
|
2023-07-09 22:35:02 -04:00 |
|
|
6327bd1e96
|
Use plain integer type for UserCodeID
|
2023-07-08 17:01:54 -04:00 |
|
|
36ad6e0d1b
|
Build Lexer and Parser tables upon construction
|
2023-07-08 16:52:58 -04:00 |
|
|
ffd02c16d1
|
Add StateID; remove TransitionResult
|
2023-07-08 16:46:38 -04:00 |
|
|
0a7938038b
|
Make RuleSet#id read-only
|
2023-07-08 11:17:11 -04:00 |
|
|
6daca1e73f
|
Add INVALID_ID
|
2023-07-08 10:49:56 -04:00 |
|
|
83a4037740
|
Return a lexer error on unexpected input - close #3
|
2023-07-08 10:36:58 -04:00 |
|
|
ecef933255
|
Consolidate return codes
|
2023-07-08 09:23:31 -04:00 |
|
|
0232b204c6
|
Return integer result code from Parser.parse()
|
2023-07-08 08:52:21 -04:00 |
|
|
c88338698a
|
Store whether a state accepts, not whether it drops
|
2023-07-08 08:29:33 -04:00 |
|
|
8a377b4950
|
Just return integer result code from Lexer.lex_token()
|
2023-07-08 08:08:36 -04:00 |
|
|
0d0da49cd5
|
Just return integer result code from Lexer.find_longest_match()
|
2023-07-05 17:07:48 -04:00 |
|
|
d56cc2deeb
|
Just return integer result code from Decoder.decode_code_point()
|
2023-07-05 16:54:52 -04:00 |
|
|
9e33a32930
|
Store code_point_length in a ubyte
|
2023-07-05 16:45:03 -04:00 |
|
|
02d99082b2
|
Allow switching on Decoder.Result
|
2023-07-04 12:49:54 -04:00 |
|
|
9895733a05
|
Switch unit tests from gdc to ldc2
|
2023-06-29 19:16:36 -04:00 |
|
|
11348ca351
|
Add FindLongestMatchResult
|
2023-06-04 21:14:07 -04:00 |
|
|
6b0fb4cb12
|
Add return type for transition()
|
2023-06-03 20:38:42 -04:00 |
|
|
b78827746a
|
Return a Token object from Lexer.user_code()
|
2023-03-17 20:24:48 -04:00 |
|
|
ce80e00e60
|
Remove TOKEN_DECODE_ERROR
|
2023-03-17 20:01:55 -04:00 |
|
|
01b45df1f9
|
Remove TOKEN_DROP
|
2023-03-17 19:58:54 -04:00 |
|
|
ffccc659aa
|
Clean up Lexer.State a bit
|
2023-03-14 19:38:42 -04:00 |
|
|
e432f62b05
|
Add UserCodeID struct to represent user code IDs
|
2023-03-13 21:56:18 -04:00 |
|
|
058945e08b
|
Add Token struct with validity checks
|
2023-03-13 16:14:50 -04:00 |
|
|
f402315201
|
Name internally generated tokens with double-underscore
|
2023-03-13 14:13:13 -04:00 |
|
|
d10e982fc8
|
Reserve double-underscore identifiers for internal use
|
2023-03-13 14:12:12 -04:00 |
|
|
64974cc1e2
|
Refactor some of Lexer.attempt_lex_token() into find_longest_match()
|
2023-03-12 21:19:03 -04:00 |
|