ref: c3b7e1ffbcbbdcd7049c150319db145bcca6cf6f
dir: /stmt.c/
#include <stddef.h> #include <stdint.h> #include "cc.h" void compound(void) { extern void decl(void); expect('{'); while (!accept('}')) { switch (yytoken) { case TYPE: case SCLASS: case TQUALIFIER: decl(); break; default: expr(); /* TODO: Evaluate the expression here */ } expect(';'); } }