Inspect Reference Summary

Parameters for FORTRAN
Inspect Reference Summary
50 106101 Tandem Computers Incorporated
FORTRAN Data Locations
data-location
:
[
scope-path
[ (
instance
) ] . ]
data-reference
instance
:
[ + | - ]
num
data-reference
: one of
identifier
data-reference
(
index
[ ,
index
]... )
data-reference^identifier
index
:
expression
[ :
expression
]
FORTRAN Expressions
expression
:
condition
[
bool-op
condition
]...
bool-op
: one of
.AND. .OR. .EQV. .NEQV.
condition
:
[ .NOT. ]
simple-exp
[
rel-op
simple-exp
]
rel-op
: one of
.LT. .LE. .GT. .GE. .EQ. .NE.
simple-exp
:
[ + | - ]
term
[ { + | - }
term
]...
term
:
factor
[ { * | / }
factor
]...
factor
:
primary
[ **
primary
]
primary
: one of
data-location
constant
(
expression
)