-
Notifications
You must be signed in to change notification settings - Fork 0
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
ezr² RE v1.0.0 #3
Draft
Uralstech
wants to merge
115
commits into
master
Choose a base branch
from
ezrSquared-re
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…o updated EzrGrammar.txt.
It was only being used in one place.
- Changes to the Lexer. - '\r' characters are just skipped now. - All consecutive newlines are now grouped together into one TokenType.NewLine Token. - Changes to the Parser. - _result.RegisterAdvance() has been removed and functionality moved to Parser.Advance(), because all calls to it are succeeded by Parser.Advance(). - _result.Reverse() has also been removed for the same reasons. - SkipNewLines() has been removed as its functionality can now be replaced by a simple "if (_currentToken.Type == TokenType.NewLine) Advance();". - A few changes to EzrSquared.csproj.
- EzrCommon: - Added new Advance() function without currentChar argument as it was being used more often. - EzrParser - Updated ParseExpression() and ParseQuickExpression() functions! - New CurrentTokenInOperators() function in BinaryOperation() for checking if _currentToken is a desired operator. - In ParseInversion(), the checking order of the QuickSyntax and normal syntax versions of the expression has been switched. - In ParseAtom(), the creation of ValueNodes and local VariableAssignmentNodes have been moved to the 'default' case of the switch-case block for better readability. - All instances of null checking in all scripts have been changed from '== null' to 'is null' and '!= null' to 'is not null'. NOTE: The shell has not been updated as I am still experimenting performance updates for ezrSquared using stopwatches in EzrShell.
… into ezrSquared-re
Uralstech
temporarily deployed
to
github-pages
December 17, 2024 09:38 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 17, 2024 14:44 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 19, 2024 19:52 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 20, 2024 12:12 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 20, 2024 14:57 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 20, 2024 18:03 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 20, 2024 18:24 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 20, 2024 20:11 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 21, 2024 07:51 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 21, 2024 08:09 — with
GitHub Actions
Inactive
RuntimeEzrObjectDictionary is a Dictionary.
Uralstech
temporarily deployed
to
github-pages
December 24, 2024 14:25 — with
GitHub Actions
Inactive
Uralstech
temporarily deployed
to
github-pages
December 24, 2024 17:50 — with
GitHub Actions
Inactive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
ezr² is being rewritten. With a ton of new features, bugfixes, and more! It's nowhere near ready, but this is a draft pull request for when it will be.
ezr² RE v1.0.0 will not be the full release of ezr². Version 1.0.0 only guarantees that it will be feature-compatible with the latest non-RE version of ezr².