Skip to content

Commit 4f513bd

Browse files
authored
Update java.py to add the parameter
1 parent 35e3a22 commit 4f513bd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

cldk/analysis/java/java.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ def get_callers(self, target_class_name: str, target_method_declaration: str,
171171
raise NotImplementedError("Generating all callers over a single file is not implemented yet.")
172172
return self.backend.get_all_callers(target_class_name, target_method_declaration, using_symbol_table)
173173

174-
def get_callees(self, source_class_name: str, source_method_declaration: str):
174+
def get_callees(self, source_class_name: str, source_method_declaration: str,
175+
using_symbol_table: bool = False):
175176
"""
176177
Get all the callee details for a given java method.
177178
@@ -182,7 +183,7 @@ def get_callees(self, source_class_name: str, source_method_declaration: str):
182183
"""
183184
if self.source_code:
184185
raise NotImplementedError("Generating all callees over a single file is not implemented yet.")
185-
return self.backend.get_all_callees(source_class_name, source_method_declaration)
186+
return self.backend.get_all_callees(source_class_name, source_method_declaration, using_symbol_table)
186187

187188
def get_methods(self) -> Dict[str, Dict[str, JCallable]]:
188189
"""

0 commit comments

Comments
 (0)