| Index: runtime/vm/parser.cc
|
| ===================================================================
|
| --- runtime/vm/parser.cc (revision 29568)
|
| +++ runtime/vm/parser.cc (working copy)
|
| @@ -6436,8 +6436,7 @@
|
| Resolver::ResolveStatic(cls,
|
| func_name,
|
| arguments->length(),
|
| - arguments->names(),
|
| - Resolver::kIsQualified));
|
| + arguments->names()));
|
| ASSERT(!func.IsNull());
|
| return new StaticCallNode(arguments->token_pos(), func, arguments);
|
| }
|
| @@ -7959,8 +7958,7 @@
|
| Resolver::ResolveStatic(cls,
|
| func_name,
|
| num_arguments,
|
| - arguments->names(),
|
| - Resolver::kIsQualified));
|
| + arguments->names()));
|
| if (func.IsNull()) {
|
| // Check if there is a static field of the same name, it could be a closure
|
| // and so we try and invoke the closure.
|
| @@ -7975,8 +7973,7 @@
|
| func = Resolver::ResolveStatic(cls,
|
| getter_name,
|
| kNumArguments,
|
| - Object::empty_array(),
|
| - Resolver::kIsQualified);
|
| + Object::empty_array());
|
| if (!func.IsNull()) {
|
| ASSERT(func.kind() != RawFunction::kImplicitStaticFinalGetter);
|
| EnsureSavedCurrentContext();
|
| @@ -8084,8 +8081,7 @@
|
| func = Resolver::ResolveStatic(cls,
|
| getter_name,
|
| kNumArguments,
|
| - Object::empty_array(),
|
| - Resolver::kIsQualified);
|
| + Object::empty_array());
|
| if (func.IsNull()) {
|
| // We might be referring to an implicit closure, check to see if
|
| // there is a function of the same name.
|
| @@ -8655,8 +8651,7 @@
|
| Function::Handle(Resolver::ResolveStatic(field_owner,
|
| getter_name,
|
| kNumArguments,
|
| - Object::empty_array(),
|
| - Resolver::kIsQualified));
|
| + Object::empty_array()));
|
| ASSERT(!func.IsNull());
|
| ASSERT(func.kind() == RawFunction::kImplicitStaticFinalGetter);
|
| Object& const_value = Object::Handle(
|
|
|