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

Unified Diff: LayoutTests/dart/inspector/evaluate-in-console.html

Issue 24989007: Model each Dart library as its own ScriptState when devtools are enabled. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/dart/inspector/evaluate-in-console-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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}"',
« no previous file with comments | « no previous file | LayoutTests/dart/inspector/evaluate-in-console-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698