View on GitHub

JST

By Janelle Blankenburg, Shubham Gogna, and Terence Henriod
UNR CS 660: Compiler Construction

Download this project as a .zip file Download this project as a tar.gz file

Array Declaration

Source

int main()
{
  int i[5];
}

Generated AST

Source

int main()
{
  int i[5][7];
}

Generated AST