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

Unified Diff: runtime/vm/bootstrap.cc

Issue 13139002: Remove support for 'dart:scalarlist' in the Dart VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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/bootstrap.cc
===================================================================
--- runtime/vm/bootstrap.cc (revision 20600)
+++ runtime/vm/bootstrap.cc (working copy)
@@ -91,13 +91,6 @@
}
-RawScript* Bootstrap::LoadScalarlistScript(bool patch) {
- const char* url = patch ? "dart:scalarlist_patch" : "dart:scalarlist";
- const char* source = patch ? scalarlist_patch_ : scalarlist_source_;
- return LoadScript(url, source, patch);
-}
-
-
RawScript* Bootstrap::LoadTypedDataScript(bool patch) {
const char* url = patch ? "dart:typeddata_patch" : "dart:typeddata";
const char* source = patch ? typeddata_patch_ : typeddata_source_;

Powered by Google App Engine
This is Rietveld 408576698