aboutsummaryrefslogtreecommitdiffstats
path: root/qmljs_objects.h
diff options
context:
space:
mode:
Diffstat (limited to 'qmljs_objects.h')
-rw-r--r--qmljs_objects.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/qmljs_objects.h b/qmljs_objects.h
index 6d0e0fa35d..a2b956f567 100644
--- a/qmljs_objects.h
+++ b/qmljs_objects.h
@@ -532,6 +532,20 @@ struct EvalFunction : FunctionObject
virtual Value call(ExecutionContext *context, Value thisObject, Value *args, int argc, bool strictMode = false);
};
+struct IsNaNFunction: FunctionObject
+{
+ IsNaNFunction(ExecutionContext *scope): FunctionObject(scope) {}
+
+ virtual Value call(ExecutionContext *context, Value thisObject, Value *args, int argc, bool strictMode = false);
+};
+
+struct IsFiniteFunction: FunctionObject
+{
+ IsFiniteFunction(ExecutionContext *scope): FunctionObject(scope) {}
+
+ virtual Value call(ExecutionContext *context, Value thisObject, Value *args, int argc, bool strictMode = false);
+};
+
struct RegExpObject: Object {
QRegularExpression value;
Value lastIndex;