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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt

Issue 2770123002: DevTools: produce javascript outline for javascript classess (Closed)
Patch Set: missing build files Created 3 years, 9 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: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt
index b9f8333c8693d6ba5a410c4200817d2b63d9d886..b05c51ce6b05b12360434a284946592bc0bf489a 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-2-expected.txt
@@ -5,17 +5,19 @@ Running: testNamedFunctionVariableAssignment
Text:
var a = function foo(...bar) { }
Outline:
- foo(...bar):0:17
+ a(...bar):0:4
Running: testArrowFunction
Text:
var a = x => x + 2
Outline:
+ a(x):0:4
Running: testArrowFunctionWithMultipleArguments
Text:
var a = (x, y) => x + y
Outline:
+ a(x, y):0:4
Running: testInnerFunctions
Text:
@@ -29,7 +31,7 @@ Running: testObjectProperties
Text:
x = { run: function() { }, get count() { }, set count(value) { }}
Outline:
- run():0:11
+ run():0:6
get count():0:31
set count(value):0:48

Powered by Google App Engine
This is Rietveld 408576698