-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parser implementation #139
Merged
Merged
Commits on Aug 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c6c5584 - Browse repository at this point
Copy the full SHA c6c5584View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7b98b6 - Browse repository at this point
Copy the full SHA a7b98b6View commit details -
This is a port of Farkle 6's `StackNeo`.
Configuration menu - View commit details
-
Copy full SHA for ddfcc37 - Browse repository at this point
Copy the full SHA ddfcc37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 95037d7 - Browse repository at this point
Copy the full SHA 95037d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d2a0a9 - Browse repository at this point
Copy the full SHA 9d2a0a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1be2ba8 - Browse repository at this point
Copy the full SHA 1be2ba8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d768c6 - Browse repository at this point
Copy the full SHA 4d768c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 50479b2 - Browse repository at this point
Copy the full SHA 50479b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b34d83 - Browse repository at this point
Copy the full SHA 0b34d83View commit details -
Configuration menu - View commit details
-
Copy full SHA for d13f5c4 - Browse repository at this point
Copy the full SHA d13f5c4View commit details
Commits on Aug 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for bc3a169 - Browse repository at this point
Copy the full SHA bc3a169View commit details -
Do not discard the last token of a non-final block if the DFA cannot …
…proceed from its current state.
Configuration menu - View commit details
-
Copy full SHA for 0540aad - Browse repository at this point
Copy the full SHA 0540aadView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4349edf - Browse repository at this point
Copy the full SHA 4349edfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4780068 - Browse repository at this point
Copy the full SHA 4780068View commit details
Commits on Aug 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7f0fbd6 - Browse repository at this point
Copy the full SHA 7f0fbd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd69b7b - Browse repository at this point
Copy the full SHA dd69b7bView commit details
Commits on Aug 29, 2023
-
Track in ParserState if suspending the tokenizer is supported.
I thought that suspending the tokenizer without being in a chain would have no effect, but it actually has the effect of prohibiting subsequent suspensions. With this change, suspending is a real no-op if the tokenizer is not wrapped in a chain.
Configuration menu - View commit details
-
Copy full SHA for 55b8450 - Browse repository at this point
Copy the full SHA 55b8450View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5983a99 - Browse repository at this point
Copy the full SHA 5983a99View commit details -
Fix a bug in
CharacterBufferManager
.`GetWriteBufferOffset` can resize the buffer, but calls to `_buffer.AsSpan(GetWriteBufferOffset(sizeHint))` always use the old buffer. The code was restructured to make the correct way to do it more apparent.
Configuration menu - View commit details
-
Copy full SHA for 3958c81 - Browse repository at this point
Copy the full SHA 3958c81View commit details -
Push the initial state to the LR parser stack.
Turns out it is always needed to do GOTOs from the initial state if we reduce a production with as many members as the stack. And with that we don't need to separately track the LR state anymore; it's at the top of the stack.
Configuration menu - View commit details
-
Copy full SHA for 112e674 - Browse repository at this point
Copy the full SHA 112e674View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.