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 "JSHTMLSpanElement.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 jsHTMLSpanElementConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::PropertyName);
42bool setJSHTMLSpanElementConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue);
43
44class JSHTMLSpanElementPrototype : public JSC::JSNonFinalObject {
45public:
46 using Base = JSC::JSNonFinalObject;
47 static JSHTMLSpanElementPrototype* create(JSC::VM& vm, JSDOMGlobalObject* globalObject, JSC::Structure* structure)
48 {
49 JSHTMLSpanElementPrototype* ptr = new (NotNull, JSC::allocateCell<JSHTMLSpanElementPrototype>(vm.heap)) JSHTMLSpanElementPrototype(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 JSHTMLSpanElementPrototype(JSC::VM& vm, JSC::JSGlobalObject*, JSC::Structure* structure)
62 : JSC::JSNonFinalObject(vm, structure)
63 {
64 }
65
66 void finishCreation(JSC::VM&);
67};
68
69using JSHTMLSpanElementConstructor = JSDOMConstructorNotConstructable<JSHTMLSpanElement>;
70
71template<> JSValue JSHTMLSpanElementConstructor::prototypeForStructure(JSC::VM& vm, const JSDOMGlobalObject& globalObject)
72{
73 return JSHTMLElement::getConstructor(vm, &globalObject);
74}
75
76template<> void JSHTMLSpanElementConstructor::initializeProperties(VM& vm, JSDOMGlobalObject& globalObject)
77{
78 putDirect(vm, vm.propertyNames->prototype, JSHTMLSpanElement::prototype(vm, globalObject), JSC::PropertyAttribute::DontDelete | JSC::PropertyAttribute::ReadOnly | JSC::PropertyAttribute::DontEnum);
79 putDirect(vm, vm.propertyNames->name, jsNontrivialString(&vm, String("HTMLSpanElement"_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 JSHTMLSpanElementConstructor::s_info = { "HTMLSpanElement", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSHTMLSpanElementConstructor) };
84
85/* Hash table for prototype */
86
87static const HashTableValue JSHTMLSpanElementPrototypeTableValues[] =
88{
89 { "constructor", static_cast<unsigned>(JSC::PropertyAttribute::DontEnum), NoIntrinsic, { (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsHTMLSpanElementConstructor), (intptr_t) static_cast<PutPropertySlot::PutValueFunc>(setJSHTMLSpanElementConstructor) } },
90};
91
92const ClassInfo JSHTMLSpanElementPrototype::s_info = { "HTMLSpanElementPrototype", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSHTMLSpanElementPrototype) };
93
94void JSHTMLSpanElementPrototype::finishCreation(VM& vm)
95{
96 Base::finishCreation(vm);
97 reifyStaticProperties(vm, JSHTMLSpanElement::info(), JSHTMLSpanElementPrototypeTableValues, *this);
98}
99
100const ClassInfo JSHTMLSpanElement::s_info = { "HTMLSpanElement", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSHTMLSpanElement) };
101
102JSHTMLSpanElement::JSHTMLSpanElement(Structure* structure, JSDOMGlobalObject& globalObject, Ref<HTMLSpanElement>&& impl)
103 : JSHTMLElement(structure, globalObject, WTFMove(impl))
104{
105}
106
107void JSHTMLSpanElement::finishCreation(VM& vm)
108{
109 Base::finishCreation(vm);
110 ASSERT(inherits(vm, info()));
111
112}
113
114JSObject* JSHTMLSpanElement::createPrototype(VM& vm, JSDOMGlobalObject& globalObject)
115{
116 return JSHTMLSpanElementPrototype::create(vm, &globalObject, JSHTMLSpanElementPrototype::createStructure(vm, &globalObject, JSHTMLElement::prototype(vm, globalObject)));
117}
118
119JSObject* JSHTMLSpanElement::prototype(VM& vm, JSDOMGlobalObject& globalObject)
120{
121 return getDOMPrototype<JSHTMLSpanElement>(vm, globalObject);
122}
123
124JSValue JSHTMLSpanElement::getConstructor(VM& vm, const JSGlobalObject* globalObject)
125{
126 return getDOMConstructor<JSHTMLSpanElementConstructor>(vm, *jsCast<const JSDOMGlobalObject*>(globalObject));
127}
128
129EncodedJSValue jsHTMLSpanElementConstructor(ExecState* state, EncodedJSValue thisValue, PropertyName)
130{
131 VM& vm = state->vm();
132 auto throwScope = DECLARE_THROW_SCOPE(vm);
133 auto* prototype = jsDynamicCast<JSHTMLSpanElementPrototype*>(vm, JSValue::decode(thisValue));
134 if (UNLIKELY(!prototype))
135 return throwVMTypeError(state, throwScope);
136 return JSValue::encode(JSHTMLSpanElement::getConstructor(state->vm(), prototype->globalObject()));
137}
138
139bool setJSHTMLSpanElementConstructor(ExecState* state, EncodedJSValue thisValue, EncodedJSValue encodedValue)
140{
141 VM& vm = state->vm();
142 auto throwScope = DECLARE_THROW_SCOPE(vm);
143 auto* prototype = jsDynamicCast<JSHTMLSpanElementPrototype*>(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 JSHTMLSpanElement::heapSnapshot(JSCell* cell, HeapSnapshotBuilder& builder)
153{
154 auto* thisObject = jsCast<JSHTMLSpanElement*>(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