![zik.saleeba](/assets/img/avatar_default.png)
git-svn-id: http://picoc.googlecode.com/svn/trunk@66 21eae674-98b7-11dd-bd71-f92a316d2d60
25 lines
588 B
Plaintext
25 lines
588 B
Plaintext
TODO
|
|
|
|
* struct
|
|
* pointers
|
|
* switch
|
|
* arrays
|
|
* operator precedence
|
|
* enum
|
|
* interactive mode
|
|
|
|
New type system:
|
|
* basic types: picoc int, picoc char, native int, native char
|
|
* structs
|
|
* arrays of picoc types or structs
|
|
* pointers to:
|
|
|
|
|
|
Also:
|
|
* Change function store system to use dynamic allocation
|
|
* Check for Alloc returns checking NULL
|
|
* Do we really need OnHeap? Isn't every value on the stack anyway?
|
|
* Remove Var parameter from HeapPopStack() once we're certain it all works
|
|
* Allocating a variable on the heap isn't correct since we need the struct Value to be on the stack anyway
|
|
|