Home Random Page


CATEGORIES:

BiologyChemistryConstructionCultureEcologyEconomyElectronicsFinanceGeographyHistoryInformaticsLawMathematicsMechanicsMedicineOtherPedagogyPhilosophyPhysicsPolicyPsychologySociologySportTourism






The procedure writeln

The syntax of the parametrer list of writeln shall be

writeln-parameter-list = [ '(' ( file-variable ½ write-parameter ) { ',' write-parameter } ')' ] .

Writeln shall only be applied to textfiles. If the file-variable or the writeln-parameter-list is omitted, the procedure shall be applied to the required textfile output, and the program shall contain a program-parameter-list containing an identifier with the spelling output.

Writeln(f,p1,...,pn) shall access the textfile and establish a reference to that textfile for the remaining execution of the statement. The execution of the statement shall be equivalent to

begin write(ff,p1,...,pn); writeln(ff) end

where ff denotes the referenced textfile.

Writeln shall be defined by a pre-assertion and a post-assertion using the notation of 6.6.5.2.

pre-assertion: (f0 is not undefined) and (f0.M = Generation) and (f0.R = S( )).

post-assertion: (f.L = (f0.L ~ S(end-of-line))) and (f­ is totally-undefined) and (f.R = S( ))

and (f.M = Generation),

where S(e) is the sequence consisting solely of the end-of-line component defined in 6.4.3.5.

 

NOTE --- Writeln(f) terminates the partial line, if any, that is being generated. By the conventions of 6.6.5.2 it is an error if the pre-assertion is not true prior to writeln(f).

 

The procedure page

It shall be an error if the pre-assertion required for writeln(f) (see 6.9.4) does not hold prior to the activation of page(f). If the actual-parameter-list is omitted, the procedure shall be applied to the required textfile output, and the program shall contain a program-parameter-list containing an identifier with the spelling output. Page(f) shall cause an implementation-defined effect on the textfile f, such that subsequent text written to f will be on a new page if the textfile is printed on a suitable device, shall perform an implicit writeln(f) if f.L is not empty and if f.L.last is not the end-of-line component (see 6.4.3.5), and shall cause the buffer-variable f­ to become totally-undefined. The effect of inspecting a textfile to which the page procedure was applied during generation shall be implementation-dependent.

 

Programs

 

program = program-heading ';' program-block '.' .

program-heading = 'program' identifier [ '(' program-parameter-list ')' ] .

program-parameter-list = identifier-list .

program-block = block .

The identifier of the program-heading shall be the program name. It shall have no significance within the program. The identifiers contained by the program-parameter-list shall be distinct and shall be designated program-parameters. Each program-parameter shall have a defining-point as a variable-identifier for the region that is the program-block. The binding of the variables denoted by the program-parameters to entities external to the program shall be implementation-dependent, except if the variable possesses a file-type in which case the binding shall be implementation-defined.



 

NOTE --- The external representation of such external entities is not defined by this International Standard.

 

The execution of any action, operation, or function, defined within clause 6 to operate on a variable, shall be an error if the variable is a program-parameter and, as a result of the binding of the program-parameter, the execution cannot be completed as defined.

The occurrence of the required identifier input or output as a program-parameter shall constitute its defining-point for the region that is the program-block as a variable-identifier of the required type denoted by the required type-identifier text. Such occurrence of the identifier input shall cause the post-assertions of reset to hold, and of output, the post-assertions of rewrite to hold, prior to the first access to the textfile or its associated buffer-variable. The effect of the application of the required procedure reset or the required procedure rewrite to either of these textfiles shall be implementation-defined.

 

Examples:

program copy (f, g);

var f, g : file of real;

begin reset(f); rewrite(g);

while not eof(f) do

begin g­ := f­; get(f); put(g) end

end.

 

program copytext (input, output);

{This program copies the characters and line structure of the textfile input to the textfile output}

var ch : char;

begin

while not eof do

begin

while not eoln do begin read(ch); write(ch) end;

readln; writeln

end

end.

 

program t6p6p3p4 (output);

var globalone, globaltwo : integer;

procedure dummy;

begin writeln('fail4') end { of dummy };

procedure p (procedure f(procedure ff; procedure gg); procedure g);

var localtop : integer;

procedure r;

begin { r }

if globalone = 1

then begin if (globaltwo <> 2) or (localtop <> 1) then writeln('fail1') end else

if globalone = 2 then

begin

if (globaltwo <> 2) or (localtop <> 2) then writeln('fail2') else writeln('pass')

end

else

writeln('fail3');

