aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/threeFunctions.formattedTabs.js
blob: 6575a9fbd8318fce1d7f78fdf6e2148cdcb12ede (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;
}