ahpalmerUNR / c_compiler

c compiler for UNR Compilers CS 660
1 stars 0 forks source link

declaration #9

Open ahpalmerUNR opened 5 years ago

natasha-audrey commented 5 years ago

This node will mostly just have to do semantic checking I think, we'll have to plan to pass up multiple declaration_specifiers like so: image

This node will probably want to check that it's valid (e.g. this one was unsigned signed long int i;) then pass it up to external declaration and translation unit.

natasha-audrey commented 5 years ago

Partially done now. Am able to read in the types from the children, now it's simply a matter of parsing them, coercing them, and errors