Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Unified Diff: runtime/vm/parser.cc

Issue 50523018: Cleanup StaticResolveType, it does not seem to be used anywhere. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/resolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/resolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698