File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -373,6 +373,7 @@ void java_bytecode_convert_method_lazy(
373
373
if (m.is_static )
374
374
member_type.set (ID_is_static, true );
375
375
member_type.set_native (m.is_native );
376
+ member_type.set_is_varargs (m.is_varargs );
376
377
377
378
if (m.is_bridge )
378
379
member_type.set (ID_is_bridge_method, m.is_bridge );
Original file line number Diff line number Diff line change @@ -298,6 +298,16 @@ class java_method_typet : public code_typet
298
298
{
299
299
set (ID_is_native_method, is_native);
300
300
}
301
+
302
+ bool get_is_varargs () const
303
+ {
304
+ return get_bool (ID_is_varargs_method);
305
+ }
306
+
307
+ void set_is_varargs (bool is_varargs)
308
+ {
309
+ set (ID_is_varargs_method, is_varargs);
310
+ }
301
311
};
302
312
303
313
template <>
Original file line number Diff line number Diff line change @@ -387,6 +387,7 @@ IREP_ID_ONE(is_inline)
387
387
IREP_ID_ONE(is_extern)
388
388
IREP_ID_ONE(is_synchronized)
389
389
IREP_ID_ONE(is_native_method)
390
+ IREP_ID_ONE(is_varargs_method)
390
391
IREP_ID_ONE(is_global)
391
392
IREP_ID_ONE(is_thread_local)
392
393
IREP_ID_ONE(is_parameter)
You can’t perform that action at this time.
0 commit comments