| 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..dbeaeb450aef95ab65fd5343234fd74b1761ca70 100644
|
| --- a/LayoutTests/dart/inspector/scope-variables.dart
|
| +++ b/LayoutTests/dart/inspector/scope-variables.dart
|
| @@ -34,6 +34,14 @@ 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';
|
| }
|
| +
|
| +String get regularGetter => 'regular value';
|
| +
|
| +DivElement get exampleDivGetter => html.query("#example_div");
|
|
|