aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/escapeChars.formatted.qml
blob: 3f6807834f3838cd83c1af581cf0585f3802105a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick

Item {
    x: {
        const s = "\"";
        let a = {
            "\"": "\\"
        };

        let patron = {
            "\\\"\n\n": "\?\?\\\"",
            "": "",
            "\'\"\n": 1
        };
    }
}