-
Notifications
You must be signed in to change notification settings - Fork 6
feat: Allow variables to have delimiters. #114
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
base: main
Are you sure you want to change the base?
feat: Allow variables to have delimiters. #114
Conversation
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
@coderabbitai Please open an issue for the known issue introduced by this PR and link it to this issue. |
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed:
Length of output: 6842 🏁 Script executed:
Length of output: 768 @davidlion I've created a GitHub issue for the known issue mentioned in PR #114. The issue has been created and assigned to you: Issue #116: Lexing Backtracking Issue: Variables with Delimiters May Cause Misclassification The issue documents the known limitation that when variables contain delimiters, other variables may be misclassified as static text due to lack of backtracking during the lexing process, as mentioned in PR #114. |
Description
Remove the throw for variables with delimiters
Known issue
There is no backtracking during lexxing. This means introducing variables containing delimiters can cause other variables to be potentially misclassified as static text. This is fixed in an already prepared future PR, but its dependent on the (also future) simulation PR. Tracked by #116.
Validation performed
Existing tests pass.