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

Unified Diff: vm/dart_api_impl.cc

Issue 10911025: Get rid of support for string interpolation in #import strings. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 4 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 | « vm/benchmark_test.cc ('k') | vm/dart_api_impl_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/dart_api_impl.cc
===================================================================
--- vm/dart_api_impl.cc (revision 11672)
+++ vm/dart_api_impl.cc (working copy)
@@ -3737,18 +3737,6 @@
}
-DART_EXPORT Dart_Handle Dart_SetImportMap(Dart_Handle import_map) {
- Isolate* isolate = Isolate::Current();
- DARTSCOPE(isolate);
- const Array& mapping_array = Api::UnwrapArrayHandle(isolate, import_map);
- if (mapping_array.IsNull()) {
- RETURN_TYPE_ERROR(isolate, import_map, Array);
- }
- isolate->object_store()->set_import_map(mapping_array);
- return Api::Success(isolate);
-}
-
-
// NOTE: Need to pass 'result' as a parameter here in order to avoid
// warning: variable 'result' might be clobbered by 'longjmp' or 'vfork'
// which shows up because of the use of setjmp.
« no previous file with comments | « vm/benchmark_test.cc ('k') | vm/dart_api_impl_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698