| Index: LayoutTests/dart/inspector/evaluate-in-console.html
|
| diff --git a/LayoutTests/dart/inspector/evaluate-in-console.html b/LayoutTests/dart/inspector/evaluate-in-console.html
|
| index 0d0514ddb85455ffdbd04534d922e1ee9bf62029..c01c537563428859e439061274ba3ae7e9c43dfc 100644
|
| --- a/LayoutTests/dart/inspector/evaluate-in-console.html
|
| +++ b/LayoutTests/dart/inspector/evaluate-in-console.html
|
| @@ -79,11 +79,11 @@ function test()
|
| 'new Element.tag("div").tagName',
|
| 'intList.toString()',
|
| '(LinkedList).toString()',
|
| - '$var.a=new List<int>()..add(4)..add(42)',
|
| - '$var.a.toString()',
|
| - '$var.variables()',
|
| - '$var.f = (x) => x*42',
|
| - '$var.f(2)',
|
| + 'var a=new List<int>()..add(4)..add(42)',
|
| + 'a.toString()',
|
| + '$consoleVariables.variables()',
|
| + 'var f = (x) => x*42',
|
| + 'f(2)',
|
| '[] is List',
|
| '{} is List',
|
| '"This should be an int: ${10000000000000000000000 - 1}"',
|
|
|