chiark / gitweb /
doc/refintro.tex: Introduction to reference section.
[sod] / doc / syntax.tex
CommitLineData
1f7d590d
MW
1%%% -*-latex-*-
2%%%
3%%% Module syntax
4%%%
5%%% (c) 2015 Straylight/Edgeware
6%%%
7
8%%%----- Licensing notice ---------------------------------------------------
9%%%
e0808c47 10%%% This file is part of the Sensible Object Design, an object system for C.
1f7d590d
MW
11%%%
12%%% SOD is free software; you can redistribute it and/or modify
13%%% it under the terms of the GNU General Public License as published by
14%%% the Free Software Foundation; either version 2 of the License, or
15%%% (at your option) any later version.
16%%%
17%%% SOD is distributed in the hope that it will be useful,
18%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
19%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20%%% GNU General Public License for more details.
21%%%
22%%% You should have received a copy of the GNU General Public License
23%%% along with SOD; if not, write to the Free Software Foundation,
24%%% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26\chapter{Module syntax} \label{ch:syntax}
27
68a620ab
MW
28%%%--------------------------------------------------------------------------
29\section{Lexical syntax} \label{sec:syntax.lex}
1f7d590d
MW
30
31Whitespace and comments are discarded. The remaining characters are
32collected into tokens according to the following syntax.
33
34\begin{grammar}
35<token> ::= <identifier>
36\alt <string-literal>
37\alt <char-literal>
38\alt <integer-literal>
39\alt <punctuation>
40\end{grammar}
41
42This syntax is slightly ambiguous, and is disambiguated by the \emph{maximal
43munch} rule: at each stage we take the longest sequence of characters which
44could be a token.
45
68a620ab
MW
46
47\subsection{Identifiers} \label{sec:syntax.lex.id}
1f7d590d
MW
48
49\begin{grammar}
50<identifier> ::= <id-start-char> @<id-body-char>^*
51
52<id-start-char> ::= <alpha-char> | "_"
53
54<id-body-char> ::= <id-start-char> @! <digit-char>
55
56<alpha-char> ::= "A" | "B" | \dots\ | "Z"
57\alt "a" | "b" | \dots\ | "z"
58\alt <extended-alpha-char>
59
60<digit-char> ::= "0" | <nonzero-digit-char>
61
62<nonzero-digit-char> ::= "1" | "2" $| \cdots |$ "9"
63\end{grammar}
64
65The precise definition of @<alpha-char> is left to the function
66\textsf{alpha-char-p} in the hosting Lisp system. For portability,
67programmers are encouraged to limit themselves to the standard ASCII letters.
68
69There are no reserved words at the lexical level, but the higher-level syntax
70recognizes certain identifiers as \emph{keywords} in some contexts. There is
71also an ambiguity (inherited from C) in the declaration syntax which is
72settled by distinguishing type names from other identifiers at a lexical
73level.
74
68a620ab
MW
75
76\subsection{String and character literals} \label{sec:syntax.lex.string}
1f7d590d
MW
77
78\begin{grammar}
79<string-literal> ::= "\"" @<string-literal-char>^* "\""
80
81<char-literal> ::= "'" <char-literal-char> "'"
82
83<string-literal-char> ::= any character other than "\\" or "\""
84\alt "\\" <char>
85
86<char-literal-char> ::= any character other than "\\" or "'"
87\alt "\\" <char>
88
89<char> ::= any single character
90\end{grammar}
91
92The syntax for string and character literals differs from~C. In particular,
93escape sequences such as @`\textbackslash n' are not recognized. The use
94of string and character literals in Sod, outside of C~fragments, is limited,
95and the simple syntax seems adequate. For the sake of future compatibility,
96the use of character sequences which resemble C escape sequences is
97discouraged.
98
99\subsubsection{Integer literals} \label{sec:syntax.lex.int}
100
101\begin{grammar}
102<integer-literal> ::= <decimal-integer>
103\alt <binary-integer>
104\alt <octal-integer>
105\alt <hex-integer>
106
cc0bcf39 107<decimal-integer> ::= "0" | <nonzero-digit-char> @<digit-char>^*
1f7d590d
MW
108
109<binary-integer> ::= "0" @("b"|"B"@) @<binary-digit-char>^+
110
111<binary-digit-char> ::= "0" | "1"
112
113<octal-integer> ::= "0" @["o"|"O"@] @<octal-digit-char>^+
114
115<octal-digit-char> ::= "0" | "1" $| \cdots |$ "7"
116
117<hex-integer> ::= "0" @("x"|"X"@) @<hex-digit-char>^+
118
119<hex-digit-char> ::= <digit-char>
120\alt "A" | "B" | "C" | "D" | "E" | "F"
121\alt "a" | "b" | "c" | "d" | "e" | "f"
122\end{grammar}
123
124Sod understands only integers, not floating-point numbers; its integer syntax
125goes slightly beyond C in allowing a @`0o' prefix for octal and @`0b' for
126binary. However, length and signedness indicators are not permitted.
127
68a620ab
MW
128
129\subsection{Punctuation} \label{sec:syntax.lex.punct}
1f7d590d
MW
130
131\begin{grammar}
132<punctuation> ::= any nonalphanumeric character other than "_", "\"" or "'"
133\end{grammar}
134
68a620ab
MW
135
136\subsection{Comments} \label{sec:syntax.lex.comment}
1f7d590d
MW
137
138\begin{grammar}
139<comment> ::= <block-comment>
140\alt <line-comment>
141
142<block-comment> ::=
143 "/*"
144 @<not-star>^* @(@<star>^+ <not-star-or-slash> @<not-star>^*@)^*
145 @<star>^*
146 "*/"
147
148<star> ::= "*"
149
150<not-star> ::= any character other than "*"
151
152<not-star-or-slash> ::= any character other than "*" or "/"
153
20f9c213 154<line-comment> ::= "/\,/" @<not-newline>^* <newline>
1f7d590d
MW
155
156<newline> ::= a newline character
157
158<not-newline> ::= any character other than newline
159\end{grammar}
160
20f9c213
MW
161Comments are exactly as in C99: both traditional block comments `@|/*| \dots\
162@|*/|' and \Cplusplus-style `@|/\,/| \dots' comments are permitted and
163ignored.
1f7d590d 164
68a620ab
MW
165
166\subsection{Special nonterminals} \label{sec:syntax.lex.special}
1f7d590d
MW
167
168Aside from the lexical syntax presented above (\xref{sec:lexical-syntax}),
169two special nonterminals occur in the module syntax.
170
68a620ab 171\subsubsection{S-expressions}
1f7d590d
MW
172\begin{grammar}
173<s-expression> ::= an S-expression, as parsed by the Lisp reader
174\end{grammar}
175
176When an S-expression is expected, the Sod parser simply calls the host Lisp
68a620ab
MW
177system's @|read| function. Sod modules are permitted to modify the read
178table to extend the S-expression syntax.
1f7d590d
MW
179
180S-expressions are self-delimiting, so no end-marker is needed.
181
68a620ab 182\subsubsection{C fragments}
1f7d590d
MW
183\begin{grammar}
184<c-fragment> ::= a sequence of C tokens, with matching brackets
185\end{grammar}
186
187Sequences of C code are simply stored and written to the output unchanged
188during translation. They are read using a simple scanner which nonetheless
189understands C comments and string and character literals.
190
191A C fragment is terminated by one of a small number of delimiter characters
192determined by the immediately surrounding context -- usually a closing brace
193or bracket. The first such delimiter character which is not enclosed in
194brackets, braces or parenthesis ends the fragment.
195
68a620ab
MW
196%%%--------------------------------------------------------------------------
197\section{Module syntax} \label{sec:syntax.module}
1f7d590d
MW
198
199\begin{grammar}
200<module> ::= @<definition>^*
201
202<definition> ::= <import-definition>
203\alt <load-definition>
204\alt <lisp-definition>
205\alt <code-definition>
206\alt <typename-definition>
207\alt <class-definition>
208\end{grammar}
209
68a620ab
MW
210A @<module> is the top-level syntactic item. A module consists of a sequence
211of definitions.
1f7d590d 212
68a620ab 213\subsection{Simple definitions} \label{sec:syntax.module.simple}
1f7d590d 214
68a620ab 215\subsubsection{Importing modules}
1f7d590d
MW
216\begin{grammar}
217<import-definition> ::= "import" <string> ";"
218\end{grammar}
219
220The module named @<string> is processed and its definitions made available.
221
222A search is made for a module source file as follows.
223\begin{itemize}
224\item The module name @<string> is converted into a filename by appending
225 @`.sod', if it has no extension already.\footnote{%
226 Technically, what happens is \textsf{(merge-pathnames name (make-pathname
227 :type "SOD" :case :common))}, so exactly what this means varies
228 according to the host system.} %
229\item The file is looked for relative to the directory containing the
230 importing module.
231\item If that fails, then the file is looked for in each directory on the
232 module search path in turn.
233\item If the file still isn't found, an error is reported and the import
234 fails.
235\end{itemize}
236At this point, if the file has previously been imported, nothing further
237happens.\footnote{%
238 This check is done using \textsf{truename}, so it should see through simple
239 tricks like symbolic links. However, it may be confused by fancy things
240 like bind mounts and so on.} %
241
242Recursive imports, either direct or indirect, are an error.
243
68a620ab 244\subsubsection{Loading extensions}
1f7d590d
MW
245\begin{grammar}
246<load-definition> ::= "load" <string> ";"
247\end{grammar}
248
249The Lisp file named @<string> is loaded and evaluated.
250
251A search is made for a Lisp source file as follows.
252\begin{itemize}
253\item The name @<string> is converted into a filename by appending @`.lisp',
254 if it has no extension already.\footnote{%
255 Technically, what happens is \textsf{(merge-pathnames name (make-pathname
256 :type "LISP" :case :common))}, so exactly what this means varies
257 according to the host system.} %
258\item A search is then made in the same manner as for module imports
259 (\xref{sec:syntax-module}).
260\end{itemize}
261If the file is found, it is loaded using the host Lisp's \textsf{load}
262function.
263
264Note that Sod doesn't attempt to compile Lisp files, or even to look for
265existing compiled files. The right way to package a substantial extension to
266the Sod translator is to provide the extension as a standard ASDF system (or
267similar) and leave a dropping @"foo-extension.lisp" in the module path saying
268something like
269\begin{quote}
270 \textsf{(asdf:load-system :foo-extension)}
271\end{quote}
272which will arrange for the extension to be compiled if necessary.
273
274(This approach means that the language doesn't need to depend on any
275particular system definition facility. It's bad enough already that it
276depends on Common Lisp.)
277
68a620ab 278\subsubsection{Lisp escapes}
1f7d590d
MW
279\begin{grammar}
280<lisp-definition> ::= "lisp" <s-expression> ";"
281\end{grammar}
282
283The @<s-expression> is evaluated immediately. It can do anything it likes.
284
eae50115
MW
285\begin{boxy}[Warning!]
286 This means that hostile Sod modules are a security hazard. Lisp code can
287 read and write files, start other programs, and make network connections.
288 Don't install Sod modules from sources that you don't trust.\footnote{%
289 Presumably you were going to run the corresponding code at some point, so
290 this isn't as unusually scary as it sounds. But please be careful.} %
291\end{boxy}
1f7d590d 292
68a620ab 293\subsubsection{Declaring type names}
1f7d590d
MW
294\begin{grammar}
295<typename-definition> ::=
ea08dc56 296 "typename" <list>$[\mbox{@<identifier>}]$ ";"
1f7d590d
MW
297\end{grammar}
298
299Each @<identifier> is declared as naming a C type. This is important because
300the C type syntax -- which Sod uses -- is ambiguous, and disambiguation is
301done by distinguishing type names from other identifiers.
302
303Don't declare class names using @"typename"; use @"class" forward
304declarations instead.
305
68a620ab
MW
306
307\subsection{Literal code} \label{sec:syntax.module.literal}
1f7d590d
MW
308
309\begin{grammar}
310<code-definition> ::=
4fc52153 311 "code" <identifier> ":" <item-name> @[<constraints>@]
1f7d590d
MW
312 "{" <c-fragment> "}"
313
ea08dc56 314<constraints> ::= "[" <list>$[\mbox{@<constraint>}]$ "]"
1f7d590d 315
4fc52153
MW
316<constraint> ::= @<item-name>^+
317
318<item-name> ::= <identifier> @! "(" @<identifier>^+ ")"
1f7d590d
MW
319\end{grammar}
320
321The @<c-fragment> will be output unchanged to one of the output files.
322
323The first @<identifier> is the symbolic name of an output file. Predefined
324output file names are @"c" and @"h", which are the implementation code and
325header file respectively; other output files can be defined by extensions.
326
4fc52153
MW
327Output items are named with a sequence of identifiers, separated by
328whitespace, and enclosed in parentheses. As an abbreviation, a name
329consisting of a single identifier may be written as just that identifier,
330without the parentheses.
1f7d590d
MW
331
332The @<constraints> provide a means for specifying where in the output file
333the output item should appear. (Note the two kinds of square brackets shown
334in the syntax: square brackets must appear around the constraints if they are
335present, but that they may be omitted.) Each comma-separated @<constraint>
4fc52153
MW
336is a sequence of names of output items, and indicates that the output items
337must appear in the order given -- though the translator is free to insert
338additional items in between them. (The particular output items needn't be
339defined already -- indeed, they needn't be defined ever.)
1f7d590d
MW
340
341There is a predefined output item @"includes" in both the @"c" and @"h"
342output files which is a suitable place for inserting @"\#include"
343preprocessor directives in order to declare types and functions for use
344elsewhere in the generated output files.
345
1f7d590d 346
68a620ab 347\subsection{Property sets} \label{sec:syntax.module.properties}
1f7d590d 348\begin{grammar}
ea08dc56 349<properties> ::= "[" <list>$[\mbox{@<property>}]$ "]"
1f7d590d
MW
350
351<property> ::= <identifier> "=" <expression>
352\end{grammar}
353
354Property sets are a means for associating miscellaneous information with
355classes and related items. By using property sets, additional information
356can be passed to extensions without the need to introduce idiosyncratic
357syntax.
358
359A property has a name, given as an @<identifier>, and a value computed by
360evaluating an @<expression>. The value can be one of a number of types,
361though the only operators currently defined act on integer values only.
362
68a620ab 363\subsubsection{The expression evaluator}
1f7d590d 364\begin{grammar}
20f9c213 365<expression> ::= <term> | <expression> "+" <term> | <expression> "--" <term>
1f7d590d
MW
366
367<term> ::= <factor> | <term> "*" <factor> | <term> "/" <factor>
368
20f9c213 369<factor> ::= <primary> | "+" <factor> | "--" <factor>
1f7d590d
MW
370
371<primary> ::=
372 <integer-literal> | <string-literal> | <char-literal> | <identifier>
1ad4b33a 373\alt "<" <plain-type> ">"
1f7d590d
MW
374\alt "?" <s-expression>
375\alt "(" <expression> ")"
376\end{grammar}
377
378The arithmetic expression syntax is simple and standard; there are currently
379no bitwise, logical, or comparison operators.
380
381A @<primary> expression may be a literal or an identifier. Note that
382identifiers stand for themselves: they \emph{do not} denote values. For more
383fancy expressions, the syntax
384\begin{quote}
385 @"?" @<s-expression>
386\end{quote}
387causes the @<s-expression> to be evaluated using the Lisp \textsf{eval}
388function.
389%%% FIXME crossref to extension docs
390
68a620ab
MW
391
392\subsection{C types} \label{sec:syntax.module.types}
1f7d590d
MW
393
394Sod's syntax for C types closely mirrors the standard C syntax. A C type has
395two parts: a sequence of @<declaration-specifier>s and a @<declarator>. In
396Sod, a type must contain at least one @<declaration-specifier> (i.e.,
397`implicit @"int"' is forbidden), and storage-class specifiers are not
398recognized.
399
68a620ab 400\subsubsection{Declaration specifiers}
1f7d590d
MW
401\begin{grammar}
402<declaration-specifier> ::= <type-name>
403\alt "struct" <identifier> | "union" <identifier> | "enum" <identifier>
404\alt "void" | "char" | "int" | "float" | "double"
405\alt "short" | "long"
406\alt "signed" | "unsigned"
2e01fd8b
MW
407\alt "bool" | "_Bool"
408\alt "imaginary" | "_Imaginary" | "complex" | "_Complex"
1f7d590d 409\alt <qualifier>
db56b1d3 410\alt <storage-specifier>
ae0f15ee 411\alt <atomic-type>
1f7d590d 412
ae0f15ee
MW
413<qualifier> ::= <atomic> | "const" | "volatile" | "restrict"
414
20f9c213
MW
415<plain-type> ::= @<declaration-specifier>^+ <abstract-declarator>
416
ae0f15ee 417<atomic-type> ::=
20f9c213 418 <atomic> "(" <plain-type> ")"
ae0f15ee
MW
419
420<atomic> ::= "atomic" | "_Atomic"
1f7d590d 421
db56b1d3
MW
422<storage-specifier> ::= <alignas> "(" <c-fragment> ")"
423
424<alignas> ::= "alignas" "_Alignas"
1f7d590d
MW
425
426<type-name> ::= <identifier>
427\end{grammar}
428
429A @<type-name> is an identifier which has been declared as being a type name,
2e01fd8b
MW
430using the @"typename" or @"class" definitions. The following type names are
431defined in the built-in module.
432\begin{itemize}
433\item @"va_list"
434\item @"size_t"
435\item @"ptrdiff_t"
436\item @"wchar_t"
437\end{itemize}
1f7d590d
MW
438
439Declaration specifiers may appear in any order. However, not all
440combinations are permitted. A declaration specifier must consist of zero or
db56b1d3
MW
441more @<qualifier>s, zero or more @<storage-specifier>s, and one of the
442following, up to reordering.
1f7d590d
MW
443\begin{itemize}
444\item @<type-name>
ae0f15ee 445\item @<atomic-type>
1f7d590d
MW
446\item @"struct" @<identifier>, @"union" @<identifier>, @"enum" @<identifier>
447\item @"void"
2e01fd8b 448\item @"_Bool", @"bool"
1f7d590d
MW
449\item @"char", @"unsigned char", @"signed char"
450\item @"short", @"unsigned short", @"signed short"
451\item @"short int", @"unsigned short int", @"signed short int"
452\item @"int", @"unsigned int", @"signed int", @"unsigned", @"signed"
453\item @"long", @"unsigned long", @"signed long"
454\item @"long int", @"unsigned long int", @"signed long int"
455\item @"long long", @"unsigned long long", @"signed long long"
456\item @"long long int", @"unsigned long long int", @"signed long long int"
457\item @"float", @"double", @"long double"
2e01fd8b
MW
458\item @"float _Imaginary", @"double _Imaginary", @"long double _Imaginary"
459\item @"float imaginary", @"double imaginary", @"long double imaginary"
460\item @"float _Complex", @"double _Complex", @"long double _Complex"
461\item @"float complex", @"double complex", @"long double complex"
1f7d590d
MW
462\end{itemize}
463All of these have their usual C meanings.
464
68a620ab 465\subsubsection{Declarators}
1f7d590d 466\begin{grammar}
43073476 467<declarator>$[k, a]$ ::= @<pointer>^* <primary-declarator>$[k, a]$
1f7d590d 468
43073476
MW
469<primary-declarator>$[k, a]$ ::= $k$
470\alt "(" <primary-declarator>$[k, a]$ ")"
471\alt <primary-declarator>$[k, a]$ @<declarator-suffix>$[a]$
1f7d590d
MW
472
473<pointer> ::= "*" @<qualifier>^*
474
43073476
MW
475<declarator-suffix>$[a]$ ::= "[" <c-fragment> "]"
476\alt "(" $a$ ")"
1f7d590d 477
20f9c213
MW
478<argument-list> ::= $\epsilon$ | "\dots"
479\alt <list>$[\mbox{@<argument>}]$ @["," "\dots"@]
1f7d590d
MW
480
481<argument> ::= @<declaration-specifier>^+ <argument-declarator>
482
f64eb323 483<abstract-declarator> ::= <declarator>$[\epsilon, \mbox{@<argument-list>}]$
ae0f15ee 484
ea08dc56 485<argument-declarator> ::= <declarator>$[\mbox{@<identifier> @! $\epsilon$}]$
20f9c213 486
43073476
MW
487<argument-declarator> ::=
488 <declarator>$[\mbox{@<identifier> @! $\epsilon$}, \mbox{@<argument-list>}]$
1f7d590d 489
43073476
MW
490<simple-declarator> ::=
491 <declarator>$[\mbox{@<identifier>}, \mbox{@<argument-list>}]$
1f7d590d
MW
492\end{grammar}
493
494The declarator syntax is taken from C, but with some differences.
495\begin{itemize}
496\item Array dimensions are uninterpreted @<c-fragments>, terminated by a
497 closing square bracket. This allows array dimensions to contain arbitrary
498 constant expressions.
499\item A declarator may have either a single @<identifier> at its centre or a
500 pair of @<identifier>s separated by a @`.'; this is used to refer to
501 slots or messages defined in superclasses.
502\end{itemize}
503The remaining differences are (I hope) a matter of presentation rather than
504substance.
505
43073476
MW
506There is additional syntax to support messages and methods which accept
507keyword arguments.
508
509\begin{grammar}
510<keyword-argument> ::= <argument> @["=" <c-fragment>@]
511
512<keyword-argument-list> ::=
513 @[<list>$[\mbox{@<argument>}]$@]
514 "?" @[<list>$[\mbox{@<keyword-argument>}]$@]
515
516<method-argument-list> ::= <argument-list> @! <keyword-argument-list>
517
518<dotted-name> ::= <identifier> "." <identifier>
519
520<keyword-declarator>$[k]$ ::=
521 <declarator>$[k, \mbox{@<method-argument-list>}]$
522\end{grammar}
523
68a620ab
MW
524
525\subsection{Class definitions} \label{sec:syntax.module.class}
1f7d590d
MW
526
527\begin{grammar}
528<class-definition> ::= <class-forward-declaration>
529\alt <full-class-definition>
530\end{grammar}
531
68a620ab 532\subsubsection{Forward declarations}
1f7d590d
MW
533\begin{grammar}
534<class-forward-declaration> ::= "class" <identifier> ";"
535\end{grammar}
536
537A @<class-forward-declaration> informs Sod that an @<identifier> will be used
538to name a class which is currently undefined. Forward declarations are
539necessary in order to resolve certain kinds of circularity. For example,
7119ea4e 540\begin{prog}
020b9e2b
MW
541class Sub; \\+
542
543class Super : SodObject \{ \\ \ind
544 Sub *sub; \-\\
545\}; \\+
546
547class Sub : Super \{ \\ \ind
548 /* \dots\ */ \-\\
7119ea4e
MW
549\};
550\end{prog}
1f7d590d 551
68a620ab 552\subsubsection{Full class definitions}
1f7d590d
MW
553\begin{grammar}
554<full-class-definition> ::=
555 @[<properties>@]
ea08dc56
MW
556 "class" <identifier> ":" <list>$[\mbox{@<identifier>}]$
557 "{" @<properties-class-item>^* "}"
1f7d590d 558
391c5a34
MW
559<properties-class-item> ::= @[<properties>@] <class-item>
560
561<class-item> ::= <slot-item>
562\alt <initializer-item>
b2983f35 563\alt <initarg-item>
a42893dd 564\alt <fragment-item>
1f7d590d
MW
565\alt <message-item>
566\alt <method-item>
1f7d590d
MW
567\end{grammar}
568
569A full class definition provides a complete description of a class.
570
571The first @<identifier> gives the name of the class. It is an error to
572give the name of an existing class (other than a forward-referenced class),
573or an existing type name. It is conventional to give classes `MixedCase'
574names, to distinguish them from other kinds of identifiers.
575
ea08dc56
MW
576The @<list>$[\mbox{@<identifier>}]$ names the direct superclasses for the new
577class. It is an error if any of these @<identifier>s does not name a defined
8d952432
MW
578class. The superclass list is required, and must not be empty; listing
579@|SodObject| as your class's superclass is a good choice if nothing else
580seems suitable. It's not possible to define a \emph{root class} in the Sod
581language: you must use Lisp to do this, and it's quite involved.
1f7d590d
MW
582
583The @<properties> provide additional information. The standard class
584properties are as follows.
585\begin{description}
586\item[@"lisp_class"] The name of the Lisp class to use within the translator
587 to represent this class. The property value must be an identifier; the
588 default is @"sod_class". Extensions may define classes with additional
589 behaviour, and may recognize additional class properties.
590\item[@"metaclass"] The name of the Sod metaclass for this class. In the
591 generated code, a class is itself an instance of another class -- its
592 \emph{metaclass}. The metaclass defines which slots the class will have,
593 which messages it will respond to, and what its behaviour will be when it
594 receives them. The property value must be an identifier naming a defined
595 subclass of @"SodClass". The default metaclass is @"SodClass".
596 %%% FIXME xref to theory
597\item[@"nick"] A nickname for the class, to be used to distinguish it from
598 other classes in various limited contexts. The property value must be an
599 identifier; the default is constructed by forcing the class name to
600 lower-case.
601\end{description}
602
603The class body consists of a sequence of @<class-item>s enclosed in braces.
604These items are discussed on the following sections.
605
68a620ab 606\subsubsection{Slot items}
1f7d590d
MW
607\begin{grammar}
608<slot-item> ::=
ea08dc56 609 @<declaration-specifier>^+ <list>$[\mbox{@<init-declarator>}]$ ";"
1f7d590d 610
0bc19f1c 611<init-declarator> ::= <simple-declarator> @["=" <initializer>@]
1f7d590d
MW
612\end{grammar}
613
614A @<slot-item> defines one or more slots. All instances of the class and any
615subclass will contain these slot, with the names and types given by the
616@<declaration-specifiers> and the @<declarators>. Slot declarators may not
bc7dff5c 617contain dotted names.
1f7d590d
MW
618
619It is not possible to declare a slot with function type: such an item is
620interpreted as being a @<message-item> or @<method-item>. Pointers to
621functions are fine.
622
623An @<initializer>, if present, is treated as if a separate
624@<initializer-item> containing the slot name and initializer were present.
625For example,
7119ea4e 626\begin{prog}
020b9e2b
MW
627[nick = eg] \\
628class Example : Super \{ \\ \ind
629 int foo = 17; \-\\
7119ea4e
MW
630\};
631\end{prog}
1f7d590d 632means the same as
7119ea4e 633\begin{prog}
020b9e2b
MW
634[nick = eg] \\
635class Example : Super \{ \\ \ind
636 int foo; \\
637 eg.foo = 17; \-\\
7119ea4e
MW
638\};
639\end{prog}
1f7d590d 640
68a620ab 641\subsubsection{Initializer items}
1f7d590d 642\begin{grammar}
391c5a34 643<initializer-item> ::= @["class"@] <list>$[\mbox{@<slot-initializer>}]$ ";"
1f7d590d 644
b2983f35 645<slot-initializer> ::= <dotted-name> @["=" <initializer>@]
1f7d590d 646
a888e3ac 647<initializer> :: <c-fragment>
1f7d590d
MW
648\end{grammar}
649
650An @<initializer-item> provides an initial value for one or more slots. If
651prefixed by @"class", then the initial values are for class slots (i.e.,
652slots of the class object itself); otherwise they are for instance slots.
653
bc7dff5c
MW
654The first component of the @<dotted-name> must be the nickname of one of the
655class's superclasses (including itself); the second must be the name of a
656slot defined in that superclass.
1f7d590d 657
b2983f35
MW
658An @|initarg| property may be set on an instance slot initializer (or a
659direct slot definition). See \xref{sec:concepts.lifecycle.birth} for the
660details. An initializer item must have either an @|initarg| property, or an
661initializer expression, or both.
662
663Each class may define at most one initializer item with an explicit
664initializer expression for a given slot.
665
666\subsubsection{Initarg items}
667\begin{grammar}
668<initarg-item> ::=
669 "initarg"
670 @<declaration-specifier>^+
671 <list>$[\mbox{@<init-declarator>}]$ ";"
672\end{grammar}
673
a42893dd
MW
674\subsubsection{Fragment items}
675\begin{grammar}
676<fragment-item> ::= <fragment-kind> "{" <c-fragment> "}"
677
678<fragment-kind> ::= "init" | "teardown"
679\end{grammar}
680
68a620ab 681\subsubsection{Message items}
1f7d590d
MW
682\begin{grammar}
683<message-item> ::=
391c5a34
MW
684 @<declaration-specifier>^+
685 <keyword-declarator>$[\mbox{@<identifier>}]$
686 @[<method-body>@]
1f7d590d
MW
687\end{grammar}
688
68a620ab 689\subsubsection{Method items}
1f7d590d
MW
690\begin{grammar}
691<method-item> ::=
391c5a34
MW
692 @<declaration-specifier>^+
693 <keyword-declarator>$[\mbox{@<dotted-name>}]$
ea08dc56 694 <method-body>
1f7d590d
MW
695
696<method-body> ::= "{" <c-fragment> "}" | "extern" ";"
697\end{grammar}
698
1f7d590d
MW
699%%%----- That's all, folks --------------------------------------------------
700
701%%% Local variables:
702%%% mode: LaTeX
703%%% TeX-master: "sod.tex"
704%%% TeX-PDF-mode: t
705%%% End: