src/Pure/Syntax/scan.ML
author wenzelm
Sat, 14 Nov 1998 13:24:20 +0100
changeset 5861 7536314d9a5f
parent 5048 2af6b01e7ab6
child 5869 b279a84ac11c
permissions -rw-r--r--
added unless, first;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     1
(*  Title:	Pure/Syntax/scan.ML
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     2
    ID:		$Id$
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     3
    Author:	Markus Wenzel and Tobias Nipkow, TU Muenchen
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     4
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     5
Generic scanners (for potentially infinite input).
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     6
*)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     7
4924
cf6bb75968c4 added :-- (dependent pair);
wenzelm
parents: 4919
diff changeset
     8
infix 5 -- :-- |-- --| ^^;
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
     9
infix 3 >>;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    10
infix 0 ||;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    11
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    12
signature BASIC_SCAN =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    13
sig
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
    14
  val !! : ('a * string option -> string) -> ('a -> 'b) -> 'a -> 'b
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    15
  val >> : ('a -> 'b * 'c) * ('b -> 'd) -> 'a -> 'd * 'c
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    16
  val || : ('a -> 'b) * ('a -> 'b) -> 'a -> 'b
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    17
  val -- : ('a -> 'b * 'c) * ('c -> 'd * 'e) -> 'a -> ('b * 'd) * 'e
4924
cf6bb75968c4 added :-- (dependent pair);
wenzelm
parents: 4919
diff changeset
    18
  val :-- : ('a -> 'b * 'c) * ('b -> 'c -> 'd * 'e) -> 'a -> ('b * 'd) * 'e
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    19
  val |-- : ('a -> 'b * 'c) * ('c -> 'd * 'e) -> 'a -> 'd * 'e
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    20
  val --| : ('a -> 'b * 'c) * ('c -> 'd * 'e) -> 'a -> 'b * 'e
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    21
  val ^^ : ('a -> string * 'b) * ('b -> string * 'c) -> 'a -> string * 'c
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    22
  val $$ : ''a -> ''a list -> ''a * ''a list
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    23
end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    24
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    25
signature SCAN =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    26
sig
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    27
  include BASIC_SCAN
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    28
  val fail: 'a -> 'b
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
    29
  val fail_with: ('a -> string) -> 'a -> 'b
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    30
  val succeed: 'a -> 'b -> 'a * 'b
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    31
  val one: ('a -> bool) -> 'a list -> 'a * 'a list
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    32
  val any: ('a -> bool) -> 'a list -> 'a list * 'a list
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    33
  val any1: ('a -> bool) -> 'a list -> 'a list * 'a list
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    34
  val optional: ('a -> 'b * 'a) -> 'b -> 'a -> 'b * 'a
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    35
  val option: ('a -> 'b * 'a) -> 'a -> 'b option * 'a
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    36
  val repeat: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    37
  val repeat1: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    38
  val max: ('a * 'a -> bool) -> ('b -> 'a * 'b) -> ('b -> 'a * 'b) -> 'b -> 'a * 'b
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    39
  val ahead: ('a -> 'b * 'c) -> 'a -> 'b * 'a
5861
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
    40
  val unless: ('a -> 'b * 'a) -> ('a -> 'c * 'd) -> 'a -> 'c * 'd
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
    41
  val first: ('a -> 'b) list -> 'a -> 'b
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    42
  val depend: ('a -> 'b -> ('c * 'd) * 'e) -> 'a * 'b -> 'd * ('c * 'e)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    43
  val lift: ('a -> 'b * 'c) -> 'd * 'a -> 'b * ('d * 'c)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    44
  val pass: 'a -> ('a * 'b -> 'c * ('d * 'e)) -> 'b -> 'c * 'e
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
    45
  val try: ('a -> 'b) -> 'a -> 'b
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    46
  val force: ('a -> 'b) -> 'a -> 'b
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
    47
  val prompt: string -> ('a -> 'b) -> 'a -> 'b
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
    48
  val finite': 'a * ('a -> bool) -> ('b * 'a list -> 'c * ('d * 'a list))
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
    49
    -> 'b * 'a list -> 'c * ('d * 'a list)
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
    50
  val finite: 'a * ('a -> bool) -> ('a list -> 'b * 'a list) -> 'a list -> 'b * 'a list
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    51
  val catch: ('a -> 'b) -> 'a -> 'b
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    52
  val error: ('a -> 'b) -> 'a -> 'b
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    53
  val source': string -> (string -> 'a -> 'b list * 'a) -> ('b list * 'a -> 'c) ->
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    54
    'b * ('b -> bool) -> ('d * 'b list -> 'e list * ('d * 'b list)) ->
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    55
    ('d * 'b list -> 'f * ('d * 'b list)) option -> 'd * 'a -> 'e list * ('d * 'c)
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    56
  val source: string -> (string -> 'a -> 'b list * 'a) -> ('b list * 'a -> 'c) ->
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    57
    'b * ('b -> bool) -> ('b list -> 'd list * 'b list) ->
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    58
    ('b list -> 'e * 'b list) option -> 'a -> 'd list * 'c
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
    59
  val single: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
    60
  val bulk: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    61
  type lexicon
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    62
  val dest_lexicon: lexicon -> string list list
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    63
  val make_lexicon: string list list -> lexicon
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    64
  val empty_lexicon: lexicon
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    65
  val extend_lexicon: lexicon -> string list list -> lexicon
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    66
  val merge_lexicons: lexicon -> lexicon -> lexicon
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    67
  val literal: lexicon -> string list -> string list * string list
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    68
end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    69
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    70
structure Scan: SCAN =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    71
struct
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    72
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    73
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    74
(** scanners **)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    75
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
    76
exception MORE of string option;	(*need more input (prompt)*)
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
    77
exception FAIL of string option;	(*try alternatives (reason of failure)*)
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
    78
exception ABORT of string;		(*dead end*)
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    79
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    80
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    81
(* scanner combinators *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    82
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    83
fun (scan >> f) xs = apfst f (scan xs);
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    84
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
    85
fun (scan1 || scan2) xs = scan1 xs handle FAIL _ => scan2 xs;
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    86
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
    87
(*dependent pairing*)
4924
cf6bb75968c4 added :-- (dependent pair);
wenzelm
parents: 4919
diff changeset
    88
fun (scan1 :-- scan2) xs =
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    89
  let
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    90
    val (x, ys) = scan1 xs;
4924
cf6bb75968c4 added :-- (dependent pair);
wenzelm
parents: 4919
diff changeset
    91
    val (y, zs) = scan2 x ys;
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    92
  in ((x, y), zs) end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    93
4924
cf6bb75968c4 added :-- (dependent pair);
wenzelm
parents: 4919
diff changeset
    94
fun (scan1 -- scan2) = scan1 :-- (fn _ => scan2);
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    95
fun (scan1 |-- scan2) = scan1 -- scan2 >> #2;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    96
fun (scan1 --| scan2) = scan1 -- scan2 >> #1;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    97
fun (scan1 ^^ scan2) = scan1 -- scan2 >> op ^;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    98
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
    99
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   100
(* generic scanners *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   101
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   102
fun fail _ = raise FAIL None;
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   103
fun fail_with msg_of xs = raise FAIL (Some (msg_of xs));
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   104
fun succeed y xs = (y, xs);
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   105
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
   106
fun one _ [] = raise MORE None
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   107
  | one pred (x :: xs) =
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   108
      if pred x then (x, xs) else raise FAIL None;
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   109
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
   110
fun $$ _ [] = raise MORE None
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   111
  | $$ a (x :: xs) =
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   112
      if a = x then (x, xs) else raise FAIL None;
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   113
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
   114
fun any _ [] = raise MORE None
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   115
  | any pred (lst as x :: xs) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   116
      if pred x then apfst (cons x) (any pred xs)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   117
      else ([], lst);
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   118
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   119
fun any1 pred = one pred -- any pred >> op ::;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   120
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   121
fun optional scan def = scan || succeed def;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   122
fun option scan = optional (scan >> Some) None;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   123
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   124
fun repeat scan xs = (scan -- repeat scan >> op :: || succeed []) xs;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   125
fun repeat1 scan = scan -- repeat scan >> op ::;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   126
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   127
fun max leq scan1 scan2 xs =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   128
  (case (option scan1 xs, option scan2 xs) of
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   129
    ((None, _), (None, _)) => raise FAIL None		(*looses FAIL msg!*)
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   130
  | ((Some tok1, xs'), (None, _)) => (tok1, xs')
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   131
  | ((None, _), (Some tok2, xs')) => (tok2, xs')
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   132
  | ((Some tok1, xs1'), (Some tok2, xs2')) =>
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   133
      if leq (tok2, tok1) then (tok1, xs1') else (tok2, xs2'));
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   134
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   135
fun ahead scan xs = (fst (scan xs), xs);
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   136
5861
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
   137
fun unless test scan =
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
   138
  ahead (option test) :-- (fn None => scan | _ => fail) >> #2;
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
   139
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
   140
fun first [] = fail
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
   141
  | first (scan :: scans) = scan || first scans;
7536314d9a5f added unless, first;
wenzelm
parents: 5048
diff changeset
   142
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   143
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   144
(* state based scanners *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   145
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   146
fun depend scan (st, xs) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   147
  let val ((st', y), xs') = scan st xs
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   148
  in (y, (st', xs')) end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   149
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   150
fun lift scan (st, xs) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   151
  let val (y, xs') = scan xs
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   152
  in (y, (st, xs')) end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   153
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   154
fun pass st scan xs =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   155
  let val (y, (_, xs')) = scan (st, xs)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   156
  in (y, xs') end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   157
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   158
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   159
(* exception handling *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   160
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   161
fun !! err scan xs = scan xs handle FAIL msg => raise ABORT (err (xs, msg));
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   162
fun try scan xs = scan xs handle MORE _ => raise FAIL None | ABORT _ => raise FAIL None;
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   163
fun force scan xs = scan xs handle MORE _ => raise FAIL None;
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
   164
fun prompt str scan xs = scan xs handle MORE None => raise MORE (Some str);
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   165
fun catch scan xs = scan xs handle ABORT msg => raise FAIL (Some msg);
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   166
fun error scan xs = scan xs handle ABORT msg => Library.error msg;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   167
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   168
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   169
(* finite scans *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   170
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
   171
fun finite' (stopper, is_stopper) scan (state, input) =
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   172
  let
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   173
    fun lost () = raise ABORT "Scanner bug: lost stopper of finite scan!";
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   174
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   175
    fun stop [] = lost ()
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   176
      | stop lst =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   177
          let val (xs, x) = split_last lst
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
   178
          in if is_stopper x then ((), xs) else lost () end;
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   179
  in
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
   180
    if exists is_stopper input then
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   181
      raise ABORT "Stopper may not occur in input of finite scan!"
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   182
    else (force scan --| lift stop) (state, input @ [stopper])
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   183
  end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   184
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   185
fun finite stopper scan xs =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   186
  let val (y, ((), xs')) = finite' stopper (lift scan) ((), xs)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   187
  in (y, xs') end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   188
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   189
4903
0f56199a8d97 improved source: state-based;
wenzelm
parents: 4756
diff changeset
   190
(* infinite scans -- draining state-based source *)
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   191
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   192
fun drain def_prmpt get stopper scan ((state, xs), src) =
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   193
  (scan (state, xs), src) handle MORE prmpt =>
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   194
    (case get (if_none prmpt def_prmpt) src of
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   195
      ([], _) => (finite' stopper scan (state, xs), src)
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   196
    | (xs', src') => drain def_prmpt get stopper scan ((state, xs @ xs'), src'));
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   197
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   198
fun source' def_prmpt get unget stopper scanner opt_recover (state, src) =
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   199
  let
4968
c68a9c510c90 made SML/NJ happy;
wenzelm
parents: 4958
diff changeset
   200
    fun drain_with scan = drain def_prmpt get stopper scan;
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   201
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   202
    fun drain_loop recover inp =
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   203
      drain_with (catch scanner) inp handle FAIL msg =>
5048
2af6b01e7ab6 replaced warning by error_msg;
wenzelm
parents: 4968
diff changeset
   204
        (error_msg (if_none msg "Syntax error."); error_msg "Trying to recover ...";
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   205
          drain_loop recover (apfst snd (drain_with recover inp)));
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
   206
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   207
    val ((ys, (state', xs')), src') =
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   208
      (case (get def_prmpt src, opt_recover) of
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   209
        (([], s), _) => (([], (state, [])), s)
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   210
      | ((xs, s), None) => drain_with (error scanner) ((state, xs), s)
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   211
      | ((xs, s), Some scan) => drain_loop scan ((state, xs), s));
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
   212
  in
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   213
    (ys, (state', unget (xs', src')))
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
   214
  end;
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   215
4958
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   216
fun source def_prmpt get unget stopper scan opt_recover src =
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   217
  let val (ys, ((), src')) =
ad2acb8d2db4 added catch: ('a -> 'b) -> 'a -> 'b;
wenzelm
parents: 4953
diff changeset
   218
    source' def_prmpt get unget stopper (lift scan) (apsome lift opt_recover) ((), src)
4953
78ff4a45a822 source vs. source';
wenzelm
parents: 4937
diff changeset
   219
  in (ys, src') end;
78ff4a45a822 source vs. source';
wenzelm
parents: 4937
diff changeset
   220
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
   221
fun single scan = scan >> (fn x => [x]);
4937
e3132cf1d68e improved finite scans: more abstract stopper;
wenzelm
parents: 4924
diff changeset
   222
fun bulk scan = scan -- repeat (try scan) >> (op ::);
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   223
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   224
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   225
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   226
(** datatype lexicon **)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   227
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   228
datatype lexicon =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   229
  Empty |
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   230
  Branch of string * string list * lexicon * lexicon * lexicon;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   231
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   232
val no_literal = [];
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   233
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   234
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   235
(* dest_lexicon *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   236
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   237
fun dest_lexicon Empty = []
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   238
  | dest_lexicon (Branch (_, [], lt, eq, gt)) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   239
      dest_lexicon lt @ dest_lexicon eq @ dest_lexicon gt
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   240
  | dest_lexicon (Branch (_, cs, lt, eq, gt)) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   241
      dest_lexicon lt @ [cs] @ dest_lexicon eq @ dest_lexicon gt;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   242
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   243
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   244
(* empty, extend, make, merge lexicons *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   245
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   246
val empty_lexicon = Empty;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   247
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   248
fun extend_lexicon lexicon chrss =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   249
  let
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   250
    fun ext (lex, chrs) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   251
      let
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   252
	fun add (Branch (d, a, lt, eq, gt)) (chs as c :: cs) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   253
	      if c < d then Branch (d, a, add lt chs, eq, gt)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   254
	      else if c > d then Branch (d, a, lt, eq, add gt chs)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   255
	      else Branch (d, if null cs then chrs else a, lt, add eq cs, gt)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   256
	  | add Empty [c] =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   257
	      Branch (c, chrs, Empty, Empty, Empty)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   258
	  | add Empty (c :: cs) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   259
	      Branch (c, no_literal, Empty, add Empty cs, Empty)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   260
	  | add lex [] = lex;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   261
      in add lex chrs end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   262
  in foldl ext (lexicon, chrss \\ dest_lexicon lexicon) end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   263
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   264
val make_lexicon = extend_lexicon empty_lexicon;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   265
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   266
fun merge_lexicons lex1 lex2 =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   267
  let
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   268
    val chss1 = dest_lexicon lex1;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   269
    val chss2 = dest_lexicon lex2;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   270
  in
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   271
    if chss2 subset chss1 then lex1
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   272
    else if chss1 subset chss2 then lex2
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   273
    else extend_lexicon lex1 chss2
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   274
  end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   275
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   276
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   277
(* scan literal *)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   278
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   279
fun literal lex chrs =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   280
  let
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   281
    fun lit Empty res _ = res
4756
329c09e15991 added try, single, many;
wenzelm
parents: 4702
diff changeset
   282
      | lit (Branch _) _ [] = raise MORE None
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   283
      | lit (Branch (d, a, lt, eq, gt)) res (chs as c :: cs) =
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   284
	  if c < d then lit lt res chs
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   285
	  else if c > d then lit gt res chs
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   286
	  else lit eq (if a = no_literal then res else Some (a, cs)) cs;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   287
  in
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   288
    (case lit lex None chrs of
4919
9397b1446cdb added fail_with and adapted !!;
wenzelm
parents: 4903
diff changeset
   289
      None => raise FAIL None
4702
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   290
    | Some res => res)
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   291
  end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   292
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   293
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   294
end;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   295
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   296
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   297
structure BasicScan: BASIC_SCAN = Scan;
ffbaf431665d Generic scanners (for potentially infinite input) -- replaces Scanner;
wenzelm
parents:
diff changeset
   298
open BasicScan;