Skip to content

Commit

Permalink
frontend: Fix typo bug in node type checking
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <arthur.chan@adalogics.com>
  • Loading branch information
arthurscchan committed Feb 3, 2025
1 parent 24a4da0 commit e903908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fuzz_introspector/frontends/frontend_jvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def _process_callsites(
type, invoke_callsites = self._process_callsites(right, classes)
self.var_map[var_name] = type
callsites.extend(invoke_callsites)
elif stmt.type.endswith('local_variable_declarattion'):
elif stmt.type.endswith('local_variable_declaration'):
for vars in stmt.children:
if vars.type == 'variable_declarator':
var_name = vars.child_by_field_name('name').text.decode()
Expand Down

0 comments on commit e903908

Please sign in to comment.