Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added regex for TYPE OBJECT #82

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

lwasylow
Copy link

This is to allow to add a comments into a types bodies as per packages e.g.

   /********************************************************************************
   *  Member function that prints to file all report instances and return filenames
   *
   *  @example
   *  t_reports.print_to_file(print_to_file);
   *
   *  @param p_filename t_varchar2_tab type OUT which contain list of filenames generated
   *
   *  @author Lukasz Wasylow
   *  @created 19/03/2019
   *
   **********************************************************************************/
   MEMBER PROCEDURE print_to_file(p_filename OUT t_varchar2_tab) IS
      v_filename t_varchar2_tab := t_varchar2_tab();
   BEGIN
      FOR instance IN 1 .. self.reporter_instances.COUNT LOOP
         v_filename.EXTEND;
         v_filename(v_filename.LAST) := print_to_file(self.reporter_instances(instance));
      END LOOP;
      p_filename := v_filename;
   END;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant