aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/smali/parameter.smali
blob: 2e54da2f94dd80e722b471fab12a41cff99ac8d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.class public Lbaksmali/test/class;
.super Ljava/lang/Object;

.source "baksmali_test_class.smali"

.method public debugTest(IIIII)V
	.registers 10

	.parameter "Blah"
	.parameter
	.parameter "BlahWithAnnotations"
		.annotation runtime Lsome/annotation;
			something = "some value"
			somethingelse = 1234
		.end annotation
		.annotation runtime La/second/annotation;
		.end annotation
	.end parameter
	.parameter
		.annotation runtime Lsome/annotation;
			something = "some value"
			somethingelse = 1234
		.end annotation
	.end parameter
	.parameter "LastParam"

	.prologue

	nop
	nop

	.source "somefile.java"
	.line 101

	nop


	.line 50

	.local v0, aNumber:I
	const v0, 1234
	.end local v0

	.source "someotherfile.java"
	.line 900

	const-string v0, "1234"

	.restart local v0
	const v0, 6789
	.end local v0

	.epilogue

.end method