updated readme

refactor_anto
pca006132 2021-06-25 12:57:43 +08:00
parent 6996bb5ac1
commit ed28c09c51
1 changed files with 12 additions and 3 deletions

View File

@ -16,10 +16,19 @@ compiler would analyse the set of functions/classes that are used and perform
code generation. code generation.
Symble resolver: Symbol resolver:
Str -> Nac3Type - Str -> Nac3Type
Str -> Value - Str -> Value
value could be integer values, boolean values, bytes (for memcpy), function ID value could be integer values, boolean values, bytes (for memcpy), function ID
(full name + concrete type) (full name + concrete type)
## Current Plan
1. Write out the syntax-directed type checking/inferencing rules. Fix the rule
for type variable instantiation.
2. Update the library dependencies and rewrite some of the type checking code.
3. Design the symbol resolver API.
4. Move tests from code to external files to cleanup the code.