aboutsummaryrefslogtreecommitdiffstats
path: root/src/v4/qv4globalobject.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-04-05 16:23:22 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-04-05 20:39:09 +0200
commit3b73dd08e0cb705dc57f6cce8b528c36aad40bcc (patch)
tree6a8feac3b99b719d91f95d2660ba5bdd6168c6a4 /src/v4/qv4globalobject.h
parent8da2e2af2634fbba0920a6296ad470c491ae00f7 (diff)
Move arguments out of ExecutionContext and into CallContext
Change-Id: Ic826e3e71eac9171fa113dec79db7c69982f2386 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/v4/qv4globalobject.h')
-rw-r--r--src/v4/qv4globalobject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/v4/qv4globalobject.h b/src/v4/qv4globalobject.h
index 8d9341f066..d67f6d63cc 100644
--- a/src/v4/qv4globalobject.h
+++ b/src/v4/qv4globalobject.h
@@ -73,16 +73,16 @@ protected:
struct GlobalFunctions
{
- static Value method_parseInt(ExecutionContext *context);
- static Value method_parseFloat(ExecutionContext *context);
- static Value method_isNaN(ExecutionContext *context);
- static Value method_isFinite(ExecutionContext *context);
+ static Value method_parseInt(CallContext *context);
+ static Value method_parseFloat(CallContext *context);
+ static Value method_isNaN(CallContext *context);
+ static Value method_isFinite(CallContext *context);
static Value method_decodeURI(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
static Value method_decodeURIComponent(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
static Value method_encodeURI(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
static Value method_encodeURIComponent(ExecutionContext *parentCtx, Value thisObject, Value *argv, int argc);
- static Value method_escape(ExecutionContext *context);
- static Value method_unescape(ExecutionContext *context);
+ static Value method_escape(CallContext *context);
+ static Value method_unescape(CallContext *context);
};
} // namespace VM