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

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

Issue 18169002: Improve Dart Debugger performance and robustness by creating Dart wrappers using the standard SetNa… (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Code review fixes Created 7 years, 5 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: 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':.
19 Tried calling: call(1)
20 Found: call()
21 #0 Object.noSuchMethod (SOURCE_LOCATION)"
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
OLDNEW
« no previous file with comments | « LayoutTests/dart/inspector/evaluate-in-console.html ('k') | LayoutTests/dart/inspector/scope-variables.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698