Reference Guide  2.5.0
psyclone.parse.algorithm.FileInfo Class Reference

Public Member Functions

def __init__ (self, name, calls)
 
def name (self)
 
def calls (self)
 

Detailed Description

Captures information about the algorithm file and the invoke calls
found within the contents of the file.

:param str name: the name of the algorithm program unit (program, \
module, subroutine or function)
:param calls: information about the invoke calls in the algorithm code.
:type calls: list of :py:class:`psyclone.parse.algorithm.InvokeCall`

Definition at line 860 of file algorithm.py.

Member Function Documentation

◆ calls()

def psyclone.parse.algorithm.FileInfo.calls (   self)
:returns: information about invoke calls
:rtype: list of :py:class:`psyclone.parse.algorithm.InvokeCall`

Definition at line 885 of file algorithm.py.

885  def calls(self):
886  '''
887  :returns: information about invoke calls
888  :rtype: list of :py:class:`psyclone.parse.algorithm.InvokeCall`
889 
890  '''
891  return self._calls
892 
893 

References psyclone.domain.lfric.lfric_collection.LFRicCollection._calls, and psyclone.parse.algorithm.FileInfo._calls.

◆ name()


The documentation for this class was generated from the following file: