doc/: Actually write documentation.
[sod] / doc / parsing.tex
CommitLineData
1f7d590d
MW
1%%% -*-latex-*-
2%%%
3%%% Description of the parsing machinery
4%%%
5%%% (c) 2015 Straylight/Edgeware
6%%%
7
8%%%----- Licensing notice ---------------------------------------------------
9%%%
10%%% This file is part of the Sensble Object Design, an object system for C.
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{Parsing} \label{ch:parsing}
27
28%%%--------------------------------------------------------------------------
29\section{The parser protocol} \label{sec:parsing.proto}
30
31For the purpose of Sod's parsing library, \emph{parsing} is the process of
32reading a sequence of input items, in order, and computing an output value.
33
34A \emph{parser} is an expression which consumes zero or more input items and
35returns three values: a \emph{result}, a \emph{success flag}, and a
36\emph{consumed flag}. The two flags are (generalized) booleans. If the
37success flag is non-nil, then the parser is said to have \emph{succeeded},
38and the result is the parser's output. If the success flag is nil then the
39parser is said to have \emph{failed}, and the result is a list of
40\emph{indicators}. Finally, the consumed flag is non-nil if the parser
41consumed any input items.
42
fcb6c0fb
MW
43\begin{describe}{fun}{combine-parser-failures @<failures> @> @<list>}
44\end{describe}
45
1f7d590d 46%%%--------------------------------------------------------------------------
fcb6c0fb
MW
47\section{File locations} \label{sec:parsing.floc}
48
49\begin{describe}{cls}{file-location}
50\end{describe}
51
52\begin{describe}{fun}{file-location-p @<object> @> @<generalized-boolean>}
53\end{describe}
54
55\begin{describe}{fun}
56 {make-file-location @<filename> \&optional @<line> @<column>
57 @> @<file-location>}
58\end{describe}
59
60\begin{describe*}
61 {\dhead{fun}{file-location-filename @<floc> @> @<string-or-nil>}
62 \dhead{fun}{file-location-line @<floc> @> @<fixnum-or-nil>}
63 \dhead{fun}{file-location-column @<floc> @> @<fixnum-or-nil>}}
64\end{describe*}
65
66\begin{describe}{gf}{file-location @<object> @> @<floc>}
67 \begin{describe}{meth}{file-location (@<floc> file-location) @> @<floc>}
68 \end{describe}
69 \begin{describe}{meth}{file-location (@<stream> stream) @> @<floc>}
70 \end{describe}
71 \begin{describe}{meth}{file-location (@<any> t) @> @<floc>}
72 \end{describe}
73\end{describe}
74
75\begin{describe}{cls}{condition-with-location (condition) \&key :location}
76\end{describe}
77
78\begin{describe}{meth}
79 {file-location (@<condition> condition-with-location) @> @<floc>}
80\end{describe}
81
82\begin{describe*}
83 {\quad\=\quad\=\kill
84 \dhead{cls}
85 {error-with-location (condition-with-location error) \\ \>
86 \&key :location}
87 \dhead{cls}
88 {warning-with-location (condition-with-location warning) \\ \>
89 \&key :location}
90 \dhead{cls}
91 {enclosing-error-with-location
92 (enclosing-error-with-location error) \\ \>
93 \&key :condition :location}
94 \dhead{cls}
95 {enclosing-warning-with-location
96 (enclosing-condition-with-location warning) \\ \>
97 \&key :condition :location}
98 \dhead{cls}
99 {simple-condition-with-location
100 (condition-with-location simple-condition) \\ \>
101 \&key :format-control :format-arguments :location}
102 \dhead{cls}
103 {simple-error-with-location
104 (error-with-location simple-error) \\ \>
105 \&key :format-control :format-arguments :location}
106 \dhead{cls}
107 {simple-warning-with-location
108 (warning-with-location simple-warning) \\ \>
109 \&key :format-control :format-arguments :location}}
110\end{describe*}
111
112\begin{describe}{fun}
113 {make-condition-with-location @<default-type> @<floc>
114 @<datum> \&rest @<arguments>
115 \nlret @<condition-with-location>}
116\end{describe}
117
118\begin{describe*}
119 {\dhead{fun}{error-with-location @<floc> @<datum> \&rest @<arguments>}
120 \dhead{fun}{cerror-with-location @<floc> @<continue-string>
121 @<datum> \&rest @<arguments>}
122 \dhead{fun}{cerror*-with-location @<floc> @<datum> \&rest @<arguments>}
123 \dhead{fun}{warn-with-location @<floc> @<datum> \&rest @<arguments>}}
124\end{describe*}
125
126\begin{describe}{mac}
127 {with-default-error-location (@<floc>) @<body-form>^* @> @<value>^*}
128\end{describe}
129
130\begin{describe}{mac}
131 {count-and-report-errors () @<body-form>^*
132 @> @<value> @<n-errors> @<n-warnings>}
133\end{describe}
1f7d590d
MW
134
135%%%--------------------------------------------------------------------------
136\section{Scanners} \label{sec:parsing.scanner}
137
138A \emph{scanner} is an object which keeps track of a parser's progress as it
139works through its input. There's no common base class for scanners: a
140scanner is simply any object which implements the scanner protocol described
141here.
142
143A scanner maintains a sequence of items to read. It can step forwards
144through the items, one at a time, until it reaches the end (if, indeed, the
145sequence is finite, which it needn't be). Until that point, there is a
146current item, though there's no protocol for accessing it at this level
147because the nature of the items is left unspecified.
148
149Some scanners support an additional \emph{place-capture} protocol which
150allows rewinding the scanner to an earlier point in the input so that it can
151be scanned again.
152
153\subsection{Basic scanner protocol} \label{sec:parsing.scanner.basic}
154
155The basic protocol supports stepping the scanner forward through its input
156sequence, and detecting the end of the sequence.
157
158\begin{describe}{gf}{scanner-step @<scanner>}
159 Advance the @<scanner> to the next item, which becomes current.
160
161 It is an error to step the scanner if the scanner is at end-of-file.
162\end{describe}
163
164\begin{describe}{gf}{scanner-at-eof-p @<scanner> @> @<generalized-boolean>}
165 Return non-nil if the scanner is at end-of-file, i.e., there are no more
166 items to read.
167
168 If nil is returned, there is a current item, and it is safe to step the
169 scanner again; otherwise, it is an error to query the current item or to
170 step the scanner.
171\end{describe}
172
173\subsection{Place-capture scanner protocol} \label{sec:parsing.scanner.place}
174
175The place-capture protocol allows rewinding to an earlier point in the
176sequence. Not all scanners support the place-capture protocol.
177
178To rewind a scanner to a particular point, that point must be \emph{captured}
179as a \emph{place} when it's current -- so you must know in advance that this
180is an interesting place that's worth capturing. The type of place returned
181depends on the type of scanner. Given a captured place, the scanner can be
182rewound to the position held in it.
183
184Depending on how the scanner works, holding onto a captured place might
185consume a lot of memory or case poor performance. For example, if the
186scanner is reading from an input stream, having a captured place means that
187data from that point on must be buffered in case the program needs to rewind
188the scanner and read that data again. Therefore it's possible to
189\emph{release} a place when it turns out not to be needed any more.
190
191\begin{describe}{gf}{scanner-capture-place @<scanner> @> @<place>}
192 Capture the @<scanner>'s current position as a place, and return the place.
193\end{describe}
194
195\begin{describe}{gf}{scanner-restore-place @<scanner> @<place>}
196 Rewind the @<scanner> to the state it was in when @<place> was captured.
197 In particular, the item that was current when the @<place> was captured
198 becomes current again.
199
200 It is an error to restore a @<place> that has been released, or if the
201 @<place> wasn't captured from the @<scanner>.
202\end{describe}
203
204\begin{describe}{gf}{scanner-release-place @<scanner> @<place>}
205 Release the @<place>, to avoid having to maintaining the ability to restore
206 it after it's not needed any more..
207
208 It is an error if the @<place> wasn't captured from the @<scanner>.
209\end{describe}
210
211\begin{describe}{mac}
212 {with-scanner-place (@<place> @<scanner>) @<body-form>^* @> @<value>^*}
213 Capture the @<scanner>'s current position as a place, evaluate the
214 @<body-form>s as an implicit progn with the variable @<place> bound to the captured
215 place. When control leaves the @<body-form>s, the place is released. The return
216 values are the values of the final @<body-form>.
217\end{describe}
218
219\subsection{Scanner file-location protocol} \label{sec:parsing.scanner.floc}
220
fcb6c0fb
MW
221Some scanners participate in the file-location protocol
222(\xref{sec:parsing.floc}). They implement a method on @|file-location| which
223collects the necessary information using scanner-specific functions described
224here.
1f7d590d
MW
225
226\begin{describe}{fun}{scanner-file-location @<scanner> @> @<file-location>}
227 Return a @|file-location| object describing the current position of the
228 @<scanner>.
229
230 This calls the @|scanner-filename|, @|scanner-line| and @|scanner-column|
231 generic functions on the scanner, and uses these to fill in an appropriate
232 @|file-location|.
233
234 Since there are default methods on these generic functions, it is not an
235 error to call @|scanner-file-location| on any kind of value, but it might
236 not be very useful. This function exists to do the work of appropriately
237 specialized methods on @|file-location|.
238\end{describe}
239
fcb6c0fb
MW
240\begin{describe*}
241 {\dhead{gf}{scanner-filename @<scanner> @> @<string>}
242 \dhead{gf}{scanner-line @<scanner> @> @<integer>}
243 \dhead{gf}{scanner-column @<scanner> @> @<integer>}}
244 Return the filename, line and column components of the @<scanner>'s current
245 position, for use in assembling a @<file-location>: see the
246 @|scanner-file-location| function.
1f7d590d 247
fcb6c0fb
MW
248 There are default methods on all three generic functions which simply
249 return nil.
250\end{describe*}
1f7d590d
MW
251
252\subsection{Character scanners} \label{sec:parsing.scanner.char}
253
254Character scanners are scanners which read sequences of characters.
255
256\begin{describe}{cls}{character-scanner () \&key}
257 Base class for character scanners. This provides some very basic
258 functionality.
259
260 Not all character scanners are subclasses of @|character-scanner|.
261\end{describe}
262
263\begin{describe}{gf}{scanner-current-char @<scanner> @> @<character>}
264 Returns the current character.
265\end{describe}
266
267\begin{describe}{gf}{scanner-unread @<scanner> @<character>}
268 Rewind the @<scanner> by one step. The @<chararacter> must be the previous
269 current character, and becomes the current character again. It is an error
270 if: the @<scanner> has reached end-of-file; the @<scanner> is never been
271 stepped; or @<character> was not the previous current character.
272\end{describe}
273
274\begin{describe}{gf}
275 {scanner-interval @<scanner> @<place-a> \&optional @<place-b>
276 @> @<string>}
277 Return the characters in the @<scanner>'s input from @<place-a> up to (but
278 not including) @<place-b>.
279
280 The characters are returned as a string. If @<place-b> is omitted, return
281 the characters up to (but not including) the current position. It is an
282 error if @<place-b> precedes @<place-a> or they are from different
283 scanners.
284
285 This function is a character-scanner-specific extension to the
286 place-capture protocol; not all character scanners implement the
287 place-capture protocol, and some that do may not implement this function.
288\end{describe}
289
290\subsubsection{Stream access to character scanners}
291Sometimes it can be useful to apply the standard Lisp character input
292operations to the sequence of characters held by a character scanner.
293
294\begin{describe}{gf}{make-scanner-stream @<scanner> @> @<stream>}
295 Returns a fresh input @|stream| object which fetches input characters from
296 the character scanner object @<scanner>. Reading characters from the
297 stream steps the scanner. The stream will reach end-of-file when the
298 scanner reports end-of-file. If the scanner implements the file-location
299 protocol then reading from the stream will change the file location in an
300 appropriate manner.
301
302 This is mostly useful for applying standard Lisp stream functions, most
303 particularly the @|read| function, in the middle of a parsing operation.
304\end{describe}
305
306\begin{describe}{cls}{character-scanner-stream (stream) \&key :scanner}
307 A Common Lisp input @|stream| object which works using the character
308 scanner protocol. Any @<scanner> which implements the base scanner and
309 character scanner protocols is suitable. See @|make-scanner-stream|.
310\end{describe}
311
312\subsection{String scanners} \label{sec:parsing.scanner.string}
313
314A \emph{string scanner} is a simple kind of character scanner which reads
315input from a string object. String scanners implement the character scanner
316and place-capture protocols.
317
318\begin{describe}{cls}{string-scanner}
319 The class of string scanners. The @|string-scanner| class is not a
320 subclass of @|character-scanner|.
321\end{describe}
322
323\begin{describe}{fun}{string-scanner-p @<value> @> @<generalized-boolean>}
324 Return non-nil if @<value> is a @|string-scanner| object; otherwise return
325 nil.
326\end{describe}
327
328\begin{describe}{fun}
329 {make-string-scanner @<string> \&key :start :end @> @<string-scanner>}
330 Construct and return a fresh @|string-scanner| object. The new scanner
331 will read characters from @<string>, starting at index @<start> (which
332 defaults to zero), and continuing until it reaches index @<end> (defaults
333 to the end of the @<string>).
334\end{describe}
335
336\subsection{Character buffer scanners} \label{sec:parsing.scanner.charbuf}
337
338A \emph{character buffer scanner}, or \emph{charbuf scanner} for short, is an
339efficient scanner for reading characters from an input stream. Charbuf
340scanners implements the basic scanner, character buffer, place-capture, and
341file-location protocols.
342
343\begin{describe}{cls}
344 {charbuf-scanner (character-scanner)
345 \&key :stream :filename :line :column}
346 The class of charbuf scanners. The scanner will read characters from
347 @<stream>. Charbuf scanners implement the file-location protocol: the
348 initial location is set from the given @<filename>, @<line> and @<column>;
349 the scanner will update the location as it reads its input.
350\end{describe}
351
352\begin{describe}{cls}{charbuf-scanner-place}
353 The class of place objects captured by a charbuf scanner.
354\end{describe}
355
356\begin{describe}{fun}
357 {charbuf-scanner-place-p @<value> @> @<generalized-boolean>}
358 Type predicate for charbuf scanner places: returns non-nil if @<value> is a
359 place captured by a charbuf scanner, and nil otherwise.
360\end{describe}
361
362\begin{describe}{gf}
363 {charbuf-scanner-map @<scanner> @<func> \&optional @<fail>
364 \nlret @<result> @<successp> @<consumedp>}
365 Read characters from the @<scanner>'s buffers.
366
367 This is intended to be an efficient and versatile interface for reading
368 characters from a scanner in bulk. The function @<func> is invoked
369 repeatedly, as if by
370 \begin{prog}
371 (multiple-value-bind (@<donep> @<used>) \\ \ind\ind
372 (funcall @<func> @<buf> @<start> @<end>) \- \\
373 \textrm\ldots)
374 \end{prog}
375 The argument @<buf> is a simple string; @<start> and @<end> are two
376 nonnegative fixnums, indicating that the subsequence of @<buf> between
377 @<start> (inclusive) and @<end> (exclusive) should be processed. If
378 @<func>'s return value @<donep> is nil then @<used> is ignored: the
379 function has consumed the entire buffer and wishes to read more. If
380 @<donep> is non-nil, then it must be a fixnum such that $@<start> \le
381 @<used> \le @<end>$: the function has consumed the buffer as far as @<used>
382 (exclusive) and has completed successfully.
383
384 If end-of-file is encountered before @<func> completes successfully then it
385 fails: the @<fail> function is called with no arguments, and is expected to
386 return two values. If omitted, @<fail> defaults to
387 \begin{prog}
388 (lambda () \\ \ind
389 (values nil nil))%
390 \end{prog}
391
392 The @|charbuf-scanner-map| function returns three values. The first value
393 is the non-nil @<donep> value returned by @<func> if @|charbuf-scanner-map|
394 succeeded, or the first value returned by @<fail>; the second value is @|t|
395 on success, or the second value returned by @<fail>; the third value is
396 non-nil if @<func> consumed any input, i.e., it returned with @<donep> nil
397 at least once, or with $@<used> > @<start>$.
398\end{describe}
399
400\subsection{Token scanners} \label{sec:parsing.scanner.token}
401
402\begin{describe}{cls}
403 {token-scanner () \&key :filename (:line 1) (:column 0)}
404\end{describe}
405
406\begin{describe}{gf}{token-type @<scanner> @> @<type>}
407\end{describe}
408
409\begin{describe}{gf}{token-value @<scanner> @> @<value>}
410\end{describe}
411
412\begin{describe}{gf}{scanner-token @<scanner> @> @<type> @<value>}
413\end{describe}
414
415\begin{describe}{ty}{token-scanner-place}
416\end{describe}
417
418\begin{describe}{fun}
419 {token-scanner-place-p @<value> @> @<generalized-boolean>}
420\end{describe}
421
422\subsection{List scanners}
423
424\begin{describe}{ty}{list-scanner}
425\end{describe}
426
427\begin{describe}{fun}{list-scanner-p @<value> @> @<generalized-boolean>}
428\end{describe}
429
430\begin{describe}{fun}{make-list-scanner @<list> @> @<list-scanner>}
431\end{describe}
432
433%%%--------------------------------------------------------------------------
fcb6c0fb 434\section{Parsing syntax}
1f7d590d 435
fcb6c0fb
MW
436\begin{describe}{gf}{expand-parser-spec @<context> @<spec> @> @<form>}
437\end{describe}
438
439\begin{describe}{gf}
440 {expand-parser-form @<context> @<head> @<tail> @> @<form>}
441\end{describe}
442
443\begin{describe}{gf}{wrap-parser @<context> @<form> @> @<wrapped-form>}
444\end{describe}
445
446\begin{describe}{mac}
447 {defparse @<name> (@[[ :context (@<var> @<context-class>) @]]
448 @<destructuring-lambda-list-item>^*) \\ \ind
449 @<body-form>^* \-
450 \nlret @<name>}
451\end{describe}
452
453\begin{describe}{mac}
454 {with-parser-context
455 (@<context-class> @{ @<init-keyword> @<value> @}^*) \\ \ind
456 @<body-form>^* \-
457 \nlret @<value>^*}
458\end{describe}
459
460\begin{describe}{lmac}
461 {parse @<parser> @> @<result> @<success-flag> @<consumed-flag>}
462\end{describe}
463
464\begin{describe}{gf}{parser-at-eof-p @<context> @> @<form>}
465\end{describe}
466
467\begin{describe}{gf}{parser-step @<context> @> @<form>}
468\end{describe}
469
470\begin{describe}{sym}{it}
471\end{describe}
472
473\begin{describe}{mac}
474 {if-parse (@[[ \=:result @<result-var> @!
475 :expected @<expected-var> @! \+ \\
476 :consumedp @<consumed-var> @]]) \- \\ \ind\ind
477 @<parser> \- \\
478 @<consequent> \\
479 @[@<alternatve>@] \-
480 \nlret @<value>^*}
481\end{describe}
482
483\begin{describe}{mac}
484 {when-parse (@[@<result-var>@]) @<parser> \\ \ind
485 @<body-form>^* \-
486 \nlret @<value>^*}
487\end{describe}
488
489\begin{describe}{mac}
490 {cond-parse (@[[ \=:result @<result-var> @!
491 :expected @<expected-var> @! \+ \\
492 :consumedp @<consumed-var> @]]) \- \\ \ind
493 @{ (@<parser> @<form>^*) @}^* \-
494 \nlret @<value>^*}
495\end{describe}
496
497\begin{describe}{parse}{:eof}
498\end{describe}
499
500\begin{describe}{parseform}{lisp @<form>^*}
501\end{describe}
502
503\begin{describe}{parseform}{label @<parser>}
504\end{describe}
505
506\begin{describe}{parse}{t}
507\end{describe}
508
509\begin{describe}{parseform}{t @<value>}
510\end{describe}
511
512\begin{describe}{parse}{nil}
513\end{describe}
514
515\begin{describe}{parseform}{nil @<indicator>}
516\end{describe}
517
518\begin{describe}{parseform}{when @<cond> @<parser>}
519\end{describe}
520
521\begin{describe}{parseform}
522 {seq (@{ @<atomic-parser-spec> @! (@[@<var>@] @<parser>) @}^*) \\ \ind
523 @<body-form>^*}
524\end{describe}
525
526\begin{describe}{parseform}{and @<parser>^*}
527\end{describe}
528
529\begin{describe}{parseform}{or @<parser>^*}
530\end{describe}
531
532\begin{describe}{parseform}{? @<parser> @[@<default>@]}
533\end{describe}
534
535\begin{describe}{parseform}
536 {many (\=@<accumulator-var> @<init-form> @<update-form> \+ \\
537 @[[ \=:new @<new-var> @! :final @<final-form> @! \+ \\
538 :min @<minimum> @! :max @<maximum> @! \\
539 :commitp @<commitp> @]]) \-\- \\ \ind
540 @<item-parser> @[@<sep-parser>@]}
541\end{describe}
542
543\begin{describe}{parseform}
544 {list (@[[ :min @<minimum> @! :max @<maximum> @!
545 :commitp @<commitp> @]])\\ \ind
546 @<item-parser> @[@<sep-parser>@]}
547\end{describe}
548
549\begin{describe}{parseform}
550 {skip-many (@[[ :min @<minimum> @! :max @<maximum> @!
551 :commitp @<commitp> @]])\\ \ind
552 @<item-parser> @[@<sep-parser>@]}
553\end{describe}
554
555\begin{describe}{fun}{call-pluggable-parser @<symbol> \&rest @<args>}
556\end{describe}
557
558\begin{describe}{parseform}{plug @<symbol> @<arg>^*}
559\end{describe}
560
561\begin{describe}{fun}
562 {pluggable-parser-add @<symbol> @<tag> @<parser-function>}
563\end{describe}
564
565\begin{describe}{mac}
566 {define-pluggable-parser @<symbol> @<tag> @<lambda-list> @<body-form>^*}
567\end{describe}
568
569\begin{describe}{gf}{parser-capture-place @<context> @> @<form>}
570\end{describe}
571
572\begin{describe}{gf}{parser-restore-place @<context> @<place> @> @<form>}
573\end{describe}
574
575\begin{describe}{gf}{parser-release-place @<context> @<place> @> @<form>}
576\end{describe}
577
578\begin{describe}{gf}
579 {parser-places-must-be-released-p @<context> @> @<generalized-boolean>>}
580\end{describe}
581
582\begin{describe}{mac}
583 {with-parser-place (@<place-var> @<context>) @<body-form>^*}
584\end{describe}
585
586\begin{describe}{parseform}{peek @<parser>}
587\end{describe}
588
589\begin{describe}{cls}{character-parser-context () \&key}
590\end{describe}
591
592\begin{describe}{gf}{parser-current-char @<context> @> @<form>}
593\end{describe}
594
595\begin{describe}{parseform}
596 {if-char (@[@<result-var>@]) @<condition> @<consequent> @<alternative>}
597\end{describe}
598
599\begin{describe}{parseform}{char @<character>}
600\end{describe}
601
602\begin{describe}[char]{parse}{@<character>}
603\end{describe}
604
605\begin{describe}[string]{parse}{@<string>}
606\end{describe}
607
608\begin{describe}{parse}{:any}
609\end{describe}
610
611\begin{describe}{parseform}{satisfies @<predicate>}
612\end{describe}
613
614\begin{describe}{parseform}{not @<character>}
615\end{describe}
616
617\begin{describe}{parseform}{filter @<predicate>}
618\end{describe}
619
620\begin{describe}{parse}{:whitespace}
621\end{describe}
622
623\begin{describe}{cls}{token-parser-context () \&key}
624\end{describe}
625
626\begin{describe}{gf}{parser-token-type @<context> @> @<form>}
627\end{describe}
628
629\begin{describe}{gf}{parser-token-value @<context> @> @<form>}
630\end{describe}
631
632\begin{describe}{parseform}{token @<type> @[@<value>@] @[:peekp @<peek>@]}
633\end{describe}
634
635\begin{describe}[atom]{parse}{@<atom>}
636\end{describe}
637
638\begin{describe}[string]{parse}{@<string>}
639\end{describe}
640
641\begin{describe}{cls}{scanner-context () \&key :scanner}
642\end{describe}
643
644\begin{describe}{gf}{parse-scanner @<context> @> @<symbol>}
645\end{describe}
646
647\begin{describe}{cls}
648 {character-scanner-context (scanner-context character-parser-context)
649 \&key :scanner}
650\end{describe}
651
652\begin{describe}{cls}
653 {token-scanner-context (scanner-context token-parser-context)
654 \&key :scanner}
655\end{describe}
656
657%% FIXME parser-expr
658
659%%%-------------------------------------------------------------------------
1f7d590d
MW
660\section{Lexical analyser}
661
662%%%----- That's all, folks --------------------------------------------------
663
664%%% Local variables:
665%%% mode: LaTeX
666%%% TeX-master: "sod.tex"
667%%% TeX-PDF-mode: t
668%%% End: