fparser Reference Guide  0.0.14
fparser.two.Fortran2003.Binding_PASS_Arg_Name Class Reference
Inheritance diagram for fparser.two.Fortran2003.Binding_PASS_Arg_Name:
Collaboration diagram for fparser.two.Fortran2003.Binding_PASS_Arg_Name:

Static Public Member Functions

def match (string)
 

Static Public Attributes

 subclass_names
 
 use_names
 

Detailed Description

:F03R:`453_help`::

Fortran 2003 helper rule (for R453)
that specifies syntax of passed-object dummy argument for a
specific type-bound procedure.

<binding-PASS-arg-name> = PASS ( <arg-name> )

Definition at line 2365 of file Fortran2003.py.

Member Function Documentation

◆ match()

def fparser.two.Fortran2003.Binding_PASS_Arg_Name.match (   string)
static
:param str string: Fortran code to check for a match
:return: keyword  "PASS" with the name of a passed-object
 dummy argument or nothing if no match is found
:rtype: str

Definition at line 2380 of file Fortran2003.py.

2380  def match(string):
2381  """
2382  :param str string: Fortran code to check for a match
2383  :return: keyword "PASS" with the name of a passed-object
2384  dummy argument or nothing if no match is found
2385  :rtype: str
2386  """
2387  return CALLBase.match("PASS", Arg_Name, string)
2388 
2389 
Here is the caller graph for this function:

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