Index: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt |
index c6994fded61a8a7e9d4804c58ac7d9be3d9cd570..0e9427819f0584a02bb3a2c37c007e966f717269 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-3-expected.txt |
@@ -5,24 +5,35 @@ Running: testClassConstructor |
Text: |
class Test { constructor(foo, bar) { }} |
Outline: |
+ class Test:0:6 |
+ constructor(foo, bar):0:13 |
Running: testClassMethods |
Text: |
class Test { foo() {} bar() { }} |
Outline: |
+ class Test:0:6 |
+ foo():0:13 |
+ bar():0:22 |
Running: testAnonymousClass |
Text: |
var test = class { constructor(foo, bar) { }} |
Outline: |
+ class test:0:4 |
+ constructor(foo, bar):0:19 |
Running: testClassExtends |
Text: |
var A = class extends B { foo() { }} |
Outline: |
+ class A:0:4 |
+ foo():0:26 |
Running: testStaticMethod |
Text: |
class Test { static foo() { }} |
Outline: |
+ class Test:0:6 |
+ static foo():0:20 |