| Index: runtime/vm/parser.cc
|
| ===================================================================
|
| --- runtime/vm/parser.cc (revision 11391)
|
| +++ runtime/vm/parser.cc (working copy)
|
| @@ -4691,11 +4691,11 @@
|
| *value = CurrentLiteral()->raw();
|
| return true;
|
| } else if ((CurrentToken() == Token::kTRUE) &&
|
| - (no_check || type.IsBoolInterface())) {
|
| + (no_check || type.IsBoolType())) {
|
| *value = Bool::True();
|
| return true;
|
| } else if ((CurrentToken() == Token::kFALSE) &&
|
| - (no_check || type.IsBoolInterface())) {
|
| + (no_check || type.IsBoolType())) {
|
| *value = Bool::False();
|
| return true;
|
| } else if (CurrentToken() == Token::kNULL) {
|
|
|