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#include "config.h"
22#include "JSSVGTitleElement.h"
23
24#include "JSDOMBinding.h"
25#include "JSDOMConstructorNotConstructable.h"
26#include "JSDOMExceptionHandling.h"
27#include "JSDOMWrapperCache.h"
28#include "ScriptExecutionContext.h"
29#include <JavaScriptCore/HeapSnapshotBuilder.h>
30#include <JavaScriptCore/JSCInlines.h>
31#include <wtf/GetPtr.h>
32#include <wtf/PointerPreparations.h>
33#include <wtf/URL.h>
34
35
36namespace WebCore {
37using namespace JSC;
38
39// Attributes
40
41JSC::EncodedJSValue jsSVGTitleElementConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::PropertyName);
42bool setJSSVGTitleElementConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue);
43
44class JSSVGTitleElementPrototype : public JSC::JSNonFinalObject {
45public:
46 using Base = JSC::JSNonFinalObject;
47 static JSSVGTitleElementPrototype* create(JSC::VM& vm, JSDOMGlobalObject* globalObject, JSC::Structure* structure)
48 {
49 JSSVGTitleElementPrototype* ptr = new (NotNull, JSC::allocateCell<JSSVGTitleElementPrototype>(vm.heap)) JSSVGTitleElementPrototype(vm, globalObject, structure);
50 ptr->finishCreation(vm);
51 return ptr;
52 }
53
54 DECLARE_INFO;
55 static JSC::Structure* createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
56 {
57 return JSC::Structure::create(vm, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), info());
58 }
59
60private:
61 JSSVGTitleElementPrototype(JSC::VM& vm, JSC::JSGlobalObject*, JSC::Structure* structure)
62 : JSC::JSNonFinalObject(vm, structure)
63 {
64 }
65
66 void finishCreation(JSC::VM&);
67};
68
69using JSSVGTitleElementConstructor = JSDOMConstructorNotConstructable<JSSVGTitleElement>;
70
71template<> JSValue JSSVGTitleElementConstructor::prototypeForStructure(JSC::VM& vm, const JSDOMGlobalObject& globalObject)
72{
73 return JSSVGElement::getConstructor(vm, &globalObject);
74}
75
76template<> void JSSVGTitleElementConstructor::initializeProperties(VM& vm, JSDOMGlobalObject& globalObject)
77{
78 putDirect(vm, vm.propertyNames->prototype, JSSVGTitleElement::prototype(vm, globalObject), JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
79 putDirect(vm, vm.propertyNames->name, jsNontrivialString(&vm, String("SVGTitleElement"_s)), JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
80 putDirect(vm, vm.propertyNames->length, jsNumber(0), JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
81}
82
83template<> const ClassInfo JSSVGTitleElementConstructor::s_info = { "SVGTitleElement", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSSVGTitleElementConstructor) };
84
85/* Hash table for prototype */
86
87static const HashTableValue JSSVGTitleElementPrototypeTableValues[] =
88{
89 { "constructor", static_cast<unsigned>(JSC::PropertyAttribute::DontEnum), NoIntrinsic, { (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsSVGTitleElementConstructor), (intptr_t) static_cast<PutPropertySlot::PutValueFunc>(setJSSVGTitleElementConstructor) } },
90};
91
92const ClassInfo JSSVGTitleElementPrototype::s_info = { "SVGTitleElementPrototype", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSSVGTitleElementPrototype) };
93
94void JSSVGTitleElementPrototype::finishCreation(VM& vm)
95{
96 Base::finishCreation(vm);
97 reifyStaticProperties(vm, JSSVGTitleElement::info(), JSSVGTitleElementPrototypeTableValues, *this);
98}
99
100const ClassInfo JSSVGTitleElement::s_info = { "SVGTitleElement", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSSVGTitleElement) };
101
102JSSVGTitleElement::JSSVGTitleElement(Structure* structure, JSDOMGlobalObject& globalObject, Ref<SVGTitleElement>&& impl)
103 : JSSVGElement(structure, globalObject, WTFMove(impl))
104{
105}
106
107void JSSVGTitleElement::finishCreation(VM& vm)
108{
109 Base::finishCreation(vm);
110 ASSERT(inherits(vm, info()));
111
112}
113
114JSObject* JSSVGTitleElement::createPrototype(VM& vm, JSDOMGlobalObject& globalObject)
115{
116 return JSSVGTitleElementPrototype::create(vm, &globalObject, JSSVGTitleElementPrototype::createStructure(vm, &globalObject, JSSVGElement::prototype(vm, globalObject)));
117}
118
119JSObject* JSSVGTitleElement::prototype(VM& vm, JSDOMGlobalObject& globalObject)
120{
121 return getDOMPrototype<JSSVGTitleElement>(vm, globalObject);
122}
123
124JSValue JSSVGTitleElement::getConstructor(VM& vm, const JSGlobalObject* globalObject)
125{
126 return getDOMConstructor<JSSVGTitleElementConstructor>(vm, *jsCast<const JSDOMGlobalObject*>(globalObject));
127}
128
129EncodedJSValue jsSVGTitleElementConstructor(ExecState* state, EncodedJSValue thisValue, PropertyName)
130{
131 VM& vm = state->vm();
132 auto throwScope = DECLARE_THROW_SCOPE(vm);
133 auto* prototype = jsDynamicCast<JSSVGTitleElementPrototype*>(vm, JSValue::decode(thisValue));
134 if (UNLIKELY(!prototype))
135 return throwVMTypeError(state, throwScope);
136 return JSValue::encode(JSSVGTitleElement::getConstructor(state->vm(), prototype->globalObject()));
137}
138
139bool setJSSVGTitleElementConstructor(ExecState* state, EncodedJSValue thisValue, EncodedJSValue encodedValue)
140{
141 VM& vm = state->vm();
142 auto throwScope = DECLARE_THROW_SCOPE(vm);
143 auto* prototype = jsDynamicCast<JSSVGTitleElementPrototype*>(vm, JSValue::decode(thisValue));
144 if (UNLIKELY(!prototype)) {
145 throwVMTypeError(state, throwScope);
146 return false;
147 }
148 // Shadowing a built-in constructor
149 return prototype->putDirect(vm, vm.propertyNames->constructor, JSValue::decode(encodedValue));
150}
151
152void JSSVGTitleElement::heapSnapshot(JSCell* cell, HeapSnapshotBuilder& builder)
153{
154 auto* thisObject = jsCast<JSSVGTitleElement*>(cell);
155 builder.setWrappedObjectForCell(cell, &thisObject->wrapped());
156 if (thisObject->scriptExecutionContext())
157 builder.setLabelForCell(cell, "url " + thisObject->scriptExecutionContext()->url().string());
158 Base::heapSnapshot(cell, builder);
159}
160
161
162}
163