aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/v8functionException.qml
blob: 51df1c65d883a7bba7b487f550f966640062288c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

// This test uses a multi-line string which has \r-terminated
// string fragments.  The expression rewriter deliberately doesn't
// handle \r-terminated string fragments (see QTBUG-24064) and thus
// this test ensures that we don't crash when the client attempts
// to invoke a non-compiled dynamic slot.

Item {
    id: root

    function dynamicSlot() {
        var someString = "Hello,
        this is a
        multiline string";
    }
}