From 91ac4a8d099d10fdfd5aa631da02727b7917d85f Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Mon, 5 Dec 2016 13:28:26 +0100 Subject: Don't store a source location in the QQmlBindingFunction anymore It's not needed anymore as we now store this in the binding directly. Change-Id: I518c83207f219b690f31200e4d17251075bbd322 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4functionobject.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/qml/jsruntime/qv4functionobject.cpp') diff --git a/src/qml/jsruntime/qv4functionobject.cpp b/src/qml/jsruntime/qv4functionobject.cpp index 0f2a0ebf86..5bbe2d5f9a 100644 --- a/src/qml/jsruntime/qv4functionobject.cpp +++ b/src/qml/jsruntime/qv4functionobject.cpp @@ -212,11 +212,6 @@ bool FunctionObject::isBoundFunction() const QQmlSourceLocation FunctionObject::sourceLocation() const { - if (isBinding()) { - Q_ASSERT(as()); - return *static_cast(d())->bindingLocation; - } - return d()->function->sourceLocation(); } -- cgit v1.2.3