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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/dart/inspector/evaluate-in-console-expected.txt
diff --git a/LayoutTests/dart/inspector/evaluate-in-console-expected.txt b/LayoutTests/dart/inspector/evaluate-in-console-expected.txt
index ac5a8cff35bbad4cceb9d0dba7ffc5d4715363d7..741971d31029653bcdb20410ee27d4359f605452 100644
--- a/LayoutTests/dart/inspector/evaluate-in-console-expected.txt
+++ b/LayoutTests/dart/inspector/evaluate-in-console-expected.txt
@@ -11,13 +11,21 @@ test.foo = null
test.foo = 3 = 3
test.foo = 3
test.toString() = "<Test instance with instanceField = new value>"
-test.toString(1) = "NoSuchMethodException: incorrect number of arguments passed to function named 'toString'"
+test.toString(1) = "Unhandled exception:
+Closure call with mismatched arguments: function 'call'
+
+NoSuchMethodError: incorrect number of arguments passed to method named 'call'
+Receiver: Closure: () => String from Function 'toString':.
+Tried calling: call(1)
+Found: call()
+#0 Object.noSuchMethod (SOURCE_LOCATION)"
test.create("x").instanceField = "x"
test.concat(test.create("x"), test.create("y")) = "new value:x:y"
_private = "private"
globalField = null
calculateSquareRoot(25) = 5
-document.$dom_createElement("div").tagName = "DIV"
+new Element.tag("div").outerHtml = "<div></div>"
+new Element.tag("div").tagName = "DIV"
Running: testPrint
Script execution resumed.
« 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