2023-01-23 14:31:49 +00:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
2024-06-06 00:48:58 +00:00
|
|
|
- Test correct operator precedence
|
2024-05-30 21:05:31 +00:00
|
|
|
- Implement functions as first class citizens
|
2023-12-10 01:04:44 +00:00
|
|
|
- Parse __more__ binary operators
|
2023-09-20 01:42:03 +00:00
|
|
|
- Parse more complex bindings
|
2024-06-05 12:38:47 +00:00
|
|
|
- Rework error messages
|
2023-04-16 23:17:28 +00:00
|
|
|
- Parse other language constructions
|
|
|
|
- Namespace identifiers in the symbol table
|
|
|
|
- Stdlib
|
|
|
|
- Document code
|
2023-12-10 01:04:44 +00:00
|
|
|
- Watch mode
|
|
|
|
- Simple language server
|
2024-01-07 00:07:41 +00:00
|
|
|
- Decide how to handle comments in the syntax (?)(should comments mean something like in rust?)
|
2024-08-13 20:19:18 +00:00
|
|
|
- Fix comment handling in the AST
|
2024-05-30 21:05:31 +00:00
|
|
|
- Abstract the parsing of datatypes, such that in the future generics can be implemented in a single place
|
2024-08-01 15:34:08 +00:00
|
|
|
- Begin work on the code formatter
|
2024-08-13 20:19:18 +00:00
|
|
|
- Remove all panic! and todo!
|
2024-07-05 22:49:19 +00:00
|
|
|
|
|
|
|
|
2024-08-01 20:37:00 +00:00
|
|
|
## v0.1.1
|
|
|
|
|
|
|
|
- [x] Top level expressions as statements
|
2024-08-13 20:19:18 +00:00
|
|
|
- [x] Naively transpile variable bindings
|
|
|
|
- [x] Store tokens in the AST, to have actual error reporting
|
|
|
|
- [x] Scan octal and binary numbers
|
|
|
|
- [x] Simple type checking
|
|
|
|
- [x] Check for conflicting identifiers at the current scope
|
2024-08-27 12:50:57 +00:00
|
|
|
- [x] Semantic check for unary operator
|
2024-08-27 13:14:15 +00:00
|
|
|
- [x] Semantic check for binary operator
|
2024-08-13 20:19:18 +00:00
|
|
|
|
2024-08-01 20:37:00 +00:00
|
|
|
|
2024-08-01 15:34:08 +00:00
|
|
|
## v0.1.0
|
2024-07-27 23:44:54 +00:00
|
|
|
|
2024-08-01 15:34:08 +00:00
|
|
|
- [x] Complete workflow for "Hello world"
|
2024-07-29 21:18:33 +00:00
|
|
|
- [x] Multiline comments
|
2024-07-30 20:55:29 +00:00
|
|
|
- [x] Nested multiline comments
|
2024-08-01 15:34:08 +00:00
|
|
|
- [x] Replace all panics with actual errors
|
|
|
|
- [x] Remove all old codegen
|
|
|
|
- [x] Test codegen
|
|
|
|
- [x] Reenable semantic analysis
|
|
|
|
- [x] Create minimal type definitions for the stdlib
|
2024-07-27 23:44:54 +00:00
|
|
|
|
|
|
|
|
2024-07-05 22:49:19 +00:00
|
|
|
## v0.0.14
|
|
|
|
|
2024-07-27 22:34:32 +00:00
|
|
|
- [x] Define a minimal PHP AST
|
|
|
|
- [x] Transform THP AST into PHP AST
|
2024-07-27 23:44:54 +00:00
|
|
|
- [x] Implement minimal codegen for the PHP AST
|
|
|
|
- [x] Finish the workflow for a hello world
|
2024-07-05 22:49:19 +00:00
|
|
|
|
2024-05-30 21:05:31 +00:00
|
|
|
|
|
|
|
## v0.0.13
|
|
|
|
|
2024-06-05 16:04:01 +00:00
|
|
|
- [x] Begin work on a formal grammar
|
|
|
|
- [x] Simplify/rewrite AST
|
2024-06-16 02:02:45 +00:00
|
|
|
- [x] Properly parse expression indentation/dedentation
|
2024-06-05 16:04:01 +00:00
|
|
|
- [x] Define the top level constructs
|
2024-06-19 16:33:47 +00:00
|
|
|
- [x] Emit INDENT/DEDENT alone instead of NewLine+INDENT/DEDENT
|
2024-06-05 16:04:01 +00:00
|
|
|
- [x] Refactor code
|
2024-06-03 00:29:25 +00:00
|
|
|
- [x] Remove `PARSER couldn't parse any construction` error & replace with an actual error message
|
2024-05-30 21:05:31 +00:00
|
|
|
|
2023-12-10 01:04:44 +00:00
|
|
|
|
2024-03-10 02:54:29 +00:00
|
|
|
## v0.0.12
|
|
|
|
|
2024-05-05 21:01:11 +00:00
|
|
|
- [x] Infer datatype of an identifier
|
2024-05-06 15:13:21 +00:00
|
|
|
- [x] Infer datatype of a binary operatior
|
2024-05-30 19:59:45 +00:00
|
|
|
- [x] Infer datatype of unary operator
|
2024-05-30 21:05:31 +00:00
|
|
|
- [x] Infer datatype of binary operators
|
2024-05-06 15:13:21 +00:00
|
|
|
- [x] Infer Int & Float as different types
|
2024-05-30 21:05:31 +00:00
|
|
|
- [x] Execute semantic analysis on the function's block
|
|
|
|
- [x] Write tests
|
2024-03-10 02:54:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
## v0.0.11
|
|
|
|
|
2024-03-18 14:51:17 +00:00
|
|
|
- [x] Parse binding of form `val Type variable = value`
|
|
|
|
- [x] Parse binding of form `Type variable = value`
|
2024-05-05 00:23:53 +00:00
|
|
|
- [x] Infer datatype of `value` in the above for a simple expression (minimal)
|
|
|
|
- [x] Ensure that the anotated datatype matches the datatype of `value` in the above (binding)
|
|
|
|
- [x] Infer datatype of a `val variable = value` in the AST: Use the infered datatype (binding)
|
2024-03-18 14:51:17 +00:00
|
|
|
- [x] Formally define the top level constructs
|
|
|
|
- [x] Parse bindings and function declarations as top level constructs
|
2024-03-18 21:40:22 +00:00
|
|
|
- [x] Parse function declaration arguments (`Type id`)
|
2024-03-18 14:20:21 +00:00
|
|
|
- [x] Parse function return datatype (`fun f() -> Type`)
|
2024-03-18 13:57:28 +00:00
|
|
|
- [x] Return parsing to variables to var/val
|
2024-05-05 00:00:47 +00:00
|
|
|
- [x] Write tests
|
2024-03-10 02:54:29 +00:00
|
|
|
|
|
|
|
|
2023-12-10 01:04:44 +00:00
|
|
|
## v0.0.10
|
|
|
|
|
2024-01-12 00:29:19 +00:00
|
|
|
- [x] Parse function call parameters
|
2024-01-12 00:36:11 +00:00
|
|
|
- [x] Codegen function call parameters
|
2024-02-04 01:19:09 +00:00
|
|
|
- [x] Begin work on semantic analysis
|
|
|
|
- [x] Minimal symbol table
|
|
|
|
- [x] Check duplicate function declarations
|
2024-03-09 13:05:40 +00:00
|
|
|
- [x] Improve REPL/File compilation code
|
2024-03-10 02:34:05 +00:00
|
|
|
- [x] Check binding duplication in it's scope
|
|
|
|
- [x] Check function duplication in it's scope
|
|
|
|
- [x] Transform simple THP expression into PHP statements
|
2023-12-10 01:04:44 +00:00
|
|
|
|
|
|
|
## v0.0.9
|
|
|
|
|
2023-12-17 01:35:24 +00:00
|
|
|
- [x] Hand-make CLI, remove clap
|
|
|
|
- [x] Compile a single file
|
2024-01-02 11:31:27 +00:00
|
|
|
- [x] Display error messages during compilation instead of panicking
|
|
|
|
- [x] Improve error messages
|
2024-01-07 00:07:41 +00:00
|
|
|
- [x] Implement code generation for ast nodes implemented as of now
|
2023-12-10 01:04:44 +00:00
|
|
|
|
2023-03-28 15:06:23 +00:00
|
|
|
|
2023-09-20 01:42:03 +00:00
|
|
|
|
2023-10-06 01:26:47 +00:00
|
|
|
## v0.0.8
|
2023-11-21 12:49:49 +00:00
|
|
|
|
|
|
|
- Parse block of code
|
2023-10-06 01:26:47 +00:00
|
|
|
- Parse multiple statements inside a block
|
2023-11-22 02:00:58 +00:00
|
|
|
- Parse unary operator (`!` & `-`)
|
2023-11-22 02:40:11 +00:00
|
|
|
- Parse binary operators
|
2023-10-06 01:26:47 +00:00
|
|
|
|
|
|
|
|
2023-10-01 22:18:28 +00:00
|
|
|
## v0.0.7
|
|
|
|
|
|
|
|
- Parse minimal function declarations following a grammar
|
2023-10-05 11:56:21 +00:00
|
|
|
- Parse function call, binding as statement
|
|
|
|
- Parse a statement as body of a function declaration
|
2023-10-01 22:18:28 +00:00
|
|
|
|
|
|
|
|
2023-09-20 01:42:03 +00:00
|
|
|
## v0.0.6
|
|
|
|
|
|
|
|
- Parse function declarations
|
|
|
|
- Parse multiple function declarations
|
|
|
|
- Parse multiple bindings
|
|
|
|
- Compile from file
|
|
|
|
- Emit INDENT & DEDENT tokens
|
|
|
|
|
|
|
|
|
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-04-15 22:17:27 +00:00
|
|
|
- Refactor datachecking of semantic analysis
|
2023-09-20 01:42:03 +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.
|