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

Unified Diff: runtime/observatory/tests/service/graph_test.dart

Issue 1584223006: Remove signature classes from the VM. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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/service/graph_test.dart
diff --git a/runtime/observatory/tests/service/graph_test.dart b/runtime/observatory/tests/service/graph_test.dart
index 3cf8c469d0d61c230dbac11144cb96089cb3ce3e..fab9d685358f3ba508f891edd28d253e26c21df9 100644
--- a/runtime/observatory/tests/service/graph_test.dart
+++ b/runtime/observatory/tests/service/graph_test.dart
@@ -71,7 +71,7 @@ var tests = [
bVertex.shallowSize +
rVertex.shallowSize));
- const int fixedSizeListCid = 62;
+ const int fixedSizeListCid = 64; // TODO(rmacnak): Compute from kArrayCid.
rmacnak 2016/01/19 19:27:11 Library corelib = isolate.libraries.singleWhere((l
regis 2016/01/19 23:15:29 Done. Thanks!
List<ObjectVertex> lists = new List.from(graph.vertices.where(
(ObjectVertex obj) => obj.vmCid == fixedSizeListCid));
expect(lists.length >= 2, isTrue);

Powered by Google App Engine
This is Rietveld 408576698