aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/GetterLazyArguments.java
blob: 47dfae55f8a371e1b5989c0e7596c4c11a0f2982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// version 8:
class GetterLazyArguments {
	static String fun() { return null; }
	static String stringInt(String arg1, Integer arg2) { return null; }
	static String stringRunnable(String arg1, Runnable arg2) { return null; }
	
	@lombok.Getter(lazy=true)
	private final String field1 = stringInt(("a"), (1));
	
	@lombok.Getter(lazy=true)
	private final String field2 = stringInt(true ? "a" : "b", true ? 1 : 0);
	
	@lombok.Getter(lazy=true)
	private final String field3 = stringInt(("a"), true ? 1 : 0);
	
	@lombok.Getter(lazy=true)
	private final String field4 = stringRunnable(fun(), () -> { });
	
	@lombok.Getter(lazy=true)
	private final String field5 = stringRunnable(("a"), () -> { });
}