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

Unified Diff: runtime/vm/dart_entry.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
Index: runtime/vm/dart_entry.cc
===================================================================
--- runtime/vm/dart_entry.cc (revision 29568)
+++ runtime/vm/dart_entry.cc (working copy)
@@ -123,9 +123,7 @@
const String& function_name =
String::Handle(core_lib.PrivateName(Symbols::AllocateInvocationMirror()));
const Function& allocation_function = Function::Handle(
- Resolver::ResolveStaticByName(invocation_mirror_class,
- function_name,
- Resolver::kIsQualified));
+ Resolver::ResolveStaticByName(invocation_mirror_class, function_name));
ASSERT(!allocation_function.IsNull());
const int kNumAllocationArgs = 4;
const Array& allocation_args = Array::Handle(Array::New(kNumAllocationArgs));
@@ -390,8 +388,7 @@
class_name,
function_name,
kNumArguments,
- Object::empty_array(),
- Resolver::kIsQualified);
+ Object::empty_array());
ASSERT(!function.IsNull());
isolate->object_store()->set_lookup_receive_port_function(function);
}
@@ -422,8 +419,7 @@
class_name,
function_name,
kNumArguments,
- Object::empty_array(),
- Resolver::kIsQualified);
+ Object::empty_array());
ASSERT(!function.IsNull());
isolate->object_store()->set_handle_message_function(function);
}
@@ -457,8 +453,7 @@
class_name,
function_name,
kNumArguments,
- Object::empty_array(),
- Resolver::kIsQualified));
+ Object::empty_array()));
ASSERT(!function.IsNull());
const Array& args = Array::Handle(Array::New(kNumArguments));
args.SetAt(0, Integer::Handle(Integer::New(port_id)));

Powered by Google App Engine
This is Rietveld 408576698