| Index: runtime/vm/parser.cc
|
| ===================================================================
|
| --- runtime/vm/parser.cc (revision 11396)
|
| +++ runtime/vm/parser.cc (working copy)
|
| @@ -4683,7 +4683,7 @@
|
| *value = CurrentIntegerLiteral();
|
| return true;
|
| } else if ((CurrentToken() == Token::kDOUBLE) &&
|
| - (no_check || type.IsDoubleInterface() || type.IsNumberType())) {
|
| + (no_check || type.IsDoubleType() || type.IsNumberType())) {
|
| *value = CurrentDoubleLiteral();
|
| return true;
|
| } else if ((CurrentToken() == Token::kSTRING) &&
|
|
|