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

Unified Diff: runtime/vm/service/service.md

Issue 1157003003: Add TypedData instance kinds. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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/object.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service/service.md
diff --git a/runtime/vm/service/service.md b/runtime/vm/service/service.md
index a424865963dd2328ac9547a4ec0eb2e8212e08ac..d764864a9707c185a18e6da66ac6e1fe14c599a0 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -1229,6 +1229,21 @@ class @Instance extends @Object {
//
// Provided for instance kinds:
// List
+ // Map
+ // Uint8ClampedList
+ // Uint8List
+ // Uint16List
+ // Uint32List
+ // Uint64List
+ // Int8List
+ // Int16List
+ // Int32List
+ // Int64List
+ // Float32List
+ // Float64List
+ // Int32x4List
+ // Float32x4List
+ // Float64x2List
int length [optional];
// The name of a Type instance.
@@ -1278,6 +1293,21 @@ class Instance extends Object {
//
// Provided for instance kinds:
// List
+ // Map
+ // Uint8ClampedList
+ // Uint8List
+ // Uint16List
+ // Uint32List
+ // Uint64List
+ // Int8List
+ // Int16List
+ // Int32List
+ // Int64List
+ // Float32List
+ // Float64List
+ // Int32x4List
+ // Float32x4List
+ // Float64x2List
int length [optional];
// The name of a Type instance.
@@ -1313,6 +1343,25 @@ class Instance extends Object {
// Map
MapAssociation[] associations [optional];
+ // The bytes of a TypedData instance.
+ //
+ // Provided for instance kinds:
+ // Uint8ClampedList
+ // Uint8List
+ // Uint16List
+ // Uint32List
+ // Uint64List
+ // Int8List
+ // Int16List
+ // Int32List
+ // Int64List
+ // Float32List
+ // Float64List
+ // Int32x4List
+ // Float32x4List
+ // Float64x2List
+ int[] bytes [optional];
+
// The function associated with a Closure instance.
//
// Provided for instance kinds:
@@ -1411,6 +1460,23 @@ enum {
// Maps will be PlainInstance.
Map,
+ // An instance of the built-in VM TypedData implementations. User-defined
+ // TypedDatas will be PlainInstance.
+ Uint8ClampedList,
+ Uint8List,
+ Uint16List,
+ Uint32List,
+ Uint64List,
+ Int8List,
+ Int16List,
+ Int32List,
+ Int64List,
+ Float32List,
+ Float64List,
+ Int32x4List,
+ Float32x4List,
+ Float64x2List,
+
// An instance of the built-in VM Closure implementation. User-defined
// Closures will be PlainInstance.
Closure,
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698