We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
java_method_typet
ID_is_native_method
1 parent 3f5847c commit 3fe681cCopy full SHA for 3fe681c
jbmc/src/java_bytecode/java_bytecode_convert_method.cpp
@@ -372,6 +372,8 @@ void java_bytecode_convert_method_lazy(
372
member_type.set(ID_is_synchronized, true);
373
if(m.is_static)
374
member_type.set(ID_is_static, true);
375
+ if(m.is_native)
376
+ member_type.set(ID_is_native_method, true);
377
378
if(m.is_bridge)
379
member_type.set(ID_is_bridge_method, m.is_bridge);
src/util/irep_ids.def
@@ -387,6 +387,7 @@ IREP_ID_ONE(is_enum_constant)
387
IREP_ID_ONE(is_inline)
388
IREP_ID_ONE(is_extern)
389
IREP_ID_ONE(is_synchronized)
390
+IREP_ID_ONE(is_native_method)
391
IREP_ID_ONE(is_global)
392
IREP_ID_ONE(is_thread_local)
393
IREP_ID_ONE(is_parameter)
0 commit comments