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

Unified Diff: runtime/vm/dart_entry.cc

Issue 19678024: Rename: DartLibraryCalls::ExceptionCreate -> InstanceCreate (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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/dart_entry.h ('k') | runtime/vm/exceptions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_entry.cc
diff --git a/runtime/vm/dart_entry.cc b/runtime/vm/dart_entry.cc
index dd3f08ff746231b9bff87a3ed6ca2105c9a6aefa..d1a80086e2d0171e0c46f49b79464607d8353a4a 100644
--- a/runtime/vm/dart_entry.cc
+++ b/runtime/vm/dart_entry.cc
@@ -351,10 +351,10 @@ void ArgumentsDescriptor::InitOnce() {
}
-RawObject* DartLibraryCalls::ExceptionCreate(const Library& lib,
- const String& class_name,
- const String& constructor_name,
- const Array& arguments) {
+RawObject* DartLibraryCalls::InstanceCreate(const Library& lib,
+ const String& class_name,
+ const String& constructor_name,
+ const Array& arguments) {
const Class& cls = Class::Handle(lib.LookupClassAllowPrivate(class_name));
ASSERT(!cls.IsNull());
// For now, we only support a non-parameterized or raw type.
« no previous file with comments | « runtime/vm/dart_entry.h ('k') | runtime/vm/exceptions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698