Index: third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt b/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt |
index 49518e21c0bbffd4009fe282fb2a1d744fbb2d29..b94f7e888d006c1009f8785ac5c5a616b3cb8a69 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt |
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-functions-expected.txt |
@@ -22,18 +22,18 @@ |
CONSOLE MESSAGE: line 29: [object Object] |
Tests that console logging different types of functions correctly. |
-console-functions.html:24 ƒ simple() {} |
-console-functions.html:25 ƒ simple() |
+console-functions.html:24 function simple() {} |
+console-functions.html:25 function simple() |
arguments: null |
caller: null |
length: 0 |
name: "simple" |
prototype: Object |
- __proto__: ƒ () |
+ __proto__: function () |
[[FunctionLocation]]: console-functions.html:10 |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 async ƒ asyncSimple() {} |
-console-functions.html:25 async ƒ asyncSimple() |
+console-functions.html:24 async function asyncSimple() {} |
+console-functions.html:25 async function asyncSimple() |
arguments: (...) |
caller: (...) |
length: 0 |
@@ -41,8 +41,8 @@ |
__proto__: AsyncFunction |
[[FunctionLocation]]: console-functions.html:11 |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 ƒ* genSimple() {} |
-console-functions.html:25 ƒ* genSimple() |
+console-functions.html:24 function* genSimple() {} |
+console-functions.html:25 function* genSimple() |
arguments: (...) |
caller: (...) |
length: 0 |
@@ -52,58 +52,58 @@ |
[[FunctionLocation]]: console-functions.html:12 |
[[IsGenerator]]: true |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 ƒ (){} |
-console-functions.html:25 ƒ anonymous() |
+console-functions.html:24 function (){} |
+console-functions.html:25 function anonymous() |
arguments: null |
caller: null |
length: 0 |
name: "" |
prototype: Object |
- __proto__: ƒ () |
+ __proto__: function () |
[[FunctionLocation]]: console-functions.html:13 |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 ƒ (x, y){} |
-console-functions.html:25 ƒ anonymous(x, y) |
+console-functions.html:24 function (x, y){} |
+console-functions.html:25 function anonymous(x, y) |
arguments: null |
caller: null |
length: 2 |
name: "" |
prototype: Object |
- __proto__: ƒ () |
+ __proto__: function () |
[[FunctionLocation]]: console-functions.html:14 |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 ƒ namedArgs(x) {} |
-console-functions.html:25 ƒ namedArgs(x) |
+console-functions.html:24 function namedArgs(x) {} |
+console-functions.html:25 function namedArgs(x) |
arguments: null |
caller: null |
length: 1 |
name: "namedArgs" |
prototype: Object |
- __proto__: ƒ () |
+ __proto__: function () |
[[FunctionLocation]]: console-functions.html:15 |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 ƒ namedArgs2(x, y) {} |
-console-functions.html:25 ƒ namedArgs2(x, y) |
+console-functions.html:24 function namedArgs2(x, y) {} |
+console-functions.html:25 function namedArgs2(x, y) |
arguments: null |
caller: null |
length: 2 |
name: "namedArgs2" |
prototype: Object |
- __proto__: ƒ () |
+ __proto__: function () |
[[FunctionLocation]]: console-functions.html:16 |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 ƒ ({}) {} |
-console-functions.html:25 ƒ anonymous({}) |
+console-functions.html:24 function ({}) {} |
+console-functions.html:25 function anonymous({}) |
arguments: null |
caller: null |
length: 1 |
name: "" |
prototype: Object |
- __proto__: ƒ () |
+ __proto__: function () |
[[FunctionLocation]]: console-functions.html:17 |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 ƒ* whitespace( x ) { } |
-console-functions.html:25 ƒ* whitespace( x ) |
+console-functions.html:24 function* whitespace( x ) { } |
+console-functions.html:25 function* whitespace( x ) |
arguments: (...) |
caller: (...) |
length: 1 |
@@ -113,8 +113,8 @@ |
[[FunctionLocation]]: console-functions.html:18 |
[[IsGenerator]]: true |
[[Scopes]]: Scopes[1] |
-console-functions.html:24 async ƒ whitespace2( x , y , z ) { } |
-console-functions.html:25 async ƒ whitespace2( x , y , z ) |
+console-functions.html:24 async function whitespace2( x , y , z ) { } |
+console-functions.html:25 async function whitespace2( x , y , z ) |
arguments: (...) |
caller: (...) |
length: 3 |
@@ -123,27 +123,27 @@ |
[[FunctionLocation]]: console-functions.html:19 |
[[Scopes]]: Scopes[1] |
console-functions.html:28 Object |
- func0: ƒ simple() |
- func1: async ƒ asyncSimple() |
- func2: ƒ* genSimple() |
- func3: ƒ () |
- func4: ƒ (x, y) |
- func5: ƒ namedArgs(x) |
- func6: ƒ namedArgs2(x, y) |
- func7: ƒ ({}) |
- func8: ƒ* whitespace( x ) |
- func9: async ƒ whitespace2( x , y , z ) |
+ func0: function simple() |
+ func1: async function asyncSimple() |
+ func2: function* genSimple() |
+ func3: function () |
+ func4: function (x, y) |
+ func5: function namedArgs(x) |
+ func6: function namedArgs2(x, y) |
+ func7: function ({}) |
+ func8: function* whitespace( x ) |
+ func9: async function whitespace2( x , y , z ) |
__proto__: Object |
console-functions.html:29 Object |
- func0: ƒ simple() |
- func1: async ƒ asyncSimple() |
- func2: ƒ* genSimple() |
- func3: ƒ () |
- func4: ƒ (x, y) |
- func5: ƒ namedArgs(x) |
- func6: ƒ namedArgs2(x, y) |
- func7: ƒ ({}) |
- func8: ƒ* whitespace( x ) |
- func9: async ƒ whitespace2( x , y , z ) |
+ func0: function simple() |
+ func1: async function asyncSimple() |
+ func2: function* genSimple() |
+ func3: function () |
+ func4: function (x, y) |
+ func5: function namedArgs(x) |
+ func6: function namedArgs2(x, y) |
+ func7: function ({}) |
+ func8: function* whitespace( x ) |
+ func9: async function whitespace2( x , y , z ) |
__proto__: Object |