globalone := globalone + 1

end { of r };

begin { of p }

globaltwo := globaltwo + 1;

localtop := globaltwo;

if globaltwo = 1 then p(f, r) else f(g, r)

end { of p};

procedure q (procedure f; procedure g);

begin

f;

g

end {of q};

begin { of t6p6p3p4 }

globalone := 1;

globaltwo := 0;

p(q, dummy)

end. { of t6p6p3p4 }

 


 

ISO/IEC 7185:1990(E)

Annex A

(Informative)

 

Collected syntax

The nonterminal symbols pointer-type, program, signed-number, simple-type, special-symbol, and structured-type are only referenced by the semantics and are not used in the right-hand-side of any production. The nonterminal symbol program is the start symbol of the grammar.

 

6.7.3 actual-parameter = expression ½ variable-access ½ procedure-identifier ½ function-identifier .

6.7.3 actual-parameter-list = '(' actual-parameter { ',' actual-parameter } ')' .

6.7.2.1 adding-operator = '+' ½ ' ½ 'or' .

6.1.7apostrophe-immage = '''' .

6.4.3.2array-type = 'array' '[' index=type { ',' index-type } ']' 'of' component-type .

6.5.3.2array-variable = variable-access .

6.8.2.2 assignment-statement = ( variable-access ½ function-identifier ) ':=' expression .

6.4.3.4 base-type = ordinal-type .

6.2.1 block = label-declaration-part constant-definition-part type-definition-part

variable-declaration-part procedure-and-function-declaration-part

statement-part .

6.7.2.3 Boolean-expression = expression .

6.6.3.7.1 bound-identifier = identifier .

6.5.5 buffer-variable = file-variable '­' .

6.4.3.3 case-constant = constant .

6.4.3.3 case-constant-list = case-constant { ',' case-constant } .

6.8.3.5 case-index = expression .

6.8.3.5 case-list-element = case-constant-list ':' statement .

6.8.3.5 case-statement = 'case' case-index 'of' case-list-element { ';' case-list-element } [ ';' ] 'end' .

6.1.7 character-string = ''' string-element { string-element } ''' .

6.4.3.2 component-type = type-denoter .

6.5.3.1 component-variable = indexed-variable ½ field-designator .

6.8.3.2 compound-statement = 'begin' statement-sequence 'end' .

6.8.3.3 conditional-statement = if-statement ½ case-statement .

6.6.3.7.1 conformant-array-parameter-specification = value-conformant-array-specification

½ variable-conformant-array-specification .

6.6.3.7.1 conformant-array-schema = packed-conformant-array-schema

½ unpacked-conformant-array-schema .

6.3 constant = [ sign ] ( unsigned-number ½ constant-identifier ) ½ character-string .

6.3 constant-definition = identifier '=' constant .

6.2.1 constant-definition-part = [ 'const' constant-definition ';' { constant-definition ';' } ] .

6.3 constant-identifier = identifier .

6.8.3.9 control-variable = entire-variable .

6.1.1 digit = '0' ½ '1' ½ '2' ½ '3' ½ '4' ½ '5' ½ '6' ½ '7' ½ '8' ½ '9' .

6.1.5 digit-sequence = digit { digit } .

6.1.4 directive = letter { letter ½ digit } .

6.4.4 domain-type = type-identifier .

6.8.3.4 else-part = 'else' statement .

6.8.2.1 empty-statement = .

6.5.2 entire-variable = variable-identifier .

6.4.2.3 enumerated-type = '(' identifier-list ')' .

6.7.1 expression = simple-expression [ relational-operator simple-expression ] .

6.6.3.7.1 factor > bound-identifier .

6.7.1 factor > variable-access ½ unsigned-constant ½ function-designator ½ set-constructor

½ '(' expression ')' ½ 'not' factor .

6.5.3.3 field-designator = record-variable '.' field-specifier ½ field-designator-identifier .

6.8.3.10 field-designator-identifier = identifier .

6.5.3.3 field-identifier = identifier .

6.4.3.3 field-list = [ ( fixed-part [ ';' variant-part ] ½ variant-part ) [ ';' ] ] .

6.5.3.3 field-specifier = field-identifier .

6.4.3.5 file-type = 'file' 'of' component-type .

6.5.5 file-variable = variable-access .

6.8.3.9 final-value = expression .

6.4.3.3 fixed-part = record-section { ';' record-section } .

6.8.3.9 for-statement = 'for' control-variable ':=' initial-value ( 'to' ½ 'downto' ) final-value 'do' statement .

6.6.3.1 formal-parameter-list = '(' formal-parameter-section { ';' formal-parameter-section } ')' .

6.6.3.1 formal-parameter-section > value-parameter-specification ½ variable-parameter-specification

½ procedural-parameter-specification ½ functional-parameter-specification .

6.6.3.7.1 formal-parameter-section > conformant-array-parameter-specification .

6.1.5 fractional-part = digit-sequence .

6.6.2 function-block = block .

6.6.2 function-declaration = function-heading ';' directive

½ function-identification ';' function-block

½ function-heading ';' function-block .

6.7.3 function-designator = function-identifier [ actual-parameter-list ] .

6.6.2 function-heading = 'function' identifier [ formal-parameter-list ] ':' result-type .

6.6.2 function-identification = 'function' function-identifier .

6.6.2 function-identifier = identifier .

6.6.3.1 functional-parameter-specification = function-heading .

6.8.2.4 goto-statement = 'goto' label .

6.5.4 identified-variable = pointer-variable '­' .

6.1.3 identifier = letter { letter ½ digit } .

6.4.2.3 identifier-list = identifier { ',' identifier } .

6.8.3.4 if-statement = 'if' Boolean-expression 'then' statement [ else-part ] .

6.5.3.2 index-expression = expression .

6.4.3.2 index-type = ordinal-type .

6.6.3.7.1 index-type-specification = identifier '..' identifier ':' ordinal-type-identifier .

6.5.3.2 indexed-variable = array-variable '[' index-expression { ',' index-expression } ']' .

6.8.3.9 initial-value = expression .

6.1.6 label = digit-sequence .

6.2.1 label-declaration-part = [ 'label' label { ',' label } ';' ] .

6.1.1 letter = 'a' ½ 'b' ½ 'c' ½ 'd' ½ 'e' ½ 'f' ½ 'g' ½ 'h' ½ 'i' ½ 'j' ½ 'k' ½ 'l' ½ 'm' ½ 'n' ½ 'o'

½ 'p' ½ 'q' ½ 'r' ½ 's' ½ 't' ½ 'u' ½ 'v' ½ 'w' ½ 'x' ½ 'y' ½ 'z' .

6.7.1 member-designator = expression [ '..' expression ] .

6.7.2.1 multiplying-operator = '*' ½ '/' ½ 'div' ½ 'mod' ½ 'and' .

6.4.2.1 new-ordinal-type = enumerated-type ½ subrange-type .

6.4.4 new-pointer-type = '­' domain-type .

6.4.3.1 new-structured-type = [ 'packed' ] unpacked-structured-type .

6.4.1 new-type = new-ordinal-type ½ new-structured-type ½ new-pointer-type .

6.4.2.1 ordinal-type = new-ordinal-type ½ ordinal-type-identifier .

6.4.2.1 ordinal-type-identifier = type-identifier .

6.6.3.7.1 packed-conformant-array-schema = 'packed' 'array' '[' index-type-specification ']' 'of' type-identifier .

6.4.4 pointer-type = new-pointer-type ½ pointer-type-identifier .

6.4.1 pointer-type-identifier = type-identifier .

6.5.4 pointer-variable = variable-access .

6.6.3.1 procedural-parameter-specification = procedure-heading .

6.2.1 procedure-and-function-declaration-part = { ( procedure-declaration ½ function-declaration ) ';' } .

6.6.1 procedure-block = block .

6.6.1 procedure-declaration = procedure-heading ';' directive

½ procedure-identification ';' procedure-block

½ procedure-heading ';' procedure-block .

6.6.1 procedure-heading = 'procedure' identifier [ formal-parameter-list ] .

6.6.1 procedure-identification = 'procedure' procedure-identifier .

6.6.1 procedure-identifier = identifier .

6.8.2.3 procedure-statement = procedure-identifier ( [ actual-parameter-list ]

½ read-parameter-list ½ readln-parameter-list

½ write-parameter-list ½ writeln-parameter-list ) .

6.10 program = program-heading ';' program-block '.' .

6.10 program-block = block .

6.10 program-heading = 'program' identifier [ '(' program-parameter-list ')' ] .

6.10 program-parameter-list = identifier-list .

6.9.1 read-parameter-list = '(' [ file-variable ',' ] variable-access { ',' variable-access } ')' .

6.9.2 readln-parameter-list = [ '(' ( file-variable ½ variable-access ) { ',' variable-access } ')' ] .

6.4.2.1 real-type-identifier = type-identifier .

6.4.3.3 record-section = identifier-list ':' type-denoter .

6.4.3.3 record-type = 'record' field-list 'end' .

6.5.3.3 record-variable = variable-access .

6.8.3.10 record-variable-list = record-variable { ',' record-variable } .

6.7.2.1 relational-operator = '=' ½ '<>' ½ '<' ½ '>' ½ '<=' ½ '>=' ½ 'in' .

6.8.3.7 repeat-statement = 'repeat' statement-sequence 'until' Boolean-expression .

6.8.3.6 repetitive-statement = repeat-statement ½ while-statement ½ for-statement .

6.6.2 result-type = simple-type-identifier ½ pointer-type-identifier .

6.1.5 scale-factor = [ sign ] digit-sequence .

6.7.1 set-constructor = '[' [ member-designator { ',' member-designator } ] ']' .

6.4.3.4 set-type = 'set' 'of' base-type .

6.1.5 sign = '+' ½ ' -' .

6.1.5signed-integer = [ sign ] unsigned-integer .

6.1.5signed-number = signed-integer ½ signed-real .

6.1.5signed-real = [ sign ] unsigned-real .

6.7.1simple-expression = [ sign ] term { adding-operator term } .

6.8.2.1simple-statement = empty-statement ½ assignment-statement ½ procedure-statement ½ goto-statement .

6.4.2.1 simple-type = ordinal-type ½ real-type-identifier .

6.4.1 simple-type-identifier = type-identifier .

6.1.2 special-symbol = '+' ½ ' -' ½ '*' ½ '/' ½ '=' ½ '<' ½ '>' ½ '[' ½ ']' ½ '.' ½ ',' ½ ':' ½ ';' ½ '­'

½ '(' ½ ')' ½ '<>' ½ '<=' ½ '>=' ½ ':=' ½ '..' ½ word-symbol .

6.8.1 statement = [ label ':' ] ( simple-statement ½ structured-statement ) .

6.2.1 statement-part = compound-statement .

6.8.3.1 statement-sequence = statement { ';' statement } .

6.1.7 string-character = one-of-a-set-of-implementation-defined-characters .

6.1.7 string-element = apostrophe-image ½ string-character .

6.8.3.1 structured-statement = compound-statement ½ conditional-statement

½ repetitive-statement ½ with-statement .

6.4.3.1 structured-type = new-structured-type ½ structured-type-identifier .

6.4.1 structured-type-identifier = type-identifier .

6.4.2.4 subrange-type = constant '..' constant .

6.4.3.3 tag-field = identifier .

6.4.3.3 tag-type = ordinal-type-identifier .

6.7.1 term = factor { multiplying-operator factor } .

6.4.1 type-definition = identifier '=' type-denoter .

6.2.1 type-definition-part = [ 'type' type-definition ';' { type-definition ';' } ] .

6.4.1 type-denoter = type-identifier ½ new-type .

6.4.1 type-identifier = identifier .

6.6.3.7.1 unpacked-conformant-array-schema =

'array' '[' index-type-specification { ';' index-type-specification } ']'

'of' ( type-identifier ½ conformant-array-schema ) .

6.4.3.1 unpacked-structured-type = array-type ½ record-type ½ set-type ½ file-type .

6.7.1 unsigned-constant = unsigned-number ½ character-string ½ constant-identifier ½ 'nil' .

6.1.5 unsigned-integer = digit-sequence .

6.1.5 unsigned-number = unsigned-integer ½ unsigned-real .

6.1.5 unsigned-real = digit-sequence '.' fractional-part [ 'e' scale-factor ] ½ digit-sequence 'e' scale-factor .

6.6.3.7.1 value-conformant-array-specification = identifier-list ':' conformant-array-schema .

6.6.3.1 value-parameter-specification = identifier-list ':' type-identifier .

6.5.1 variable-access = entire-variable ½ component-variable ½ identified-variable ½ buffer-variable .

6.6.3.7.1 variable-conformant-array-specification = 'var' identifier-list ':' conformant-array-schema .

6.5.1 variable-declaration = identifier-list ':' type-denoter .

6.2.1 variable-declaration-part = [ 'var' variable-declaration ';' { variable-declaration ';' } ] .

6.5.2 variable-identifier = identifier .

6.6.3.1 variable-parameter-specification = 'var' identifier-list ':' type-identifier .

6.4.3.3 variant = case-constant-list ':' '(' field-list ')' .

6.4.3.3 variant-part = 'case' variant-selector 'of' variant { ';' variant } .

6.4.3.3 variant-selector = [ tag-field ':' ] tag-type .

6.8.3.8 while-statement = 'while' Boolean-expression 'do' statement .

6.8.3.10 with-statement = 'with' record-variable-list 'do' statement .

6.1.2 word-symbol = 'and' ½ 'array' ½ 'begin' ½ 'case' ½ 'const' ½ 'div' ½ 'do' ½ 'downto' ½ 'else'

½ 'end' ½ 'file' ½ 'for' ½ 'function' ½ 'goto' ½ 'if' ½ 'in' ½ 'label' ½ 'mod'

½ 'nil' ½ 'not' ½ 'of' ½ 'or' ½ 'packed' ½ 'procedure' ½ 'program' ½ 'record'

½ 'repeat' ½ 'set' ½ 'then' ½ 'to' ½ 'type' ½ 'until' ½ 'var' ½ 'while' ½ 'with' .

6.9.3 write-parameter = expression [ ':' expression [ ':' expression ] ] .

6.9.3 write-parameter-list = '(' [ file-variable ',' ] write-parameter { ',' write-parameter } ')' .

6.9.4 writeln-parameter-list = [ '(' ( file-variable ½ write-parameter ) { ',' write-parameter } ')' ] .

 


 

ISO/IEC 7185:1990(E)

Annex B

(Informative)

 

Cross-references

 

access 6.5.1 6.5.3.1 6.5.3.3 6.5.5 6.6.3.3 6.6.3.7.2

6.6.3.7.3 6.6.5.2 6.8.2.2 6.8.3.10 6.10

actual 6.6.3.3 6.6.3.4 6.6.3.5 6.7.3 6.8.2.3 6.8.3.9

actual-parameter 6.6.3.2 6.6.3.3 6.6.3.4 6.6.3.5 6.6.3.7.1 6.6.3.7.2

6.6.3.7.3 6.6.5.3 6.7.3

actual-parameter-list 6.6.6.5 6.7.3 6.8.2.3 6.9.5

array-type 6.4.3.1 6.4.3.2 6.5.3.2 6.6.3.7.1 6.6.3.8

assignment-compatible 6.4.6 6.5.3.2 6.6.3.2 6.6.5.2 6.6.5.4 6.8.2.2

6.8.3.9 6.9.1

assignment-statement 6.2.3.3 6.6.2 6.6.5.3 6.8.2.1 6.8.2.2 6.8.3.9

base-type 6.4.3.4 6.4.5 6.4.6 6.7.1

block 6.2.1 6.2.3.1 6.2.3.2 6.2.3.3 6.2.3.4 6.3

6.4.1 6.4.2.3 6.5.1 6.6.1 6.6.2 6.6.3.1

6.6.3.2 6.6.3.3 6.6.3.4 6.6.3.5 6.6.3.7.1 6.6.3.7.2

6.6.3.7.3 6.7.3 6.8.1 6.8.2.3 6.8.3.9 6.10

body 6.6.1 6.8.3.8 6.8.3.9

boolean-expression 6.7.2.3 6.8.3.4 6.8.3.7 6.8.3.8

boolean-type 6.4.2.2 6.7.2.3 6.7.2.5 6.9.3.1 6.9.3.5

buffer-variable 6.5.1 6.5.5 6.6.5.2 6.9.1 6.9.3 6.9.5

6.10

case-constants 6.4.3.3 6.6.5.3 6.8.3.5

char-type 6.1.7 6.4.2.2 6.4.3.2 6.4.3.5 6.5.5 6.6.6.4

6.9.1 6.9.3.1 6.9.3.2

character 6.1.7 6.1.9 6.4.2.2 6.6.6.4 6.9.1 6.9.3.2

6.9.3.3 6.9.3.4.1 6.9.3.4.2

character-string 6.1.1 6.1.7 6.1.8 6.3 6.4.3.2 6.7.1

closed 6.1.5 6.1.6 6.4.6 6.6.3.8 6.7.1 6.7.2.2

compatible 6.4.3.3 6.4.5 6.4.6 6.4.7 6.6.3.8 6.7.2.5

6.8.3.9

component 6.4.3.1 6.4.3.2 6.4.3.3 6.4.3.5 6.5.1 6.5.3.1

6.5.3.2 6.5.3.3 6.6.2 6.6.3.3 6.6.3.6 6.6.3.7.3

6.6.5.2 6.6.6.5 6.8.2.2 6.8.3.10 6.9.1 6.9.4

6.9.5

component-type 6.4.3.2 6.4.3.5 6.4.6 6.5.5 6.6.3.2 6.6.3.7.1

6.6.3.8

components 6.1.7 6.4.3.1 6.4.3.2 6.4.3.3 6.4.3.5 6.4.5

6.5.3.3 6.6.5.2 6.8.3.10 6.9.3.6

compound-statement 6.2.1 6.8.1 6.8.3.1 6.8.3.2

conformant-array-schema 6.6.3.6 6.6.3.7.1 6.6.3.8

congruous 6.6.3.4 6.6.3.5 6.6.3.6

constant 6.3 6.4.2.4 6.4.3.3 6.6.2 6.6.3.7.1

corresponding 1.2 4 6.1.4 6.1.9 6.2.3.2 6.2.3.3

6.4.1 6.4.3.3 6.5.4 6.6.3.1 6.6.3.3 6.6.3.6

6.6.3.7.1 6.6.3.7.2 6.6.3.7.3 6.6.3.8 6.6.4.1 6.6.5.2

6.7.2.2 6.7.3 6.8.2.3

defining-point 6.2.1 6.2.2.1 6.2.2.2 6.2.2.3 6.2.2.4 6.2.2.5

6.2.2.7 6.2.2.8 6.2.2.9 6.2.2.11 6.2.3.1 6.2.3.2

6.3 6.4.1 6.4.2.3 6.4.3.3 6.5.1 6.5.3.3

6.6.1 6.6.2 6.6.3.1 6.6.3.4 6.6.3.5 6.6.3.7.1

6.8.3.10 6.10

definition 3.1 4 5.1 6.4.3.5 6.6.3.7.1

directive 6.1.4 6.6.1 6.6.2

entire-variable 6.5.1 6.5.2 6.8.3.9

enumerated-type 6.4.2.1 6.4.2.3

error 3.1 3.2 5.1 6.4.6 6.5.3.3 6.5.4

6.5.5 6.6.3.8 6.6.5.2

6.6.5.3 6.6.6.2 6.6.6.3 6.6.6.4 6.6.6.5 6.7.1

6.7.2.2 6.7.3 6.8.3.5 6.9.1 6.9.3 6.9.3.1

6.9.4 6.9.5

expression 6.5.3.2 6.6.3.2 6.6.3.7.2 6.6.5.2 6.6.5.3 6.6.5.4

6.6.6.2 6.6.6.3 6.6.6.4 6.6.6.5 6.7.1 6.7.2.3

6.7.3 6.8.2.2 6.8.3.5 6.8.3.9 6.9.3 6.9.3.1

factor 6.1.5 6.6.3.7.1 6.6.5.3 6.7.1 6.7.2.1

field 6.4.3.3 6.5.3.3 6.6.3.3

field-designator 6.2.2.6 6.5.3.1 6.5.3.3

field-identifier 6.4.3.3 6.5.3.3 6.8.3.10

file-type 6.4.3.1 6.4.3.5 6.4.6 6.5.5 6.6.3.2 6.10

file-variable 6.5.5 6.6.5.2 6.6.6.5 6.9.1 6.9.2 6.9.3

6.9.4

formal 6.2.3.2 6.6.1 6.6.2 6.6.3.1 6.6.3.2 6.6.3.3

6.6.3.4 6.6.3.5 6.6.3.7.1 6.6.3.7.2 6.6.3.7.3 6.7.3

6.8.2.3

formal-parameter-list 6.6.1 6.6.2 6.6.3.1 6.6.3.4 6.6.3.5 6.6.3.7.1

function 6.1.2 6.2.3.2 6.2.3.3 6.4.3.5 6.6 6.6.1

6.6.2 6.6.3.5 6.6.6.3 6.6.6.4 6.6.6.5 6.7.2.2

6.7.3 6.9.3.3 6.9.3.4.1 6.9.3.4.2

function-block 6.1.4 6.2.3.2 6.2.3.3 6.6.2 6.6.3.1 6.8.2.2

function-declaration 6.1.4 6.2.1 6.6.2 6.7.3

function-designator 6.2.3.4 6.6.3.7.2 6.7.1 6.7.3

function-identifier 6.2.3.1 6.2.3.2 6.2.3.3 6.6.2 6.6.3.1 6.6.3.5

6.7.3 6.8.2.2

goto-statement 6.8.1 6.8.2.1 6.8.2.4 6.8.3.1 6.8.3.7 6.8.3.9

identifier 4 6.1.3 6.2.2.1 6.2.2.5 6.2.2.7 6.2.2.8

6.2.2.9 6.2.2.11 6.3 6.4.1 6.4.2.3 6.4.3.3

6.5.1 6.5.2 6.5.3.3 6.6.1 6.6.2 6.6.3.1

6.6.3.7.1 6.6.3.7.2 6.8.3.9 6.8.3.10 6.10

identifier-list 6.4.2.3 6.4.3.3 6.5.1 6.6.3.1 6.6.3.7.1 6.6.3.7.3

6.10

implementation-defined 3.1 3.3 5.1 5.2 6.1.7

6.4.2.2 6.6.5.2 6.7.2.2 6.9.3.1 6.9.3.4.1 6.9.3.5

6.9.5 6.10

implementation-dependent 3.2 3.4 5.1 5.2 6.5.3.2

6.7.1 6.7.2.1 6.7.3 6.8.2.2 6.8.2.3 6.9.5

6.10

index-type 6.4.3.2 6.5.3.2 6.6.3.7.1 6.6.3.8

indexed-variable 6.5.3.1 6.5.3.2 6.6.3.7.2

integer-type 6.1.5 6.3 6.4.2.2 6.4.2.3 6.4.6 6.6.6.2

6.6.6.3 6.6.6.4 6.6.6.5 6.7.2.2 6.7.2.5 6.9.1

6.9.3.1 6.9.3.3

label 6.1.2 6.1.6 6.2.1 6.2.2.1 6.2.2.5 6.2.2.7

6.2.2.8 6.2.2.9 6.2.2.11 6.2.3.2 6.2.3.3 6.8.1

6.8.2.4

member 6.4.6 6.7.1 6.7.2.5

note 3 3.1 3.5 5 5.1 5.2

6.1 6.1.4 6.1.7 6.1.9 6.2.2.8 6.2.2.10

6.2.2.11 6.2.3.2 6.2.3.3 6.4.2.2 6.4.3.1 6.4.3.2

6.4.3.3 6.4.3.4 6.4.3.5 6.4.4 6.4.7 6.5.1

6.5.3.2 6.5.3.3 6.5.4 6.6.3.1 6.6.3.7 6.6.3.7.1

6.6.3.7.2 6.6.3.8 6.6.4.1 6.6.5.2 6.6.5.3 6.7.1

6.7.2.1 6.7.2.2 6.7.2.5 6.8.1 6.8.3.4 6.8.3.5

6.9.1 6.9.2 6.9.3.4.2 6.9.4 6.10

number 5.1 6.1.7 6.4.2.2 6.4.2.3 6.4.3.2 6.4.5

6.6.3.6 6.6.6.4 6.7.3 6.8.2.3 6.9.1 6.9.3.3

6.9.3.4 6.9.3.4.1 6.9.3.4.2

operand 6.7.2.1 6.7.2.2 6.7.2.5

operator 6.5.1 6.7.1 6.7.2.1 6.7.2.2 6.7.2.4 6.7.2.5

6.8.3.5

ordinal 6.4.2.1 6.4.2.2 6.4.2.3 6.6.6.1 6.6.6.4 6.7.2.5

ordinal-type 6.4.2.1 6.4.2.4 6.4.3.2 6.4.3.3 6.4.3.4 6.6.6.4

6.7.1 6.7.2.5 6.8.3.5 6.8.3.9

parameter 6.6.1 6.6.3.1 6.6.3.2 6.6.3.3 6.6.3.4 6.6.3.5

6.6.3.6 6.6.3.7.1 6.6.3.7.2 6.6.3.7.3 6.6.5.2 6.6.6.2

6.6.6.5 6.8.3.9 6.9.1 6.9.2 6.9.3 6.9.3.5

6.9.4 6.10

pointer 6.4.1 6.5.1 6.7.2.5

pointer-type 6.4.4 6.5.4 6.6.5.3

procedure 6.1.2 6.2.3.2 6.2.3.3 6.4.4 6.5.4 6.6

6.6.1 6.6.3.4 6.6.3.7.2 6.8.2.3 6.8.3.9 6.9.1

6.9.2 6.9.3 6.9.4 6.9.5 6.10

procedure-block 6.1.4 6.2.3.2 6.2.3.3 6.6.1 6.6.3.1 6.8.2.3

procedure-declaration 6.1.4 6.2.1 6.6.1 6.8.2.3

procedure-identifier 6.2.3.1 6.2.3.2 6.2.3.3 6.6.1 6.6.3.1 6.6.3.4

6.7.3 6.8.2.3

procedure-statement 6.2.3.4 6.8.2.1 6.8.2.3 6.8.3.9

program-parameters 6.2.3.5 6.10

real-type 6.1.5 6.3 6.4.2.2 6.4.6 6.6.6.2 6.6.6.3

6.7.2.2 6.7.2.5 6.9.1 6.9.3.1 6.9.3.4

record-type 6.4.3.1 6.4.3.3 6.5.3.3 6.6.5.3 6.8.3.10

record-variable 6.4.3.3 6.5.3.3 6.8.3.10

reference 6.5.3.1 6.5.3.3 6.5.4 6.5.5 6.6.3.3 6.6.3.7.2

6.6.3.7.3 6.8.2.2 6.8.3.10

region 6.2.1 6.2.2.2 6.2.2.3 6.2.2.4 6.2.2.5 6.2.2.6

6.2.2.7 6.2.2.10 6.2.3.1 6.2.3.2 6.3 6.4.1

6.4.2.3 6.4.3.3 6.5.1 6.5.3.3 6.6.1 6.6.2

6.6.3.1 6.6.3.7.1 6.8.3.10 6.10

result 6.2.3.2 6.2.3.3 6.2.3.5 6.6.1 6.6.2 6.6.6.2

6.6.6.3 6.6.6.4 6.7.2.2 6.7.2.4 6.7.2.5 6.7.3

6.8.2.2

same 3.5 5.2 6.1 6.1.3 6.1.4 6.1.7

6.2.3.3 6.4.1 6.4.2.2 6.4.2.4 6.4.3.2 6.4.5

6.4.6 6.4.7 6.5.3.1 6.5.3.2 6.6.3.2 6.6.3.3

6.6.3.5 6.6.3.6 6.6.3.7.1 6.6.3.7.2 6.6.3.8 6.6.6.2

6.6.6.4 6.7.1 6.7.2.2 6.7.2.4 6.7.2.5 6.8.3.5

6.8.3.10

scope 6.2 6.2.2 6.2.2.2 6.2.2.4 6.2.2.5 6.2.2.8

set-type 6.4.3.1 6.4.3.4 6.7.1 6.7.2.5

statement 6.2.1 6.2.3.2 6.6.5.4 6.8.1 6.8.2.1 6.8.3.1

6.8.3.4 6.8.3.5 6.8.3.8 6.8.3.9 6.8.3.10

string-type 6.1.7 6.4.3.2 6.4.5 6.4.6 6.6.3.7.1 6.7.2.5

6.9.3.1 6.9.3.6

structured-type 6.4.3.1 6.4.3.5 6.5.1 6.8.2.2

subrange 6.4.2.4 6.4.5 6.7.1 6.9.1

textfile 6.4.3.5 6.5.5 6.6.6.5 6.9.1 6.9.2 6.9.3

6.9.4 6.9.5 6.10

token 4 6.1 6.1.1 6.1.2 6.1.8 6.1.9

totally-undefined 6.2.3.5 6.5.3.3 6.6.5.2 6.6.5.3 6.8.2.2 6.9.4

6.9.5

type-identifier 6.2.2.9 6.2.2.11 6.4.1 6.4.2.1 6.4.4 6.6.3.1

6.6.3.2 6.6.3.3 6.6.3.6 6.6.3.7.1 6.6.3.8 6.10

undefined 6.5.3.3 6.5.4 6.6.5.2 6.6.5.3 6.6.6.5 6.7.1

6.7.3 6.8.2.2 6.8.3.9 6.9.1 6.9.3 6.9.4

variable 6.2.3.2 6.2.3.3 6.4.1 6.4.3.5 6.4.4 6.5.1

6.5.3.1 6.5.3.2 6.5.3.3 6.5.4 6.5.5 6.6.3.1

6.6.3.2 6.6.3.3 6.6.3.7.1 6.6.3.7.2 6.6.3.7.3 6.6.5.2

6.6.5.3 6.6.5.4 6.7.1 6.8.2.2 6.8.3.9 6.8.3.10

6.9.1 6.10

variable-access 6.5.1 6.5.3.2 6.5.3.3 6.5.4 6.5.5 6.6.3.3

6.6.3.7.3 6.6.5.2 6.6.5.3 6.7.1 6.7.3 6.8.2.2

6.8.3.9 6.9.1 6.9.2

variant 6.4.3.3 6.5.3.3 6.6.5.3

word-symbol 6.1.2 6.1.3 6.1.4


ISO/IEC 7185:1990(E)

Annex C

(Informative)

 


Date: 2015-12-24; view: 1029


<== previous page | next page ==>
The procedure readln | Required identifiers
doclecture.net - lectures - 2014-2024 year. Copyright infringement or personal data (0.032 sec.)