10 lines
190 B
C
10 lines
190 B
C
#include "symbol.h"
|
|
|
|
const char *SymbolKindStr[] = {
|
|
[SymInvalid] = "",
|
|
[SymLet] = "let",
|
|
[SymVar] = "var",
|
|
[SymConst] = "const",
|
|
[SymProc] = "proc",
|
|
[SymType] = "type definition",
|
|
};
|