summaryrefslogtreecommitdiffstats
path: root/src/v4/qv4functionobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4/qv4functionobject.h')
-rw-r--r--src/v4/qv4functionobject.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/v4/qv4functionobject.h b/src/v4/qv4functionobject.h
index e3533d67..c20eb69e 100644
--- a/src/v4/qv4functionobject.h
+++ b/src/v4/qv4functionobject.h
@@ -261,18 +261,6 @@ protected:
static const ManagedVTable static_vtbl;
};
-struct BuiltinFunction: FunctionObject {
- Value (*code)(ExecutionContext *parentContext, Value thisObject, Value *args, int argc);
-
- BuiltinFunction(ExecutionContext *scope, String *name, Value (*code)(ExecutionContext *, Value, Value *, int));
-
- static Value construct(Managed *, ExecutionContext *context, Value *args, int argc);
- static Value call(Managed *that, ExecutionContext *, const Value &, Value *, int);
-
-protected:
- static const ManagedVTable static_vtbl;
-};
-
struct ScriptFunction: FunctionObject {
ScriptFunction(ExecutionContext *scope, VM::Function *function);