jscript: Use proper VARIANT_BOOL values in bool literals.

This commit is contained in:
Jacek Caban 2009-08-28 23:53:05 +02:00 committed by Alexandre Julliard
parent 765d9a1411
commit 73e192a6b3
1 changed files with 2 additions and 2 deletions

View File

@ -812,8 +812,8 @@ Literal
/* ECMA-262 3rd Edition 7.8.2 */
BooleanLiteral
: kTRUE { $$ = new_boolean_literal(ctx, TRUE); }
| kFALSE { $$ = new_boolean_literal(ctx, FALSE); }
: kTRUE { $$ = new_boolean_literal(ctx, VARIANT_TRUE); }
| kFALSE { $$ = new_boolean_literal(ctx, VARIANT_FALSE); }
semicolon_opt
: ';'