| 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,
|
|
|