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

Side by Side Diff: LayoutTests/dart/inspector/evaluate-in-console-expected.txt

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: Ready for review 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 CONSOLE MESSAGE: line 1: Hello <window> 1 CONSOLE MESSAGE: line 1: Hello <window>
2 CONSOLE MESSAGE: line 1: foo 2 CONSOLE MESSAGE: line 1: foo
3 Debugger was enabled. 3 Debugger was enabled.
4 4
5 Running: testScopeChain 5 Running: testScopeChain
6 Script execution paused. 6 Script execution paused.
7 Call stack: 7 Call stack:
8 0) handleMessage (evaluate-in-console.dart:13) 8 0) handleMessage (evaluate-in-console.dart:13)
9 test.instanceField = "Test.instanceField" 9 test.instanceField = "Test.instanceField"
10 test.instanceField = "new value" = "new value" 10 test.instanceField = "new value" = "new value"
(...skipping 27 matching lines...) Expand all
38 test.create("x").instanceField = "x" 38 test.create("x").instanceField = "x"
39 test.concat(test.create("x"), test.create("y")) = "new value:x:y" 39 test.concat(test.create("x"), test.create("y")) = "new value:x:y"
40 _private = "private" 40 _private = "private"
41 globalField = null 41 globalField = null
42 calculateSquareRoot(25) = 5 42 calculateSquareRoot(25) = 5
43 new Element.tag("div").outerHtml = "<div></div>" 43 new Element.tag("div").outerHtml = "<div></div>"
44 (new Element.tag("div")..append(new Element.tag("h1"))).outerHtml = "<div><h1></ h1></div>" 44 (new Element.tag("div")..append(new Element.tag("h1"))).outerHtml = "<div><h1></ h1></div>"
45 new Element.tag("div").tagName = "DIV" 45 new Element.tag("div").tagName = "DIV"
46 intList.toString() = "{4, 2}" 46 intList.toString() = "{4, 2}"
47 (LinkedList).toString() = "LinkedList" 47 (LinkedList).toString() = "LinkedList"
48 $var.a=new List<int>()..add(4)..add(42) = 48 var a=new List<int>()..add(4)..add(42) =
49 $var.a.toString() = "[4, 42]" 49 a.toString() = "[4, 42]"
50 $var.variables() = 50 $consoleVariables.variables() =
51 $var.f = (x) => x*42 = [Dart Function] {} 51 var f = (x) => x*42 = [Dart Function] {}
52 $var.f(2) = 84 52 f(2) = 84
53 [] is List = true 53 [] is List = true
54 {} is List = false 54 {} is List = false
55 "This should be an int: ${10000000000000000000000 - 1}" = "This should be an int : 9999999999999999999999" 55 "This should be an int: ${10000000000000000000000 - 1}" = "This should be an int : 9999999999999999999999"
56 10000000000000000000000 is int = true 56 10000000000000000000000 is int = true
57 1.0 is int = false 57 1.0 is int = false
58 1.0 is double = true 58 1.0 is double = true
59 ((x) => x * 2)(21) = 42 59 ((x) => x * 2)(21) = 42
60 ((x) { var z = x * 4; return z; })(21) = 84 60 ((x) { var z = x * 4; return z; })(21) = 84
61 print("Hello $window") = Hello <window> 61 print("Hello $window") = Hello <window>
62 62
63 Running: testPrint 63 Running: testPrint
64 Script execution resumed. 64 Script execution resumed.
65 Debugger was disabled. 65 Debugger was disabled.
66 66
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698