Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: bfe2376ba1b894bc0d1bfe8ab592d5c87915f300
https://github.com/WebKit/WebKit/commit/bfe2376ba1b894bc0d1bfe8ab592d5c87915f300
Author: Devin Rousso <[email protected]>
Date: 2026-06-23 (Tue, 23 Jun 2026)
Changed paths:
M Source/WebInspectorUI/UserInterface/Views/ObjectTreePropertyTreeElement.js
Log Message:
-----------
Web Inspector: grab a formatted parameters string for object shorthand and
arrow functions
https://bugs.webkit.org/show_bug.cgi?id=317563
Reviewed by Alexey Proskuryakov.
Functions can be created on objects in three ways:
```js
{
a(x, y) {},
b: function(x, y) {},
c: (x, y) => {},
}
```
Previously, this would appear as the following:
```js
{
a: function() {},
b: function(x, y) {},
c: function() {},
}
```
* Source/WebInspectorUI/UserInterface/Views/ObjectTreePropertyTreeElement.js:
(WI.ObjectTreePropertyTreeElement.prototype._functionParameterString):
Canonical link: https://commits.webkit.org/315723@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications