2023-01-23 14:31:49 +00:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
|
|
|
- [ ] Automatic semicolon insertion
|
|
|
|
- [ ] Improve error messages
|
|
|
|
- [ ] Parse other language constructions
|
|
|
|
- [ ] Type checking
|
|
|
|
- [ ] Check for conflicting identifiers
|
|
|
|
- [ ] Namespace identifiers in the symbol table
|
|
|
|
- [ ] Stdlib
|
|
|
|
- [ ] Document code
|
2023-03-28 15:06:23 +00:00
|
|
|
|
|
|
|
## v0.0.5
|
|
|
|
|
2023-04-05 16:28:43 +00:00
|
|
|
- Scan single line comments
|
|
|
|
- Refactor String token to include double quotes (") in its content
|
2023-01-23 14:31:49 +00:00
|
|
|
|
2023-02-15 21:17:50 +00:00
|
|
|
## v0.0.4
|
|
|
|
|
|
|
|
- Explicit datatype of variables
|
2023-03-15 21:33:00 +00:00
|
|
|
- Improve error messages when a syntax error is found (show offending line and offending token)
|
2023-03-28 15:06:23 +00:00
|
|
|
- Show different error messages for val/var binding
|
2023-02-15 21:17:50 +00:00
|
|
|
|
2023-02-11 23:13:05 +00:00
|
|
|
## v0.0.3
|
|
|
|
|
|
|
|
- Get datatype of an identifier from the symbol table
|
|
|
|
- Improve documentation of the code
|
2023-02-14 20:22:29 +00:00
|
|
|
- Simple ASI: insert semicolon after a single or series of new lines
|
2023-02-14 20:32:45 +00:00
|
|
|
- The token stream now always ends with a Semicolon and EOF token, regardless of input
|
2023-02-11 23:13:05 +00:00
|
|
|
|
2023-02-11 14:52:30 +00:00
|
|
|
## v0.0.2
|
|
|
|
|
|
|
|
- Compilation of `val` and `var` bindings with a number, string or boolean as value.
|
|
|
|
- Register symbols and datatypes in the Symbol table.
|
2023-01-24 15:18:14 +00:00
|
|
|
- Add better error messages for lexical errors. Show:
|
|
|
|
- Offending line
|
|
|
|
- Pointer to offending character
|
|
|
|
- Error message
|
|
|
|
|
2023-02-11 14:52:30 +00:00
|
|
|
|
2023-01-23 14:31:49 +00:00
|
|
|
## v0.0.1
|
|
|
|
|
|
|
|
- Compilation of a `val` binding with a number.
|
|
|
|
- Scan all tokens except new lines, indentation.
|