aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4functionobject_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4functionobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4functionobject_p.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/qml/jsruntime/qv4functionobject_p.h b/src/qml/jsruntime/qv4functionobject_p.h
index b7995e948e..86e4354269 100644
--- a/src/qml/jsruntime/qv4functionobject_p.h
+++ b/src/qml/jsruntime/qv4functionobject_p.h
@@ -105,11 +105,6 @@ struct Q_QML_EXPORT FunctionObject: Object {
ExecutionContext *scope;
Function *function;
};
- struct {
- ExecutionContext *scope;
- Function *function;
-
- } __data;
V4_OBJECT(Object)
Q_MANAGED_TYPE(FunctionObject)
enum {
@@ -199,9 +194,6 @@ struct Q_QML_EXPORT BuiltinFunction: FunctionObject {
Data(ExecutionContext *scope, String *name, ReturnedValue (*code)(CallContext *));
ReturnedValue (*code)(CallContext *);
};
- struct {
- ReturnedValue (*code)(CallContext *);
- } __data;
V4_OBJECT(FunctionObject)
static BuiltinFunction *create(ExecutionContext *scope, String *name, ReturnedValue (*code)(CallContext *))
@@ -226,10 +218,6 @@ struct IndexedBuiltinFunction: FunctionObject
ReturnedValue (*code)(CallContext *, uint index);
uint index;
};
- struct {
- ReturnedValue (*code)(CallContext *, uint index);
- uint index;
- } __data;
V4_OBJECT(FunctionObject)
static ReturnedValue construct(Managed *m, CallData *)
@@ -271,11 +259,6 @@ struct BoundFunction: FunctionObject {
Value boundThis;
Members boundArgs;
};
- struct {
- FunctionObject *target;
- Value boundThis;
- Members boundArgs;
- } __data;
V4_OBJECT(FunctionObject)
static BoundFunction *create(ExecutionContext *scope, FunctionObject *target, const ValueRef boundThis, const QV4::Members &boundArgs)