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

Unified Diff: runtime/vm/resolver.h

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/parser.cc ('k') | runtime/vm/resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/resolver.h
===================================================================
--- runtime/vm/resolver.h (revision 29568)
+++ runtime/vm/resolver.h (working copy)
@@ -37,11 +37,6 @@
const Class& receiver_class,
const String& function_name);
- enum StaticResolveType {
- kIsQualified,
- kNotQualified
- };
-
// Resolve specified dart static function. If library.IsNull, use
// either application library or core library if no application library
// exists. Passing negative num_arguments means that the function
@@ -52,20 +47,13 @@
const String& cls_name,
const String& function_name,
intptr_t num_arguments,
- const Array& argument_names,
- StaticResolveType resolve_type);
+ const Array& argument_names);
- // Resolve specified dart static function.
- static RawFunction* ResolveStaticByName(const Class& cls,
- const String& function_name,
- StaticResolveType resolve_type);
-
// Resolve specified dart static function with specified arity.
static RawFunction* ResolveStatic(const Class& cls,
const String& function_name,
intptr_t num_arguments,
- const Array& argument_names,
- StaticResolveType resolve_type);
+ const Array& argument_names);
};
} // namespace dart
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698