| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 56d210d0db871ad60ae5210f7f0c6af7e82b4c6f..4c953366950d73c613aaf23ebdc2338bb8c9eae8 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -20102,7 +20102,7 @@ void Capability::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| RawReceivePort* ReceivePort::New(Dart_Port id,
|
| bool is_control_port,
|
| Heap::Space space) {
|
| - ASSERT(id != ILLEGAL_PORT);
|
| + ASSERT(id != DART_ILLEGAL_PORT);
|
| Isolate* isolate = Isolate::Current();
|
| const SendPort& send_port =
|
| SendPort::Handle(isolate, SendPort::New(id, isolate->origin_id()));
|
| @@ -20143,7 +20143,7 @@ RawSendPort* SendPort::New(Dart_Port id, Heap::Space space) {
|
| RawSendPort* SendPort::New(Dart_Port id,
|
| Dart_Port origin_id,
|
| Heap::Space space) {
|
| - ASSERT(id != ILLEGAL_PORT);
|
| + ASSERT(id != DART_ILLEGAL_PORT);
|
| SendPort& result = SendPort::Handle();
|
| {
|
| RawObject* raw = Object::Allocate(SendPort::kClassId,
|
|
|