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

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

Issue 1316123004: Improve display of simd vector types and stack traces in Observatory. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: code review Created 5 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 | « 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 3b24aee6000f3918a44cb00b76a8550134e2c865..c18f390d9bc59962a9686c5b0dea7e7e7e99e268 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -1241,6 +1241,10 @@ class @Instance extends @Object {
// Double (suitable for passing to Double.parse())
// Int (suitable for passing to int.parse())
// String (value may be truncated)
+ // Float32x4
+ // Float64x2
+ // Int32x4
+ // StackTrace
string valueAsString [optional];
// The valueAsString for String references may be truncated. If so,
@@ -1507,6 +1511,11 @@ enum InstanceKind {
// Maps will be PlainInstance.
Map,
+ // Vector instance kinds.
+ Float32x4,
+ Float64x2,
+ Int32x4
+
// An instance of the built-in VM TypedData implementations. User-defined
// TypedDatas will be PlainInstance.
Uint8ClampedList,
@@ -1524,6 +1533,9 @@ enum InstanceKind {
Float32x4List,
Float64x2List,
+ // An instance of the Dart class StackTrace.
+ StackTrace,
+
// 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