jack-compiler/tokens.h

18 lines
503 B
C
Raw Normal View History

2020-11-30 16:44:22 -05:00
#ifndef TOKENS_H
#define TOKENS_H
const char* keywords[] = {
"class", "constructor", "function", "method", "field", "static",
"var", "int", "char", "boolean", "void", "true", "false", "null",
"this", "let", "do", "if", "else", "while", "return"
};
const int keywordssize = sizeof(keywords) / sizeof(char*);
const char* symbols[] = {
"{", "}", "(", ")", "[", "]", ".", ",", ";", "+", "-", "*", "/",
"&", "|", "<", ">", "=", "~"
};
const int symbolssize = sizeof(symbols) / sizeof(char*);
#endif