Inspect Reference Summary

Parameters for Pascal
Inspect Reference Summary
52 106101 Tandem Computers Incorporated
Pascal Data Locations
data-location
:
[
scope-path
[ (
instance
) ] . ]
data-reference
[ #
data-block
. ]
instance
:
[ + | - ]
integer
data-reference
: one of
identifier
data-reference
'['
index
[ ,
index
]... ']'
data-reference.identifier
data-reference^
index
:
expression
[ :
expression
]
Pascal Expressions
expression
:
simple-exp
[
rel-op
simple-exp
]...
rel-op
: one of
= <> < > <= >=
simple-exp
:
[ + | - ]
term
[
add-op
term
]...
add-op
: one of
+ - OR
term
:
factor
[
mult-op
factor
]...
mult-op
: one of
* / DIV MOD AND << >>
factor
: one of
data-location
unsigned-constant
NOT
factor
(
expression
)