| Index: runtime/vm/ast.h
|
| diff --git a/runtime/vm/ast.h b/runtime/vm/ast.h
|
| index 790e94ccfb7bacfa7eb809b692d0be3392f8446f..87990db550a435bb679e8c6de12ef55c09b965c0 100644
|
| --- a/runtime/vm/ast.h
|
| +++ b/runtime/vm/ast.h
|
| @@ -547,8 +547,7 @@ class ClosureNode : public AstNode {
|
| scope_(scope),
|
| is_deferred_reference_(false) {
|
| ASSERT(function_.IsZoneHandle());
|
| - ASSERT((function_.IsNonImplicitClosureFunction() &&
|
| - (receiver_ == NULL) && (scope_ != NULL)) ||
|
| + ASSERT((function_.IsNonImplicitClosureFunction() && (receiver_ == NULL)) ||
|
| (function_.IsImplicitInstanceClosureFunction() &&
|
| (receiver_ != NULL) && (scope_ == NULL)) ||
|
| (function_.IsImplicitStaticClosureFunction() &&
|
|
|