* admin/grammars/js.wy: Add types to the FALSE, TRUE and QUERY tokens.
Without the types, you'd get the warning
*Warning* default value of <<no-type>> tokens changed to QUERY, was NULL_TOKEN
*Warning* default value of <<no-type>> tokens changed to TRUE, was QUERY
*Warning* default value of <<no-type>> tokens changed to FALSE, was TRUE
I think this should be harmless, and it doesn't seem to break handling
.js files.
%token <number> NUMBER
-%token FALSE
-%token TRUE
-%token QUERY
+%token <false> FALSE
+%token <true> TRUE
+%token <query> QUERY
%token NULL_TOKEN