The WHET DJ Compiler
Semcheck
- sc_expr section
- change NOTE_CR
- modifier types, confirm behavior
- check_vinit_type function probably wrong
-
What are actuals
they're function call parameters/arguments
-
Why does this work:
int i; int j; i = 0; j = 1;
While this doesn't work:
int i; i = 0; int j; j = 1;
Because in fdecl
vdecl list
comes beforestmt list
?? mutable global/local in env
- Discuss vartype, vType, etc. different conventions for getting variable names + variable types; -what standard do we want to use? -are we using them correctly currently?
- Streamline function names in semcheck