aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4codegen_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/compiler/qv4codegen_p.h')
-rw-r--r--src/qml/compiler/qv4codegen_p.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/qml/compiler/qv4codegen_p.h b/src/qml/compiler/qv4codegen_p.h
index 652f395a88..b0d1962bca 100644
--- a/src/qml/compiler/qv4codegen_p.h
+++ b/src/qml/compiler/qv4codegen_p.h
@@ -238,12 +238,11 @@ protected:
ScopeAndFinally *parent;
AST::Finally *finally;
- V4IR::ExprList *finishTryArgs;
ScopeType type;
- ScopeAndFinally(ScopeAndFinally *parent, ScopeType t = WithScope) : parent(parent), finally(0), finishTryArgs(0), type(t) {}
- ScopeAndFinally(ScopeAndFinally *parent, AST::Finally *finally, V4IR::ExprList *finishTryArgs)
- : parent(parent), finally(finally), finishTryArgs(finishTryArgs), type(TryScope)
+ ScopeAndFinally(ScopeAndFinally *parent, ScopeType t = WithScope) : parent(parent), finally(0), type(t) {}
+ ScopeAndFinally(ScopeAndFinally *parent, AST::Finally *finally)
+ : parent(parent), finally(finally), type(TryScope)
{}
};