Listed here are things that need to or that I'd like to accomplish in this project
Fully convert to visitor pattern for typechecking/codegenDelete old implementation, from following Antlr/Kotlin blog post series
Fully rename project from sandy -> kageAdd line of code to error messageEnforce .kg file extensionTop-level val declarationAST validations: Verify no duplicate top-level bindings(Happens during Typechecking)
- Add tests for TreeMaker (with and without positioning)
- With positioning
Without positioning
String LiteralsDeclaration and referencingConcatenation of Strings (++)Concatenation of Strings and non-Strings
Type annotationsTop-level function declarationFunction invocation (top-level functions)Boolean comparisons (>, >=, <, <=, ==, !=)If-then-else-expression- Custom types (other than primitives Int, Dec, Bool, and String)
Empty type (no props)toString
methodequals
method
- Type with props
toString
methodequals
methodAccessor methods for type props (class-level getters)
hashCode
methodProperty accessors
- Other primitives: Float, Long
TuplesPairTripleTuple4 - Tuple 6Begin stdlib?Syntactic sugar for Pair, Triple
Props of stdlib types- Arrays
Basic creation of array literalGet sizeIndexing into array- Concatenation
- "is"-props (boolean getter methods -> props)
- Cleanup of KGType (maybe separate into a disjoint union type somehow?)
- Comments! (// and /* */)
- Method calls
- Method definitions on types
- Lists
- HashMap
- Loops
- Lambdas
- [Possibly] ?-Types (kind of like nullable, except under the hood it's just Maybe)
- Generic Types
- Modules/Namespaces
- Switch/match expression
- Warnings/validations
- No top-level expressions
- Make error messages for binary expressions more explicit (Currently it does not identify which branch has error)
- When attributing types, if node has error give it a type of ERROR and don't continue checking (This avoids an error being pointed out at each parent expression)
- Compiler command-line arguments
- input file
- output file
- Syntax highlighting plugin for IntelliJ? (Good opportunity to learn about IntelliJ plugins?)
- Use Kotlin to make an extension-based wrapper around ASM, easier to use?