2001-07-17 21:51:10 +00:00
|
|
|
o = todo
|
|
|
|
X = done
|
|
|
|
? = maybe but not likely
|
|
|
|
M = more testing
|
|
|
|
I = in progress
|
|
|
|
W = waiting on other work
|
|
|
|
|
2001-08-11 22:07:03 +00:00
|
|
|
X native integer type
|
|
|
|
X ?: operator
|
|
|
|
X <op>= operator ( var += expr, etc. )
|
|
|
|
X allow temp defs at higher levels
|
2001-08-20 04:56:00 +00:00
|
|
|
X move the chained funcion support out of emit_function_expr into
|
|
|
|
funciton_expr
|
2001-08-20 06:22:28 +00:00
|
|
|
X pre- and post- increment operators (++ and --)
|
2001-08-11 22:07:03 +00:00
|
|
|
I gut out old parser
|
2001-07-17 21:51:10 +00:00
|
|
|
o switch/case, for any type
|
2001-10-24 18:57:29 +00:00
|
|
|
X break/continue keywords for switch() and for(;;)
|
2001-08-20 04:56:00 +00:00
|
|
|
o quaternion type. Tricky: requires 4 word args/return
|
2001-07-18 02:08:32 +00:00
|
|
|
o CSE optimisations
|
2001-10-24 06:39:49 +00:00
|
|
|
X full scoping
|
2001-10-22 18:47:45 +00:00
|
|
|
o short circuit logic for && and || (optional?)
|
2001-10-24 06:39:49 +00:00
|
|
|
o warn for local shaddowing parameter
|