OLD | NEW |
---|---|
1 CONSOLE MESSAGE: line 1: foo | 1 CONSOLE MESSAGE: line 1: foo |
2 Debugger was enabled. | 2 Debugger was enabled. |
3 | 3 |
4 Running: testScopeChain | 4 Running: testScopeChain |
5 Script execution paused. | 5 Script execution paused. |
6 Call stack: | 6 Call stack: |
7 0) handleMessage (evaluate-in-console.dart:12) | 7 0) handleMessage (evaluate-in-console.dart:12) |
8 test.instanceField = "Test.instanceField" | 8 test.instanceField = "Test.instanceField" |
9 test.instanceField = "new value" = "new value" | 9 test.instanceField = "new value" = "new value" |
10 test.foo = null | 10 test.foo = null |
11 test.foo = 3 = 3 | 11 test.foo = 3 = 3 |
12 test.foo = 3 | 12 test.foo = 3 |
13 test.toString() = "<Test instance with instanceField = new value>" | 13 test.toString() = "<Test instance with instanceField = new value>" |
14 test.toString(1) = "NoSuchMethodException: incorrect number of arguments passed to function named 'toString'" | 14 test.toString(1) = "Unhandled exception: |
15 Closure call with mismatched arguments: function 'call' | |
16 | |
17 NoSuchMethodError: incorrect number of arguments passed to method named 'call' | |
18 Receiver: Closure: () => String from Function 'toString':. | |
vsm
2013/07/15 18:40:29
It looks brittle to depend on the actual error str
Jacob
2013/07/15 22:23:54
Done.
| |
19 Tried calling: call(1) | |
20 Found: call() | |
21 #0 Object.noSuchMethod (dart:core-patch/object_patch.dart:23:25)" | |
15 test.create("x").instanceField = "x" | 22 test.create("x").instanceField = "x" |
16 test.concat(test.create("x"), test.create("y")) = "new value:x:y" | 23 test.concat(test.create("x"), test.create("y")) = "new value:x:y" |
17 _private = "private" | 24 _private = "private" |
18 globalField = null | 25 globalField = null |
19 calculateSquareRoot(25) = 5 | 26 calculateSquareRoot(25) = 5 |
20 document.$dom_createElement("div").tagName = "DIV" | 27 new Element.tag("div").outerHtml = "<div></div>" |
28 new Element.tag("div").tagName = "DIV" | |
21 | 29 |
22 Running: testPrint | 30 Running: testPrint |
23 Script execution resumed. | 31 Script execution resumed. |
24 Debugger was disabled. | 32 Debugger was disabled. |
25 | 33 |
OLD | NEW |