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

Unified Diff: runtime/observatory/tests/ui/inspector.dart

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: 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
Index: runtime/observatory/tests/ui/inspector.dart
diff --git a/runtime/observatory/tests/ui/inspector.dart b/runtime/observatory/tests/ui/inspector.dart
index 1befdf61cecaec344a7467ad0f95b5cc3758cc14..f33a37e200d1efbf20d4e624865088e1cccb6f1e 100644
--- a/runtime/observatory/tests/ui/inspector.dart
+++ b/runtime/observatory/tests/ui/inspector.dart
@@ -135,12 +135,12 @@ class Node {
counter = new Counter("CounterName", "Counter description");
expando = new Expando("expando-name");
expando[array] = 'The weakly associated value';
- float32x4 = new Float32x4.zero();
+ float32x4 = new Float32x4(0.0, -1.0, 3.14, 2e28);
float64 = 3.14;
- float64x2 = new Float64x2.zero();
- gauge = new Gauge("GuageName", "Guage description", 0.0, 100.0);
+ float64x2 = new Float64x2(0.0, 3.14);
+ gauge = new Gauge("GaugeName", "Gauge description", 0.0, 100.0);
growableList = new List();
- int32x4 = new Int32x4(0,0,0,0);
+ int32x4 = new Int32x4(0,1,10,11);
map = { "x-key": "x-value", "y-key": "y-value", "removed-key": "removed-value" };
map.remove("removed-key");
mint = 1 << 32;

Powered by Google App Engine
This is Rietveld 408576698