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