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