@@ -47,6 +47,7 @@ protected Expr(SourceSection location) {
47
47
* @return The result of the node execution as unit.
48
48
* @throws UnexpectedResultException If the node cannot be evaluated as a unit value.
49
49
*/
50
+ @ SuppressWarnings ("unused" )
50
51
public LKQLUnit executeUnit (VirtualFrame frame ) throws UnexpectedResultException {
51
52
return LKQLTypeSystemGen .expectLKQLUnit (executeGeneric (frame ));
52
53
}
@@ -58,6 +59,7 @@ public LKQLUnit executeUnit(VirtualFrame frame) throws UnexpectedResultException
58
59
* @return The result of the node execution as nullish.
59
60
* @throws UnexpectedResultException If the node cannot be evaluated as a nullish value.
60
61
*/
62
+ @ SuppressWarnings ("unused" )
61
63
public Nullish executeNullish (VirtualFrame frame ) throws UnexpectedResultException {
62
64
return LKQLTypeSystemGen .expectNullish (executeGeneric (frame ));
63
65
}
@@ -69,6 +71,7 @@ public Nullish executeNullish(VirtualFrame frame) throws UnexpectedResultExcepti
69
71
* @return The result of the node execution as a boolean.
70
72
* @throws UnexpectedResultException If the node cannot be evaluated as a boolean.
71
73
*/
74
+ @ SuppressWarnings ("unused" )
72
75
public boolean executeBoolean (VirtualFrame frame ) throws UnexpectedResultException {
73
76
return LKQLTypeSystemGen .expectBoolean (executeGeneric (frame ));
74
77
}
@@ -80,6 +83,7 @@ public boolean executeBoolean(VirtualFrame frame) throws UnexpectedResultExcepti
80
83
* @return The result of the node execution as a long.
81
84
* @throws UnexpectedResultException If the node cannot be evaluated as a long.
82
85
*/
86
+ @ SuppressWarnings ("unused" )
83
87
public long executeLong (VirtualFrame frame ) throws UnexpectedResultException {
84
88
return LKQLTypeSystemGen .expectLong (executeGeneric (frame ));
85
89
}
@@ -91,6 +95,7 @@ public long executeLong(VirtualFrame frame) throws UnexpectedResultException {
91
95
* @return The result of the node execution as a big integer.
92
96
* @throws UnexpectedResultException If the node cannot be evaluated as a big integer.
93
97
*/
98
+ @ SuppressWarnings ("unused" )
94
99
public BigInteger executeBigInteger (VirtualFrame frame ) throws UnexpectedResultException {
95
100
return LKQLTypeSystemGen .expectBigInteger (executeGeneric (frame ));
96
101
}
@@ -102,6 +107,7 @@ public BigInteger executeBigInteger(VirtualFrame frame) throws UnexpectedResultE
102
107
* @return The result of the node execution as a string.
103
108
* @throws UnexpectedResultException If the node cannot be evaluated as a string.
104
109
*/
110
+ @ SuppressWarnings ("unused" )
105
111
public String executeString (VirtualFrame frame ) throws UnexpectedResultException {
106
112
return LKQLTypeSystemGen .expectString (executeGeneric (frame ));
107
113
}
@@ -113,6 +119,7 @@ public String executeString(VirtualFrame frame) throws UnexpectedResultException
113
119
* @return The result of the node execution as a function value.
114
120
* @throws UnexpectedResultException If the node cannot be evaluated as a function.
115
121
*/
122
+ @ SuppressWarnings ("unused" )
116
123
public LKQLFunction executeFunction (VirtualFrame frame ) throws UnexpectedResultException {
117
124
return LKQLTypeSystemGen .expectLKQLFunction (executeGeneric (frame ));
118
125
}
@@ -124,6 +131,7 @@ public LKQLFunction executeFunction(VirtualFrame frame) throws UnexpectedResultE
124
131
* @return The result of the node execution as a property reference value.
125
132
* @throws UnexpectedResultException If the node cannot be evaluated as a property reference.
126
133
*/
134
+ @ SuppressWarnings ("unused" )
127
135
public LKQLProperty executeProperty (VirtualFrame frame ) throws UnexpectedResultException {
128
136
return LKQLTypeSystemGen .expectLKQLProperty (executeGeneric (frame ));
129
137
}
@@ -135,6 +143,7 @@ public LKQLProperty executeProperty(VirtualFrame frame) throws UnexpectedResultE
135
143
* @return The result of the node execution as a selector value.
136
144
* @throws UnexpectedResultException If the node cannot be evaluated as a selector.
137
145
*/
146
+ @ SuppressWarnings ("unused" )
138
147
public LKQLSelector executeSelector (VirtualFrame frame ) throws UnexpectedResultException {
139
148
return LKQLTypeSystemGen .expectLKQLSelector (executeGeneric (frame ));
140
149
}
@@ -146,6 +155,7 @@ public LKQLSelector executeSelector(VirtualFrame frame) throws UnexpectedResultE
146
155
* @return The result of the node execution as a tuple value.
147
156
* @throws UnexpectedResultException If the node cannot be evaluated as a tuple.
148
157
*/
158
+ @ SuppressWarnings ("unused" )
149
159
public LKQLTuple executeTuple (VirtualFrame frame ) throws UnexpectedResultException {
150
160
return LKQLTypeSystemGen .expectLKQLTuple (executeGeneric (frame ));
151
161
}
@@ -157,6 +167,7 @@ public LKQLTuple executeTuple(VirtualFrame frame) throws UnexpectedResultExcepti
157
167
* @return The result of the node execution as a list value.
158
168
* @throws UnexpectedResultException If the node cannot be evaluated as a list.
159
169
*/
170
+ @ SuppressWarnings ("unused" )
160
171
public LKQLList executeList (VirtualFrame frame ) throws UnexpectedResultException {
161
172
return LKQLTypeSystemGen .expectLKQLList (executeGeneric (frame ));
162
173
}
@@ -168,6 +179,7 @@ public LKQLList executeList(VirtualFrame frame) throws UnexpectedResultException
168
179
* @return The result of the node execution as a lazy list value.
169
180
* @throws UnexpectedResultException If the node cannot be evaluated as a lazy list.
170
181
*/
182
+ @ SuppressWarnings ("unused" )
171
183
public LKQLLazyList executeLazyList (VirtualFrame frame ) throws UnexpectedResultException {
172
184
return LKQLTypeSystemGen .expectLKQLLazyList (executeGeneric (frame ));
173
185
}
@@ -179,6 +191,7 @@ public LKQLLazyList executeLazyList(VirtualFrame frame) throws UnexpectedResultE
179
191
* @return The result of the node execution as an indexable value.
180
192
* @throws UnexpectedResultException If the node cannot be evaluated as an indexable.
181
193
*/
194
+ @ SuppressWarnings ("unused" )
182
195
public Indexable executeIndexable (VirtualFrame frame ) throws UnexpectedResultException {
183
196
return LKQLTypeSystemGen .expectIndexable (executeGeneric (frame ));
184
197
}
@@ -190,6 +203,7 @@ public Indexable executeIndexable(VirtualFrame frame) throws UnexpectedResultExc
190
203
* @return The result of the node execution as an iterable value.
191
204
* @throws UnexpectedResultException If the node cannot be evaluated as an iterable.
192
205
*/
206
+ @ SuppressWarnings ("unused" )
193
207
public Iterable executeIterable (VirtualFrame frame ) throws UnexpectedResultException {
194
208
return LKQLTypeSystemGen .expectIterable (executeGeneric (frame ));
195
209
}
@@ -201,6 +215,7 @@ public Iterable executeIterable(VirtualFrame frame) throws UnexpectedResultExcep
201
215
* @return The result of the node execution as an object value.
202
216
* @throws UnexpectedResultException If the node cannot be evaluated as an object.
203
217
*/
218
+ @ SuppressWarnings ("unused" )
204
219
public LKQLObject executeObject (VirtualFrame frame ) throws UnexpectedResultException {
205
220
return LKQLTypeSystemGen .expectLKQLObject (executeGeneric (frame ));
206
221
}
@@ -212,6 +227,7 @@ public LKQLObject executeObject(VirtualFrame frame) throws UnexpectedResultExcep
212
227
* @return The result of the node execution as a namespace value.
213
228
* @throws UnexpectedResultException If the node cannot be evaluated as a namespace.
214
229
*/
230
+ @ SuppressWarnings ("unused" )
215
231
public LKQLNamespace executeNamespace (VirtualFrame frame ) throws UnexpectedResultException {
216
232
return LKQLTypeSystemGen .expectLKQLNamespace (executeGeneric (frame ));
217
233
}
@@ -223,6 +239,7 @@ public LKQLNamespace executeNamespace(VirtualFrame frame) throws UnexpectedResul
223
239
* @return The result of the node execution as a lkql value.
224
240
* @throws UnexpectedResultException If the node cannot be evaluated as a lkql value.
225
241
*/
242
+ @ SuppressWarnings ("unused" )
226
243
public LKQLValue executeValue (VirtualFrame frame ) throws UnexpectedResultException {
227
244
return LKQLTypeSystemGen .expectLKQLValue (executeGeneric (frame ));
228
245
}
@@ -234,6 +251,7 @@ public LKQLValue executeValue(VirtualFrame frame) throws UnexpectedResultExcepti
234
251
* @return The result of the node execution as an ada node.
235
252
* @throws UnexpectedResultException If the node cannot be evaluated as an ada node.
236
253
*/
254
+ @ SuppressWarnings ("unused" )
237
255
public Libadalang .AdaNode executeNode (VirtualFrame frame ) throws UnexpectedResultException {
238
256
return LKQLTypeSystemGen .expectAdaNode (executeGeneric (frame ));
239
257
}
0 commit comments