X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fidentifier.c;h=baa0abd1c57528ace8b76c73ebc93717dd73d821;hb=64ba9bcf7a234b51dbaeac545338981bfc2a700c;hp=07c7675bd5a3000cf3742c85505bf68b2174ebd3;hpb=0eded6940b00e6523d7a0a7f76e40c70324f85d2;p=pspp diff --git a/src/data/identifier.c b/src/data/identifier.c index 07c7675bd5..baa0abd1c5 100644 --- a/src/data/identifier.c +++ b/src/data/identifier.c @@ -99,9 +99,21 @@ token_type_to_string (enum token_type token) case T_RBRACK: return "]"; + case T_LCURLY: + return "{"; + + case T_RCURLY: + return "}"; + case T_COMMA: return ","; + case T_SEMICOLON: + return ";"; + + case T_COLON: + return ":"; + case T_AND: return "AND";