aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-04-10 12:47:53 +0200
committerLars Knoll <lars.knoll@qt.io>2018-04-12 13:59:21 +0000
commitce2f9621e01c8f0afbbdcda7ae226c8bc276d024 (patch)
tree367dbac4cd43c065b32e4b2b2d8be738b444cd79 /src/qml/jsruntime/qv4engine.cpp
parent6c8c604f11e7a6d5880e4f951255d496fe905797 (diff)
Get rid of some outdated code
There's no point in trying to treat syntax errors specially here. Change-Id: Idde8f9c9669f183e1b8f5b17bb7e4299fc5f1e5f Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index 7964a97cc4..dc9a37b406 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -1071,12 +1071,7 @@ QQmlError ExecutionEngine::catchExceptionAsQmlError()
error.setColumn(frame.column);
}
QV4::Scoped<QV4::ErrorObject> errorObj(scope, exception);
- if (!!errorObj && errorObj->asSyntaxError()) {
- QV4::ScopedString m(scope, newString(QStringLiteral("message")));
- QV4::ScopedValue v(scope, errorObj->get(m));
- error.setDescription(v->toQStringNoThrow());
- } else
- error.setDescription(exception->toQStringNoThrow());
+ error.setDescription(exception->toQStringNoThrow());
return error;
}