| Index: runtime/vm/json_stream.cc
|
| diff --git a/runtime/vm/json_stream.cc b/runtime/vm/json_stream.cc
|
| index d51acbb4029b6de51644993a39d265e4fda3c1b9..06c13fc645efc95043c7a72242c861576ee33a26 100644
|
| --- a/runtime/vm/json_stream.cc
|
| +++ b/runtime/vm/json_stream.cc
|
| @@ -281,7 +281,7 @@ void JSONStream::PrintProperty(const char* name, intptr_t i) {
|
|
|
|
|
| void JSONStream::PrintProperty64(const char* name, int64_t i) {
|
| - ASSERT(Utils::IsJavascriptInt(i));
|
| + ASSERT(Utils::IsJavascriptInt64(i));
|
| PrintPropertyName(name);
|
| PrintValue64(i);
|
| }
|
|
|