qt6-bb10/qtdeclarative/tests/auto/qml/qmlformat/data/lambdaWithIfElseInsideLambd...

10 lines
173 B
JavaScript

var l = function () {
var nl = function () {
if (true) {
console.log("true");
} else {
console.log("false");
}
};
};