aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4lookup_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-11-14 09:56:53 +0100
committerLars Knoll <lars.knoll@qt.io>2017-11-27 11:10:07 +0000
commitde918eb0890087f93e6fac4bf5291b0855ae0d87 (patch)
tree01f98d18f5bcc2858cc60926c51c5d75a01f9a28 /src/qml/jsruntime/qv4lookup_p.h
parente6d17c8691bfafa033b82a4d81a9caf4a2fd1b85 (diff)
Cleanup now unused code paths in qv4lookup
Change-Id: Ifd3fbc128f0ff30458912c65429bcf6f577204a0 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4lookup_p.h')
-rw-r--r--src/qml/jsruntime/qv4lookup_p.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/qml/jsruntime/qv4lookup_p.h b/src/qml/jsruntime/qv4lookup_p.h
index 5c58d2f669..5f507733fd 100644
--- a/src/qml/jsruntime/qv4lookup_p.h
+++ b/src/qml/jsruntime/qv4lookup_p.h
@@ -104,14 +104,7 @@ struct Lookup {
int icIdentifier;
int offset;
} insertionLookup;
-
- InternalClass *classList[Size];
- };
- union {
- int level;
- uint index2;
};
- uint index;
uint nameIndex;
ReturnedValue resolveGetter(ExecutionEngine *engine, const Object *object);
@@ -151,9 +144,6 @@ struct Lookup {
static bool setter0setter0(Lookup *l, ExecutionEngine *engine, Value &object, const Value &value);
static bool setterInsert(Lookup *l, ExecutionEngine *engine, Value &object, const Value &value);
static bool arrayLengthSetter(Lookup *l, ExecutionEngine *engine, Value &object, const Value &value);
-
- ReturnedValue lookup(const Value &thisObject, Object *obj, PropertyAttributes *attrs);
- ReturnedValue lookup(const Object *obj, PropertyAttributes *attrs);
};
Q_STATIC_ASSERT(std::is_standard_layout<Lookup>::value);