aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/multilineString.qml
blob: 758a71f868b818785114962b4c2f1273bd3a68f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQml

QtObject {
    property string multipart: "Foo
multiline`
string" + "another`
part
of it";

    property string quote: "
quote: \" \\\" \\\\\"
ticks: ` \` \\\` \\\`
singleTicks: ' \' \\' \\\'
expression: \${expr} \${expr} \\\${expr} \\\${expr}"

    property string tick: '
quote: " \" \\" \\\"
ticks: \` \` \\\` \\\`
singleTicks: \' \\\' \\\\\'
expression: \${expr} \${expr} \\\${expr} \\\${expr}'
}