1/*
2 This file is part of the WebKit open source project.
3 This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20
21#pragma once
22
23#include "Document.h"
24#include "JSDOMConvertEnumeration.h"
25#include "JSDOMWrapper.h"
26#include "JSNode.h"
27#include <JavaScriptCore/DOMJITGetterSetter.h>
28#include <JavaScriptCore/Snippet.h>
29
30namespace WebCore {
31
32class WEBCORE_EXPORT JSDocument : public JSNode {
33public:
34 using Base = JSNode;
35 using DOMWrapped = Document;
36 static JSDocument* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, Ref<Document>&& impl)
37 {
38 JSDocument* ptr = new (NotNull, JSC::allocateCell<JSDocument>(globalObject->vm().heap)) JSDocument(structure, *globalObject, WTFMove(impl));
39 ptr->finishCreation(globalObject->vm());
40 return ptr;
41 }
42
43 static JSC::JSObject* createPrototype(JSC::VM&, JSDOMGlobalObject&);
44 static JSC::JSObject* prototype(JSC::VM&, JSDOMGlobalObject&);
45 static Document* toWrapped(JSC::VM&, JSC::JSValue);
46
47 DECLARE_INFO;
48
49 static JSC::Structure* createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
50 {
51 return JSC::Structure::create(vm, globalObject, prototype, JSC::TypeInfo(JSC::JSType(JSDocumentWrapperType), StructureFlags), info());
52 }
53
54 static JSC::JSValue getConstructor(JSC::VM&, const JSC::JSGlobalObject*);
55 static void visitChildren(JSCell*, JSC::SlotVisitor&);
56 void visitAdditionalChildren(JSC::SlotVisitor&);
57
58 static void visitOutputConstraints(JSCell*, JSC::SlotVisitor&);
59 template<typename, JSC::SubspaceAccess> static JSC::CompleteSubspace* subspaceFor(JSC::VM& vm) { return outputConstraintSubspaceFor(vm); }
60 static void heapSnapshot(JSCell*, JSC::HeapSnapshotBuilder&);
61 Document& wrapped() const
62 {
63 return static_cast<Document&>(Base::wrapped());
64 }
65public:
66 static const unsigned StructureFlags = Base::StructureFlags | JSC::HasStaticPropertyTable;
67protected:
68 JSDocument(JSC::Structure*, JSDOMGlobalObject&, Ref<Document>&&);
69
70 void finishCreation(JSC::VM&);
71};
72
73WEBCORE_EXPORT JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, Document&);
74inline JSC::JSValue toJS(JSC::ExecState* state, JSDOMGlobalObject* globalObject, Document* impl) { return impl ? toJS(state, globalObject, *impl) : JSC::jsNull(); }
75JSC::JSValue toJSNewlyCreated(JSC::ExecState*, JSDOMGlobalObject*, Ref<Document>&&);
76inline JSC::JSValue toJSNewlyCreated(JSC::ExecState* state, JSDOMGlobalObject* globalObject, RefPtr<Document>&& impl) { return impl ? toJSNewlyCreated(state, globalObject, impl.releaseNonNull()) : JSC::jsNull(); }
77
78#if ENABLE(JIT)
79Ref<JSC::Snippet> checkSubClassSnippetForJSDocument();
80#endif
81// DOM JIT Attributes
82
83#if ENABLE(JIT)
84Ref<JSC::DOMJIT::CallDOMGetterSnippet> compileDocumentDocumentElementAttribute();
85#endif
86
87#if ENABLE(JIT)
88Ref<JSC::DOMJIT::CallDOMGetterSnippet> compileDocumentBodyAttribute();
89#endif
90
91template<> struct JSDOMWrapperConverterTraits<Document> {
92 using WrapperClass = JSDocument;
93 using ToWrappedReturnType = Document*;
94};
95String convertEnumerationToString(Document::ReadyState);
96template<> JSC::JSString* convertEnumerationToJS(JSC::ExecState&, Document::ReadyState);
97
98template<> Optional<Document::ReadyState> parseEnumeration<Document::ReadyState>(JSC::ExecState&, JSC::JSValue);
99template<> const char* expectedEnumerationValues<Document::ReadyState>();
100
101
102} // namespace WebCore
103#include "JSDocumentCustom.h"
104