Fix: merge conflict
[myslice.git] / third-party / codemirror-3.15 / mode / scheme / index.html
1 <!doctype html>
2 <html>
3   <head>
4     <meta charset="utf-8">
5     <title>CodeMirror: Scheme mode</title>
6     <link rel="stylesheet" href="../../lib/codemirror.css">
7     <script src="../../lib/codemirror.js"></script>
8     <script src="scheme.js"></script>
9     <style>.CodeMirror {background: #f8f8f8;}</style>
10     <link rel="stylesheet" href="../../doc/docs.css">
11   </head>
12   <body>
13     <h1>CodeMirror: Scheme mode</h1>
14     <form><textarea id="code" name="code">
15 ; See if the input starts with a given symbol.
16 (define (match-symbol input pattern)
17   (cond ((null? (remain input)) #f)
18         ((eqv? (car (remain input)) pattern) (r-cdr input))
19         (else #f)))
20
21 ; Allow the input to start with one of a list of patterns.
22 (define (match-or input pattern)
23   (cond ((null? pattern) #f)
24         ((match-pattern input (car pattern)))
25         (else (match-or input (cdr pattern)))))
26
27 ; Allow a sequence of patterns.
28 (define (match-seq input pattern)
29   (if (null? pattern)
30       input
31       (let ((match (match-pattern input (car pattern))))
32         (if match (match-seq match (cdr pattern)) #f))))
33
34 ; Match with the pattern but no problem if it does not match.
35 (define (match-opt input pattern)
36   (let ((match (match-pattern input (car pattern))))
37     (if match match input)))
38
39 ; Match anything (other than '()), until pattern is found. The rather
40 ; clumsy form of requiring an ending pattern is needed to decide where
41 ; the end of the match is. If none is given, this will match the rest
42 ; of the sentence.
43 (define (match-any input pattern)
44   (cond ((null? (remain input)) #f)
45         ((null? pattern) (f-cons (remain input) (clear-remain input)))
46         (else
47          (let ((accum-any (collector)))
48            (define (match-pattern-any input pattern)
49              (cond ((null? (remain input)) #f)
50                    (else (accum-any (car (remain input)))
51                          (cond ((match-pattern (r-cdr input) pattern))
52                                (else (match-pattern-any (r-cdr input) pattern))))))
53            (let ((retval (match-pattern-any input (car pattern))))
54              (if retval
55                  (f-cons (accum-any) retval)
56                  #f))))))
57 </textarea></form>
58     <script>
59       var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
60     </script>
61
62     <p><strong>MIME types defined:</strong> <code>text/x-scheme</code>.</p>
63
64   </body>
65 </html>