issues Search Results · repo:ruiconti/gojs language:Go
Filter by
6 results
(72 ms)6 results
inruiconti/gojs (press backspace or delete to remove)It is common to implement an ES2020 compliant parser using recursive descent. There are a few arguments to choose it
over other techniques e.g PEG (parsing expression grammar):
Grammar
Formally, a context-free ...
ruiconti
- Opened on Feb 23, 2023
- #6
What is a lexical token?
A lexical token is a sequence of characters that can be treated as a unit in the grammar of a programming language. A
programming language classifies lexical tokens into a finite ...
documentation
ruiconti
- Opened on Feb 21, 2023
- #5
After the first pass-through and token generation, we need to evaluate for each Token its runtime value.
e.g.
Token{T: T.NumericLiteral, Lexeme: 0xAB }
Converted to
Token{T: T.NumericLiteral, Lexeme: ...
ruiconti
- Opened on Feb 21, 2023
- #4
As of now, there is little to no error handling in lexer. This needs to be done for all kinds of tokens:
- [ ] Numeric literals
- [ ] String literals
- [ ] Punctuators
- [ ] Template literals ...
ruiconti
- Opened on Feb 21, 2023
- #3
Support for RegExp literals
https://262.ecma-international.org/13.0/#sec-literals-regular-expression-literals
ruiconti
- Opened on Feb 21, 2023
- #2
Support for template literals
https://262.ecma-international.org/13.0/#sec-template-literals
ruiconti
- Opened on Feb 21, 2023
- #1

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.