aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/threeFunctions.formattedW2.js
blob: afcf8acf0214ea2cd200130eb508d341471c52da (plain)
1
2
3
4
5
6
7
8
9
function one() {
  var a = 1;
}
function two(a, b) {
  console.log(a, b);
}
function three(c) {
  var a = c;
}