forked from Samsung/escargot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleNamespaceObject.h
More file actions
123 lines (102 loc) · 4.82 KB
/
ModuleNamespaceObject.h
File metadata and controls
123 lines (102 loc) · 4.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* Copyright (c) 2019-present Samsung Electronics Co., Ltd
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef __EscargotModuleNamespaceObject__
#define __EscargotModuleNamespaceObject__
#include "runtime/Object.h"
namespace Escargot {
class Script;
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects
class ModuleNamespaceObject : public DerivedObject {
public:
ModuleNamespaceObject(ExecutionState& state, Script* script);
virtual bool isModuleNamespaceObject() const override
{
return true;
}
virtual bool isInlineCacheable() override
{
return false;
}
virtual bool hasOwnEnumeration() const override
{
return true;
}
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-getprototypeof
virtual Object* getPrototypeObject(ExecutionState&) override
{
return nullptr;
}
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-getprototypeof
virtual Value getPrototype(ExecutionState&) override
{
return Value(Value::Null);
}
// https://www.ecma-international.org/ecma-262/#sec-module-namespace-exotic-objects-setprototypeof-v
virtual bool setPrototype(ExecutionState&, const Value& v) override
{
// Return ? SetImmutablePrototype(O, V).
// SetImmutablePrototype ( O, V )
// When the SetImmutablePrototype abstract operation is called with arguments O and V, the following steps are taken:
// Assert: Either Type(V) is Object or Type(V) is Null.
// Let current be ? O.[[GetPrototypeOf]]().
// If SameValue(V, current) is true, return true.
// Return false.
if (v.isNull()) {
return true;
}
return false;
}
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-isextensible
virtual bool isExtensible(ExecutionState&) override
{
if (!m_isInitialized) {
return true;
}
return false;
}
virtual bool preventExtensions(ExecutionState&) override
{
return true;
}
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-getownproperty-p
virtual ObjectGetResult getOwnProperty(ExecutionState& state, const ObjectPropertyName& P) override;
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-defineownproperty-p-desc
virtual bool defineOwnProperty(ExecutionState& state, const ObjectPropertyName& P, const ObjectPropertyDescriptor& desc) override;
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-hasproperty-p
virtual ObjectHasPropertyResult hasProperty(ExecutionState& state, const ObjectPropertyName& P) override;
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-get-p-receiver
virtual ObjectGetResult get(ExecutionState& state, const ObjectPropertyName& P, const Value& receiver) override;
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-set-p-v-receiver
virtual bool set(ExecutionState& state, const ObjectPropertyName& P, const Value& v, const Value& receiver) override
{
return false;
}
// https://www.ecma-international.org/ecma-262/#sec-module-namespace-exotic-objects-delete-p
virtual bool deleteOwnProperty(ExecutionState& state, const ObjectPropertyName& P) override;
// http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-ownpropertykeys
virtual void enumeration(ExecutionState& state, bool (*callback)(ExecutionState& state, Object* self, const ObjectPropertyName&, const ObjectStructurePropertyDescriptor& desc, void* data), void* data, bool shouldSkipSymbolKey) override;
// https://www.ecma-international.org/ecma-262/#sec-module-namespace-exotic-objects-ownpropertykeys
virtual OwnPropertyKeyVector ownPropertyKeys(ExecutionState& state) override;
private:
bool m_isInitialized;
Script* m_script;
AtomicStringVector m_exports;
};
} // namespace Escargot
#endif