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

Unified Diff: runtime/vm/object.h

Issue 10919267: Introduce a VM-only dart:scalarlist library for byte arrays. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use abstract classes instead of interfaces. Created 8 years, 3 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/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index a9344b37ed4794bd176a9c884a6e30986594374c..d755b723358c05c8db14d70e83e613a5b94adac7 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -2136,12 +2136,15 @@ class Library : public Object {
static void InitMathLibrary(Isolate* isolate);
static void InitIsolateLibrary(Isolate* isolate);
static void InitMirrorsLibrary(Isolate* isolate);
+ static void InitScalarlistLibrary(Isolate* isolate);
+ static void InitNativeWrappersLibrary(Isolate* isolate);
+
static RawLibrary* CoreLibrary();
static RawLibrary* CoreImplLibrary();
static RawLibrary* MathLibrary();
static RawLibrary* IsolateLibrary();
static RawLibrary* MirrorsLibrary();
- static void InitNativeWrappersLibrary(Isolate* isolate);
+ static RawLibrary* ScalarlistLibrary();
static RawLibrary* NativeWrappersLibrary();
// Eagerly compile all classes and functions in the library.
« no previous file with comments | « runtime/vm/bootstrap_nocorelib.cc ('k') | runtime/vm/object.cc » ('j') | runtime/vm/object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698