@@ -638,36 +638,36 @@ def get_all_crud_operations(self) -> List[Dict[str, Union[JType, JCallable, List
638638 Returns:
639639 List[Dict[str, Union[JType, JCallable, List[JCRUDOperation]]]]: A list of all CRUD operations in the source code.
640640 """
641- return self .backend .get_all_crud_operations (self . source_code )
641+ return self .backend .get_all_crud_operations ()
642642
643643 def get_all_create_operations (self ) -> List [Dict [str , Union [JType , JCallable , List [JCRUDOperation ]]]]:
644644 """Returns a list of all create operations in the source code.
645645
646646 Returns:
647647 List[Dict[str, Union[JType, JCallable, List[JCRUDOperation]]]]: A list of all create operations in the source code.
648648 """
649- return self .backend .get_all_create_operations (self . source_code )
649+ return self .backend .get_all_create_operations ()
650650
651651 def get_all_read_operations (self ) -> List [Dict [str , Union [JType , JCallable , List [JCRUDOperation ]]]]:
652652 """Returns a list of all read operations in the source code.
653653
654654 Returns:
655655 List[Dict[str, Union[JType, JCallable, List[JCRUDOperation]]]]: A list of all read operations in the source code.
656656 """
657- return self .backend .get_all_read_operations (self . source_code )
657+ return self .backend .get_all_read_operations ()
658658
659659 def get_all_update_operations (self ) -> List [Dict [str , Union [JType , JCallable , List [JCRUDOperation ]]]]:
660660 """Returns a list of all update operations in the source code.
661661
662662 Returns:
663663 List[Dict[str, Union[JType, JCallable, List[JCRUDOperation]]]]: A list of all update operations in the source code.
664664 """
665- return self .backend .get_all_update_operations (self . source_code )
665+ return self .backend .get_all_update_operations ()
666666
667667 def get_all_delete_operations (self ) -> List [Dict [str , Union [JType , JCallable , List [JCRUDOperation ]]]]:
668668 """Returns a list of all delete operations in the source code.
669669
670670 Returns:
671671 List[Dict[str, Union[JType, JCallable, List[JCRUDOperation]]]]: A list of all delete operations in the source code.
672672 """
673- return self .backend .get_all_delete_operations (self . source_code )
673+ return self .backend .get_all_delete_operations ()
0 commit comments