aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/mini_esm.formattedTabs.mjs
blob: 37f8ccb6982c72b1859599197ee996f18c086ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Imports
import defaultExport from "module-name";
import "module-name";
export class ClassName {
	constructor(h){
		this.h = h;
	}
}
export const {
	n1,
	n3,
	n4,
	name2: bar
} = o;
export const [name1, name2] = array;
function stuff() {
	var l = () => {
		1 + 1;
	};
}