Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Remove [ConstructorParameters] from IDL files that have [Constructor]
https://bugs.webkit.org/show_bug.cgi?id=79643 Reviewed by Adam Barth. This patch removes [ConstructorParameters] from IDL files that have [Constructor], since CodeGeneratorJS.pm can automatically detect the number of constructor arguments by the [Constructor(...)] signature. Test: fast/js/constructor-length.html * Modules/mediastream/PeerConnection.idl: * bindings/scripts/CodeGeneratorJS.pm: (GenerateConstructorDefinition): * css/WebKitCSSMatrix.idl: * page/EventSource.idl: * workers/SharedWorker.idl: * workers/Worker.idl: Canonical link: https://commits.webkit.org/96794@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@109029 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
22 additions
and 6 deletions.
- +21 −0 Source/WebCore/ChangeLog
- +0 −1 Source/WebCore/Modules/mediastream/PeerConnection.idl
- +1 −1 Source/WebCore/bindings/scripts/CodeGeneratorJS.pm
- +0 −1 Source/WebCore/css/WebKitCSSMatrix.idl
- +0 −1 Source/WebCore/page/EventSource.idl
- +0 −1 Source/WebCore/workers/SharedWorker.idl
- +0 −1 Source/WebCore/workers/Worker.idl
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -27,7 +27,6 @@ module css { | ||
|
||
// Introduced in DOM Level ?: | ||
interface [ | ||
Constructor(in [Optional=DefaultIsNullString] DOMString cssValue), | ||
ConstructorRaisesException, | ||
] WebKitCSSMatrix { | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -33,7 +33,6 @@ module window { | ||
|
||
interface [ | ||
ActiveDOMObject, | ||
Constructor(in DOMString scriptUrl), | ||
CallWith=ScriptExecutionContext, | ||
ConstructorRaisesException, | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -31,7 +31,6 @@ module threads { | ||
Conditional=WORKERS, | ||
ActiveDOMObject, | ||
JSCustomConstructor, | ||
Constructor(in DOMString scriptUrl), | ||
CallWith=ScriptExecutionContext, | ||
ConstructorRaisesException, | ||