diff options
author | Lars Knoll <[email protected]> | 2013-09-09 10:46:06 +0200 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-09-11 13:02:15 +0200 |
commit | ed4c36b0b86c3d452a96ceb8bb6b41d709543a45 (patch) | |
tree | 17a9ce52aca37ed743806100ab4bee27d30cd094 /src/qml/jsruntime/qv4context.cpp | |
parent | a808e4fc15dfe2aca08786f4b747dde45e455929 (diff) |
Start adapting function signatures in the qv4runtime
Move the signatures over to something that will enforce
the exact GC later on.
Change-Id: I2e1a472aea296cc1862c76c1e6dab5d0d2f5177c
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4context.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4context.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/qml/jsruntime/qv4context.cpp b/src/qml/jsruntime/qv4context.cpp index dc10033307..563b6b2709 100644 --- a/src/qml/jsruntime/qv4context.cpp +++ b/src/qml/jsruntime/qv4context.cpp @@ -594,15 +594,6 @@ Value ExecutionContext::getPropertyAndBase(String *name, Object **base) } - -void ExecutionContext::inplaceBitOp(String *name, const Value &value, BinOp op) -{ - Value lhs = getProperty(name); - Value result; - op(&result, lhs, value); - setProperty(name, result); -} - void ExecutionContext::throwError(const Value &value) { __qmljs_throw(this, value); |