author | haftmann |
Mon, 22 Oct 2012 19:02:36 +0200 | |
changeset 49971 | 8b50286c36d3 |
parent 48927 | ef462b5558eb |
child 51627 | 589daaf48dba |
permissions | -rw-r--r-- |
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
35838
diff
changeset
|
1 |
(* Title: Pure/Isar/parse.ML |
5826 | 2 |
Author: Markus Wenzel, TU Muenchen |
3 |
||
4 |
Generic parsers for Isabelle/Isar outer syntax. |
|
5 |
*) |
|
6 |
||
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
35838
diff
changeset
|
7 |
signature PARSE = |
5826 | 8 |
sig |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
9 |
type 'a parser = Token.T list -> 'a * Token.T list |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
10 |
type 'a context_parser = Context.generic * Token.T list -> 'a * (Context.generic * Token.T list) |
44357 | 11 |
val group: (unit -> string) -> (Token.T list -> 'a) -> Token.T list -> 'a |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
12 |
val !!! : (Token.T list -> 'a) -> Token.T list -> 'a |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
13 |
val !!!! : (Token.T list -> 'a) -> Token.T list -> 'a |
12047 | 14 |
val triple1: ('a * 'b) * 'c -> 'a * 'b * 'c |
15 |
val triple2: 'a * ('b * 'c) -> 'a * 'b * 'c |
|
16 |
val triple_swap: ('a * 'b) * 'c -> ('a * 'c) * 'b |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
17 |
val not_eof: Token.T parser |
42326 | 18 |
val position: 'a parser -> ('a * Position.T) parser |
42657 | 19 |
val source_position: 'a parser -> (Symbol_Pos.text * Position.T) parser |
42326 | 20 |
val inner_syntax: 'a parser -> string parser |
29310 | 21 |
val command: string parser |
22 |
val keyword: string parser |
|
23 |
val short_ident: string parser |
|
24 |
val long_ident: string parser |
|
25 |
val sym_ident: string parser |
|
26 |
val minus: string parser |
|
27 |
val term_var: string parser |
|
28 |
val type_ident: string parser |
|
29 |
val type_var: string parser |
|
30 |
val number: string parser |
|
40290
47f572aff50a
support for floating-point tokens in outer syntax (coinciding with inner syntax version);
wenzelm
parents:
36959
diff
changeset
|
31 |
val float_number: string parser |
29310 | 32 |
val string: string parser |
33 |
val alt_string: string parser |
|
34 |
val verbatim: string parser |
|
35 |
val sync: string parser |
|
36 |
val eof: string parser |
|
48927
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48911
diff
changeset
|
37 |
val command_name: string -> string parser |
29310 | 38 |
val keyword_with: (string -> bool) -> string parser |
39 |
val keyword_ident_or_symbolic: string parser |
|
40 |
val $$$ : string -> string parser |
|
41 |
val reserved: string -> string parser |
|
42 |
val semicolon: string parser |
|
43 |
val underscore: string parser |
|
44 |
val maybe: 'a parser -> 'a option parser |
|
45 |
val tag_name: string parser |
|
46 |
val tags: string list parser |
|
47 |
val opt_unit: unit parser |
|
48 |
val opt_keyword: string -> bool parser |
|
49 |
val begin: string parser |
|
50 |
val opt_begin: bool parser |
|
51 |
val nat: int parser |
|
52 |
val int: int parser |
|
40290
47f572aff50a
support for floating-point tokens in outer syntax (coinciding with inner syntax version);
wenzelm
parents:
36959
diff
changeset
|
53 |
val real: real parser |
29310 | 54 |
val enum: string -> 'a parser -> 'a list parser |
55 |
val enum1: string -> 'a parser -> 'a list parser |
|
56 |
val and_list: 'a parser -> 'a list parser |
|
57 |
val and_list1: 'a parser -> 'a list parser |
|
30511 | 58 |
val enum': string -> 'a context_parser -> 'a list context_parser |
59 |
val enum1': string -> 'a context_parser -> 'a list context_parser |
|
60 |
val and_list': 'a context_parser -> 'a list context_parser |
|
61 |
val and_list1': 'a context_parser -> 'a list context_parser |
|
29310 | 62 |
val list: 'a parser -> 'a list parser |
63 |
val list1: 'a parser -> 'a list parser |
|
43775
b361c7d184e7
added Parse.properties (again) -- allow empty list like Parse_Value.properties but unlike Parse.properties of ef86de9c98aa;
wenzelm
parents:
42657
diff
changeset
|
64 |
val properties: Properties.T parser |
29310 | 65 |
val name: bstring parser |
29581 | 66 |
val binding: binding parser |
29310 | 67 |
val xname: xstring parser |
68 |
val text: string parser |
|
48881
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
wenzelm
parents:
46922
diff
changeset
|
69 |
val path: string parser |
40800
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents:
40793
diff
changeset
|
70 |
val liberal_name: xstring parser |
29310 | 71 |
val parname: string parser |
29581 | 72 |
val parbinding: binding parser |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
73 |
val class: string parser |
29310 | 74 |
val sort: string parser |
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
75 |
val type_const: string parser |
29310 | 76 |
val arity: (string * string list * string) parser |
77 |
val multi_arity: (string list * string list * string) parser |
|
78 |
val type_args: string list parser |
|
35838 | 79 |
val type_args_constrained: (string * string option) list parser |
29310 | 80 |
val typ_group: string parser |
81 |
val typ: string parser |
|
82 |
val mixfix: mixfix parser |
|
83 |
val mixfix': mixfix parser |
|
84 |
val opt_mixfix: mixfix parser |
|
85 |
val opt_mixfix': mixfix parser |
|
86 |
val where_: string parser |
|
42299 | 87 |
val const_decl: (string * string * mixfix) parser |
30339 | 88 |
val const_binding: (binding * string * mixfix) parser |
29581 | 89 |
val params: (binding * string option) list parser |
90 |
val simple_fixes: (binding * string option) list parser |
|
91 |
val fixes: (binding * string option * mixfix) list parser |
|
92 |
val for_fixes: (binding * string option * mixfix) list parser |
|
30573 | 93 |
val ML_source: (Symbol_Pos.text * Position.T) parser |
94 |
val doc_source: (Symbol_Pos.text * Position.T) parser |
|
29310 | 95 |
val term_group: string parser |
96 |
val prop_group: string parser |
|
97 |
val term: string parser |
|
98 |
val prop: string parser |
|
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
99 |
val const: string parser |
40793
d21aedaa91e7
added Parse.literal_fact with proper inner_syntax markup (source position);
wenzelm
parents:
40296
diff
changeset
|
100 |
val literal_fact: string parser |
29310 | 101 |
val propp: (string * string list) parser |
102 |
val termp: (string * string list) parser |
|
45488
6d71d9e52369
pass positions for named targets, for formal links in the document model;
wenzelm
parents:
45331
diff
changeset
|
103 |
val target: (xstring * Position.T) parser |
6d71d9e52369
pass positions for named targets, for formal links in the document model;
wenzelm
parents:
45331
diff
changeset
|
104 |
val opt_target: (xstring * Position.T) option parser |
5826 | 105 |
end; |
106 |
||
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
35838
diff
changeset
|
107 |
structure Parse: PARSE = |
5826 | 108 |
struct |
109 |
||
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
110 |
type 'a parser = Token.T list -> 'a * Token.T list; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
111 |
type 'a context_parser = Context.generic * Token.T list -> 'a * (Context.generic * Token.T list); |
29310 | 112 |
|
5826 | 113 |
|
114 |
(** error handling **) |
|
115 |
||
116 |
(* group atomic parsers (no cuts!) *) |
|
117 |
||
44357 | 118 |
fun group s scan = scan || Scan.fail_with |
48911
5debc3e4fa81
tuned messages: end-of-input rarely means physical end-of-file from the past;
wenzelm
parents:
48881
diff
changeset
|
119 |
(fn [] => (fn () => s () ^ " expected,\nbut end-of-input was found") |
42519 | 120 |
| tok :: _ => |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
121 |
(fn () => |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
122 |
(case Token.text_of tok of |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
123 |
(txt, "") => |
44357 | 124 |
s () ^ " expected,\nbut " ^ txt ^ Token.pos_of tok ^ " was found" |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
125 |
| (txt1, txt2) => |
44357 | 126 |
s () ^ " expected,\nbut " ^ txt1 ^ Token.pos_of tok ^ " was found:\n" ^ txt2))); |
5826 | 127 |
|
128 |
||
5877 | 129 |
(* cut *) |
5826 | 130 |
|
8581
5c7ed2af8bfb
!!!! = cut "Corrupted outer syntax in presentation";
wenzelm
parents:
8350
diff
changeset
|
131 |
fun cut kind scan = |
5826 | 132 |
let |
48911
5debc3e4fa81
tuned messages: end-of-input rarely means physical end-of-file from the past;
wenzelm
parents:
48881
diff
changeset
|
133 |
fun get_pos [] = " (end-of-input)" |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
134 |
| get_pos (tok :: _) = Token.pos_of tok; |
5826 | 135 |
|
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
136 |
fun err (toks, NONE) = (fn () => kind ^ get_pos toks) |
25625 | 137 |
| err (toks, SOME msg) = |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
138 |
(fn () => |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
139 |
let val s = msg () in |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
140 |
if String.isPrefix kind s then s |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
141 |
else kind ^ get_pos toks ^ ": " ^ s |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43775
diff
changeset
|
142 |
end); |
5826 | 143 |
in Scan.!! err scan end; |
144 |
||
8586 | 145 |
fun !!! scan = cut "Outer syntax error" scan; |
146 |
fun !!!! scan = cut "Corrupted outer syntax in presentation" scan; |
|
8581
5c7ed2af8bfb
!!!! = cut "Corrupted outer syntax in presentation";
wenzelm
parents:
8350
diff
changeset
|
147 |
|
5826 | 148 |
|
149 |
||
150 |
(** basic parsers **) |
|
151 |
||
152 |
(* utils *) |
|
153 |
||
154 |
fun triple1 ((x, y), z) = (x, y, z); |
|
155 |
fun triple2 (x, (y, z)) = (x, y, z); |
|
6430 | 156 |
fun triple_swap ((x, y), z) = ((x, z), y); |
5826 | 157 |
|
158 |
||
159 |
(* tokens *) |
|
160 |
||
27815 | 161 |
fun RESET_VALUE atom = (*required for all primitive parsers*) |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
162 |
Scan.ahead (Scan.one (K true)) -- atom >> (fn (arg, x) => (Token.assign NONE arg; x)); |
27815 | 163 |
|
164 |
||
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
165 |
val not_eof = RESET_VALUE (Scan.one Token.not_eof); |
15703 | 166 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
167 |
fun position scan = (Scan.ahead not_eof >> Token.position_of) -- scan >> Library.swap; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
168 |
fun source_position atom = Scan.ahead atom |-- not_eof >> Token.source_position_of; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
169 |
fun inner_syntax atom = Scan.ahead atom |-- not_eof >> Token.source_of; |
5826 | 170 |
|
171 |
fun kind k = |
|
44357 | 172 |
group (fn () => Token.str_of_kind k) |
173 |
(RESET_VALUE (Scan.one (Token.is_kind k) >> Token.content_of)); |
|
5826 | 174 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
175 |
val command = kind Token.Command; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
176 |
val keyword = kind Token.Keyword; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
177 |
val short_ident = kind Token.Ident; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
178 |
val long_ident = kind Token.LongIdent; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
179 |
val sym_ident = kind Token.SymIdent; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
180 |
val term_var = kind Token.Var; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
181 |
val type_ident = kind Token.TypeIdent; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
182 |
val type_var = kind Token.TypeVar; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
183 |
val number = kind Token.Nat; |
40290
47f572aff50a
support for floating-point tokens in outer syntax (coinciding with inner syntax version);
wenzelm
parents:
36959
diff
changeset
|
184 |
val float_number = kind Token.Float; |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
185 |
val string = kind Token.String; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
186 |
val alt_string = kind Token.AltString; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
187 |
val verbatim = kind Token.Verbatim; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
188 |
val sync = kind Token.Sync; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
189 |
val eof = kind Token.EOF; |
5826 | 190 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
191 |
fun keyword_with pred = RESET_VALUE (Scan.one (Token.keyword_with pred) >> Token.content_of); |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
192 |
val keyword_ident_or_symbolic = keyword_with Token.ident_or_symbolic; |
27815 | 193 |
|
48927
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48911
diff
changeset
|
194 |
fun command_name x = |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48911
diff
changeset
|
195 |
group (fn () => Token.str_of_kind Token.Command ^ " " ^ quote x) |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48911
diff
changeset
|
196 |
(RESET_VALUE (Scan.one (fn tok => Token.is_command tok andalso Token.content_of tok = x))) |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48911
diff
changeset
|
197 |
>> Token.content_of; |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48911
diff
changeset
|
198 |
|
5826 | 199 |
fun $$$ x = |
44357 | 200 |
group (fn () => Token.str_of_kind Token.Keyword ^ " " ^ quote x) |
201 |
(keyword_with (fn y => x = y)); |
|
9131 | 202 |
|
16030 | 203 |
fun reserved x = |
44357 | 204 |
group (fn () => "reserved identifier " ^ quote x) |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36955
diff
changeset
|
205 |
(RESET_VALUE (Scan.one (Token.ident_with (fn y => x = y)) >> Token.content_of)); |
16030 | 206 |
|
9131 | 207 |
val semicolon = $$$ ";"; |
5826 | 208 |
|
15703 | 209 |
val minus = sym_ident :-- (fn "-" => Scan.succeed () | _ => Scan.fail) >> #1; |
11792
311eee3d63b6
parser for underscore (actually a symbolic identifier!);
wenzelm
parents:
11651
diff
changeset
|
210 |
val underscore = sym_ident :-- (fn "_" => Scan.succeed () | _ => Scan.fail) >> #1; |
15703 | 211 |
fun maybe scan = underscore >> K NONE || scan >> SOME; |
11792
311eee3d63b6
parser for underscore (actually a symbolic identifier!);
wenzelm
parents:
11651
diff
changeset
|
212 |
|
14835 | 213 |
val nat = number >> (#1 o Library.read_int o Symbol.explode); |
27815 | 214 |
val int = Scan.optional (minus >> K ~1) 1 -- nat >> op *; |
40296 | 215 |
val real = float_number >> (the o Real.fromString) || int >> Real.fromInt; |
5826 | 216 |
|
44357 | 217 |
val tag_name = group (fn () => "tag name") (short_ident || string); |
17070 | 218 |
val tags = Scan.repeat ($$$ "%" |-- !!! tag_name); |
219 |
||
7930 | 220 |
val opt_unit = Scan.optional ($$$ "(" -- $$$ ")" >> (K ())) (); |
14646 | 221 |
fun opt_keyword s = Scan.optional ($$$ "(" |-- !!! (($$$ s >> K true) --| $$$ ")")) false; |
222 |
||
20983 | 223 |
val begin = $$$ "begin"; |
224 |
val opt_begin = Scan.optional (begin >> K true) false; |
|
20961 | 225 |
|
5826 | 226 |
|
227 |
(* enumerations *) |
|
228 |
||
25999 | 229 |
fun enum1 sep scan = scan ::: Scan.repeat ($$$ sep |-- !!! scan); |
5826 | 230 |
fun enum sep scan = enum1 sep scan || Scan.succeed []; |
231 |
||
27815 | 232 |
fun enum1' sep scan = scan ::: Scan.repeat (Scan.lift ($$$ sep) |-- scan); |
233 |
fun enum' sep scan = enum1' sep scan || Scan.succeed []; |
|
5826 | 234 |
|
6013 | 235 |
fun and_list1 scan = enum1 "and" scan; |
236 |
fun and_list scan = enum "and" scan; |
|
237 |
||
27815 | 238 |
fun and_list1' scan = enum1' "and" scan; |
239 |
fun and_list' scan = enum' "and" scan; |
|
240 |
||
241 |
fun list1 scan = enum1 "," scan; |
|
242 |
fun list scan = enum "," scan; |
|
243 |
||
43775
b361c7d184e7
added Parse.properties (again) -- allow empty list like Parse_Value.properties but unlike Parse.properties of ef86de9c98aa;
wenzelm
parents:
42657
diff
changeset
|
244 |
val properties = $$$ "(" |-- !!! (list (string -- ($$$ "=" |-- string)) --| $$$ ")"); |
b361c7d184e7
added Parse.properties (again) -- allow empty list like Parse_Value.properties but unlike Parse.properties of ef86de9c98aa;
wenzelm
parents:
42657
diff
changeset
|
245 |
|
5826 | 246 |
|
5960 | 247 |
(* names and text *) |
5826 | 248 |
|
44357 | 249 |
val name = group (fn () => "name declaration") (short_ident || sym_ident || string || number); |
250 |
||
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
29581
diff
changeset
|
251 |
val binding = position name >> Binding.make; |
44357 | 252 |
|
253 |
val xname = group (fn () => "name reference") |
|
254 |
(short_ident || long_ident || sym_ident || string || number); |
|
255 |
||
256 |
val text = group (fn () => "text") |
|
257 |
(short_ident || long_ident || sym_ident || string || number || verbatim); |
|
258 |
||
48881
46e053eda5dd
clarified Parse.path vs. Parse.explode -- prefer errors in proper transaction context;
wenzelm
parents:
46922
diff
changeset
|
259 |
val path = group (fn () => "file name/path specification") name; |
6553 | 260 |
|
40800
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents:
40793
diff
changeset
|
261 |
val liberal_name = keyword_ident_or_symbolic || xname; |
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents:
40793
diff
changeset
|
262 |
|
18898 | 263 |
val parname = Scan.optional ($$$ "(" |-- name --| $$$ ")") ""; |
28965 | 264 |
val parbinding = Scan.optional ($$$ "(" |-- binding --| $$$ ")") Binding.empty; |
18898 | 265 |
|
6553 | 266 |
|
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
267 |
(* type classes *) |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
268 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
269 |
val class = group (fn () => "type class") (inner_syntax xname); |
5826 | 270 |
|
44357 | 271 |
val sort = group (fn () => "sort") (inner_syntax xname); |
5826 | 272 |
|
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
273 |
val type_const = inner_syntax (group (fn () => "type constructor") xname); |
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
274 |
|
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
275 |
val arity = type_const -- ($$$ "::" |-- !!! |
22331 | 276 |
(Scan.optional ($$$ "(" |-- !!! (list1 sort --| $$$ ")")) [] -- sort)) >> triple2; |
5826 | 277 |
|
46922
3717f3878714
source positions for locale and class expressions;
wenzelm
parents:
45596
diff
changeset
|
278 |
val multi_arity = and_list1 type_const -- ($$$ "::" |-- !!! |
25541 | 279 |
(Scan.optional ($$$ "(" |-- !!! (list1 sort --| $$$ ")")) [] -- sort)) >> triple2; |
280 |
||
5826 | 281 |
|
282 |
(* types *) |
|
283 |
||
44357 | 284 |
val typ_group = |
285 |
group (fn () => "type") |
|
286 |
(short_ident || long_ident || sym_ident || type_ident || type_var || string || number); |
|
5826 | 287 |
|
27753
94b672153b49
sort/typ/term/prop: inner_syntax markup encodes original source position;
wenzelm
parents:
27737
diff
changeset
|
288 |
val typ = inner_syntax typ_group; |
94b672153b49
sort/typ/term/prop: inner_syntax markup encodes original source position;
wenzelm
parents:
27737
diff
changeset
|
289 |
|
35838 | 290 |
fun type_arguments arg = |
291 |
arg >> single || |
|
292 |
$$$ "(" |-- !!! (list1 arg --| $$$ ")") || |
|
5826 | 293 |
Scan.succeed []; |
294 |
||
35838 | 295 |
val type_args = type_arguments type_ident; |
296 |
val type_args_constrained = type_arguments (type_ident -- Scan.option ($$$ "::" |-- !!! sort)); |
|
297 |
||
5826 | 298 |
|
299 |
(* mixfix annotations *) |
|
300 |
||
18669 | 301 |
val mfix = string -- |
302 |
!!! (Scan.optional ($$$ "[" |-- !!! (list nat --| $$$ "]")) [] -- |
|
42297
140f283266b7
discontinued Syntax.max_pri, which is not really a symbolic parameter;
wenzelm
parents:
42287
diff
changeset
|
303 |
Scan.optional nat 1000) >> (Mixfix o triple2); |
18669 | 304 |
|
35130 | 305 |
val infx = $$$ "infix" |-- !!! (string -- nat >> Infix); |
306 |
val infxl = $$$ "infixl" |-- !!! (string -- nat >> Infixl); |
|
307 |
val infxr = $$$ "infixr" |-- !!! (string -- nat >> Infixr); |
|
5826 | 308 |
|
18669 | 309 |
val binder = $$$ "binder" |-- |
310 |
!!! (string -- ($$$ "[" |-- nat --| $$$ "]" -- nat || nat >> (fn n => (n, n)))) |
|
311 |
>> (Binder o triple2); |
|
312 |
||
313 |
fun annotation guard fix = $$$ "(" |-- guard (fix --| $$$ ")"); |
|
314 |
fun opt_annotation guard fix = Scan.optional (annotation guard fix) NoSyn; |
|
315 |
||
316 |
val mixfix = annotation !!! (mfix || binder || infxl || infxr || infx); |
|
21609 | 317 |
val mixfix' = annotation I (mfix || binder || infxl || infxr || infx); |
18669 | 318 |
val opt_mixfix = opt_annotation !!! (mfix || binder || infxl || infxr || infx); |
319 |
val opt_mixfix' = opt_annotation I (mfix || binder || infxl || infxr || infx); |
|
5826 | 320 |
|
321 |
||
18669 | 322 |
(* fixes *) |
5826 | 323 |
|
21400 | 324 |
val where_ = $$$ "where"; |
325 |
||
42299 | 326 |
val const_decl = name -- ($$$ "::" |-- !!! typ) -- opt_mixfix >> triple1; |
30339 | 327 |
val const_binding = binding -- ($$$ "::" |-- !!! typ) -- opt_mixfix >> triple1; |
18669 | 328 |
|
28081
d664b2c1dfe6
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
28017
diff
changeset
|
329 |
val params = Scan.repeat1 binding -- Scan.option ($$$ "::" |-- !!! typ) |
18669 | 330 |
>> (fn (xs, T) => map (rpair T) xs); |
331 |
||
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19284
diff
changeset
|
332 |
val simple_fixes = and_list1 params >> flat; |
18669 | 333 |
|
334 |
val fixes = |
|
45331
6e0a8aba99ec
more liberal Parse.fixes, to avoid overlap of mixfix with is-pattern (notably in 'obtain' syntax);
wenzelm
parents:
44357
diff
changeset
|
335 |
and_list1 (binding -- Scan.option ($$$ "::" |-- typ) -- mixfix' >> (single o triple1) || |
42287
d98eb048a2e4
discontinued special treatment of structure Mixfix;
wenzelm
parents:
40800
diff
changeset
|
336 |
params >> map (fn (x, y) => (x, y, NoSyn))) >> flat; |
5826 | 337 |
|
19845 | 338 |
val for_fixes = Scan.optional ($$$ "for" |-- !!! fixes) []; |
339 |
||
5826 | 340 |
|
27877 | 341 |
(* embedded source text *) |
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27815
diff
changeset
|
342 |
|
44357 | 343 |
val ML_source = source_position (group (fn () => "ML source") text); |
344 |
val doc_source = source_position (group (fn () => "document source") text); |
|
27872
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27815
diff
changeset
|
345 |
|
631371a02b8c
P.doc_source and P.ml_sorce for proper SymbolPos.text;
wenzelm
parents:
27815
diff
changeset
|
346 |
|
5826 | 347 |
(* terms *) |
348 |
||
40793
d21aedaa91e7
added Parse.literal_fact with proper inner_syntax markup (source position);
wenzelm
parents:
40296
diff
changeset
|
349 |
val tm = short_ident || long_ident || sym_ident || term_var || number || string; |
5826 | 350 |
|
44357 | 351 |
val term_group = group (fn () => "term") tm; |
352 |
val prop_group = group (fn () => "proposition") tm; |
|
27753
94b672153b49
sort/typ/term/prop: inner_syntax markup encodes original source position;
wenzelm
parents:
27737
diff
changeset
|
353 |
|
94b672153b49
sort/typ/term/prop: inner_syntax markup encodes original source position;
wenzelm
parents:
27737
diff
changeset
|
354 |
val term = inner_syntax term_group; |
94b672153b49
sort/typ/term/prop: inner_syntax markup encodes original source position;
wenzelm
parents:
27737
diff
changeset
|
355 |
val prop = inner_syntax prop_group; |
5826 | 356 |
|
44357 | 357 |
val const = inner_syntax (group (fn () => "constant") xname); |
42300
0d1cbc1fe579
notation: proper markup for type constructor / constant;
wenzelm
parents:
42299
diff
changeset
|
358 |
|
44357 | 359 |
val literal_fact = inner_syntax (group (fn () => "literal fact") alt_string); |
40793
d21aedaa91e7
added Parse.literal_fact with proper inner_syntax markup (source position);
wenzelm
parents:
40296
diff
changeset
|
360 |
|
5826 | 361 |
|
6949 | 362 |
(* patterns *) |
6935 | 363 |
|
6949 | 364 |
val is_terms = Scan.repeat1 ($$$ "is" |-- term); |
6935 | 365 |
val is_props = Scan.repeat1 ($$$ "is" |-- prop); |
366 |
||
19585 | 367 |
val propp = prop -- Scan.optional ($$$ "(" |-- !!! (is_props --| $$$ ")")) []; |
6949 | 368 |
val termp = term -- Scan.optional ($$$ "(" |-- !!! (is_terms --| $$$ ")")) []; |
6935 | 369 |
|
370 |
||
22119 | 371 |
(* targets *) |
19811 | 372 |
|
45488
6d71d9e52369
pass positions for named targets, for formal links in the document model;
wenzelm
parents:
45331
diff
changeset
|
373 |
val target = ($$$ "(" -- $$$ "in") |-- !!! (position xname --| $$$ ")"); |
22119 | 374 |
val opt_target = Scan.option target; |
12272 | 375 |
|
376 |
end; |
|
30511 | 377 |
|
36949
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
35838
diff
changeset
|
378 |
type 'a parser = 'a Parse.parser; |
080e85d46108
renamed structure OuterKeyword to Keyword and OuterParse to Parse, keeping the old names as legacy aliases for some time;
wenzelm
parents:
35838
diff
changeset
|
379 |
type 'a context_parser = 'a Parse.context_parser; |
30511 | 380 |