OLD | NEW |
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 Loading... |
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 |
OLD | NEW |