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

Unified Diff: LayoutTests/dart/inspector/scope-variables.dart

Issue 18169002: Improve Dart Debugger performance and robustness by creating Dart wrappers using the standard SetNa… (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: code review fixes Created 7 years, 5 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: LayoutTests/dart/inspector/scope-variables.dart
diff --git a/LayoutTests/dart/inspector/scope-variables.dart b/LayoutTests/dart/inspector/scope-variables.dart
index a36e27340545c8ed5126265a428b2342f9ce180f..0757638784fe642d7211dfa8022bfb49cbbafe13 100644
--- a/LayoutTests/dart/inspector/scope-variables.dart
+++ b/LayoutTests/dart/inspector/scope-variables.dart
@@ -34,6 +34,12 @@ class A {
var globalVariable = 'globalString';
+var globalMapVariable = {'foo': 'bar', 'baz': 42};
+
+var globalArrayVariable = [3, 1, 4, 1, 5, 9];
+
String get throwingGetter {
throw 'only the best reviews';
}
+
+html.DivElement get exampleDivGetter => html.query("#example_div");

Powered by Google App Engine
This is Rietveld 408576698