@@ -40,16 +40,12 @@ class BuiltInVarArgsStart extends BuiltInOperation, @vastartexpr {
40
40
/**
41
41
* Gets the `va_list` argument.
42
42
*/
43
- final Expr getVAList ( ) {
44
- result = getChild ( 0 )
45
- }
43
+ final Expr getVAList ( ) { result = getChild ( 0 ) }
46
44
47
45
/**
48
46
* Gets the argument that specifies the last named parameter before the ellipsis.
49
47
*/
50
- final VariableAccess getLastNamedParameter ( ) {
51
- result = getChild ( 1 )
52
- }
48
+ final VariableAccess getLastNamedParameter ( ) { result = getChild ( 1 ) }
53
49
}
54
50
55
51
/**
@@ -69,9 +65,7 @@ class BuiltInVarArgsEnd extends BuiltInOperation, @vaendexpr {
69
65
/**
70
66
* Gets the `va_list` argument.
71
67
*/
72
- final Expr getVAList ( ) {
73
- result = getChild ( 0 )
74
- }
68
+ final Expr getVAList ( ) { result = getChild ( 0 ) }
75
69
}
76
70
77
71
/**
@@ -89,9 +83,7 @@ class BuiltInVarArg extends BuiltInOperation, @vaargexpr {
89
83
/**
90
84
* Gets the `va_list` argument.
91
85
*/
92
- final Expr getVAList ( ) {
93
- result = getChild ( 0 )
94
- }
86
+ final Expr getVAList ( ) { result = getChild ( 0 ) }
95
87
}
96
88
97
89
/**
@@ -111,16 +103,12 @@ class BuiltInVarArgCopy extends BuiltInOperation, @vacopyexpr {
111
103
/**
112
104
* Gets the destination `va_list` argument.
113
105
*/
114
- final Expr getDestinationVAList ( ) {
115
- result = getChild ( 0 )
116
- }
106
+ final Expr getDestinationVAList ( ) { result = getChild ( 0 ) }
117
107
118
108
/**
119
109
* Gets the the source `va_list` argument.
120
110
*/
121
- final Expr getSourceVAList ( ) {
122
- result = getChild ( 1 )
123
- }
111
+ final Expr getSourceVAList ( ) { result = getChild ( 1 ) }
124
112
}
125
113
126
114
/**
0 commit comments