lizard
lizard copied to clipboard
Some structures in static blocks are identified as function in Java
See below the failed test:
def test_structure_in_static_block(self):
result = get_java_function_list("""
static { if(){}; catch(){} }
""")
self.assertEqual(0, len(result))
################
AssertionError: 0 != 2