| Index: dart/lib/compiler/implementation/tree/nodes.dart
|
| diff --git a/dart/lib/compiler/implementation/tree/nodes.dart b/dart/lib/compiler/implementation/tree/nodes.dart
|
| index 35c5ca4370e8305d479f02e526358142c4bf926e..9cc59532946740808c755eac82d62c4c52e2969c 100644
|
| --- a/dart/lib/compiler/implementation/tree/nodes.dart
|
| +++ b/dart/lib/compiler/implementation/tree/nodes.dart
|
| @@ -706,8 +706,8 @@ class LiteralBool extends Literal<bool> {
|
| LiteralBool asLiteralBool() => this;
|
|
|
| bool get value {
|
| - if (token.value == Keyword.TRUE) return true;
|
| - if (token.value == Keyword.FALSE) return false;
|
| + if (token.stringValue === 'true') return true;
|
| + if (token.stringValue === 'false') return false;
|
| (this.handler)(token, "not a bool ${token.value}");
|
| }
|
|
|
|
|