aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/multilineString.fixed.qml
blob: e1d15a926ea16397907dd3ee41aaf3ae54c7cc4f (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}`
}