Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
REGRESSION(r238039) WebCore::JSDOMGlobalObject::createStructure is us…
…ing JSC::Structure::create without including StructureInlines.h https://bugs.webkit.org/show_bug.cgi?id=191626 Reviewed by Yusuke Suzuki. JSC::Structure::create is used everywhere. It should be defined in Structure.h, not in StructureInlines.h. * runtime/Structure.h: (JSC::Structure::create): Moved. * runtime/StructureInlines.h: Moved JSC::Structure::create. Canonical link: https://commits.webkit.org/206542@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@238366 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
23 additions
and 9 deletions.
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
@@ -34,15 +34,6 @@ | ||
|
||
namespace JSC { | ||
|
||
inline Structure* Structure::createStructure(VM& vm) | ||
{ | ||
ASSERT(!vm.structureStructure); | ||