Commit 73e192a6 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Use proper VARIANT_BOOL values in bool literals.

parent 765d9a14
......@@ -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
: ';'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment