Reflect changes in token codes

This commit is contained in:
Pierre Pronchery 2008-06-04 20:47:55 +00:00
parent e3cd03632b
commit 7d56fef504

View File

@ -37,7 +37,7 @@ static char * _tokens[C99_CODE_COUNT] =
"[", "<=", "<", "(", "-=", "->", "-", "%=", "%", "!=", "!", "+=", "+", "[", "<=", "<", "(", "-=", "->", "-", "%=", "%", "!=", "!", "+=", "+",
"?", "}", "]", ")", ";", "*=", "~", "*", "^=", "^", "?", "}", "]", ")", ";", "*=", "~", "*", "^=", "^",
/* more codes */ /* more codes */
"'", "whitespace", "newline", "comment", "word", "constant", "'", "whitespace", "newline", "comment", "word", "unknown", "constant",
"identifier", "identifier",
/* keywords */ /* keywords */
"auto", "break", "case", "char", "const", "continue", "default", "do", "auto", "break", "case", "char", "const", "continue", "default", "do",
@ -45,7 +45,7 @@ static char * _tokens[C99_CODE_COUNT] =
"inline", "int", "long", "register", "restrict", "return", "short", "inline", "int", "long", "register", "restrict", "return", "short",
"signed", "sizeof", "static", "struct", "switch", "typedef", "union", "signed", "sizeof", "static", "struct", "switch", "typedef", "union",
"unsigned", "void", "volatile", "while", "_Bool", "_Complex", "unsigned", "void", "volatile", "while", "_Bool", "_Complex",
"_Imaginary" "_Imaginary", "name"
}; };