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 |