Difference between revisions of "Of"

From Free Pascal wiki
Jump to navigationJump to search
(list)
m (xlink Method)
Line 15: Line 15:
 
** variant records: [[Case#Variant Record|<syntaxhighlight lang="pascal" enclose="none">record</syntaxhighlight>]] <syntaxhighlight lang="pascal" enclose="none">case of end</syntaxhighlight>
 
** variant records: [[Case#Variant Record|<syntaxhighlight lang="pascal" enclose="none">record</syntaxhighlight>]] <syntaxhighlight lang="pascal" enclose="none">case of end</syntaxhighlight>
 
* specifying class references: [[Class|<syntaxhighlight lang="pascal" enclose="none">class</syntaxhighlight>]] <syntaxhighlight lang="pascal" enclose="none">of</syntaxhighlight>
 
* specifying class references: [[Class|<syntaxhighlight lang="pascal" enclose="none">class</syntaxhighlight>]] <syntaxhighlight lang="pascal" enclose="none">of</syntaxhighlight>
* specifying references to class methods: [[Procedure|<syntaxhighlight lang="pascal" enclose="none">procedure</syntaxhighlight>]] <syntaxhighlight lang="pascal" enclose="none">of</syntaxhighlight>
+
* specifying references to class [[Method|methods]]: [[Procedure|<syntaxhighlight lang="pascal" enclose="none">procedure</syntaxhighlight>]] <syntaxhighlight lang="pascal" enclose="none">of</syntaxhighlight>

Revision as of 01:01, 25 May 2018

Deutsch (de) English (en) suomi (fi) français (fr)

of is a reserved word.

occurences

The word of is used at several places.

  • separating the base type of a structured data type
  • in conjunction with the word case distinguishing between alternatives
    • switch control structure: case of end
    • variant records: record case of end
  • specifying class references: class of
  • specifying references to class methods: procedure of