and token = lexer
*)
-let rec token = lexer
- | blanks -> token lexbuf
+let rec token comments = lexer
+ | blanks -> token comments lexbuf
| uri -> return lexbuf ("URI", Ulexing.utf8_lexeme lexbuf)
| ident ->
let lexeme = Ulexing.utf8_lexeme lexbuf in
with Utf8Macro.Macro_not_found _ ->
return lexbuf ("SYMBOL", Ulexing.utf8_lexeme lexbuf))
| comment ->
- let comment =
- Ulexing.utf8_sub_lexeme lexbuf 2 (Ulexing.lexeme_length lexbuf - 2)
- in
- return lexbuf ("COMMENT", comment)
+ if comments then
+ let comment =
+ Ulexing.utf8_sub_lexeme lexbuf 2 (Ulexing.lexeme_length lexbuf - 2)
+ in
+ return lexbuf ("COMMENT", comment)
+ else
+ token comments lexbuf
| eof -> return lexbuf ("EOI", "")
| _ -> error lexbuf "Invalid character"
-let tok_func stream =
+let tok_func comments stream =
let lexbuf = Ulexing.from_utf8_stream stream in
Token.make_stream_and_flocation
(fun () ->
try
- token lexbuf
+ token comments lexbuf
with
| Ulexing.Error -> error_at_end lexbuf "Unexpected character"
| Ulexing.InvalidCodepoint i -> error_at_end lexbuf "Invalid code point")
-let cic_lexer =
- {
- Token.tok_func = tok_func;
+let cic_lexer ?(comments = false) () =
+ {
+ Token.tok_func = tok_func comments;
Token.tok_using = (fun _ -> ());
Token.tok_removing = (fun _ -> ());
Token.tok_match = Token.default_match;
exception Error of int * int * string
-val cic_lexer : (string * string) Token.glexer
+ (** lexer
+ * @param comments if true the lexer will return COMMENT tokens, otherwise they
+ * will be ignored. Defaults to false *)
+val cic_lexer: ?comments:bool -> unit -> (string * string) Token.glexer
* http://helm.cs.unibo.it/
*)
-let debug = true
+let debug = false
let debug_print s =
if debug then begin
prerr_endline "<NEW_TEXTUAL_PARSER>";
* thus be interpreted differently than others *)
let use_fresh_num_instances = false
+ (** does the lexer return COMMENT tokens? *)
+let return_comments = false
+
open Printf
open DisambiguateTypes
exception Parse_error of Token.flocation * string
+let cic_lexer = CicTextualLexer2.cic_lexer ~comments:return_comments ()
+
let fresh_num_instance =
let n = ref 0 in
if use_fresh_num_instances then
let term = CicUtil.term_of_uri uri in
(uri, (fun _ _ _ -> term))
-let grammar = Grammar.gcreate CicTextualLexer2.cic_lexer
+let grammar = Grammar.gcreate cic_lexer
let term = Grammar.Entry.create grammar "term"
let term0 = Grammar.Entry.create grammar "term0"
];
script_entry: [
[ cmd = tactical0 -> Command cmd
- | s = COMMENT -> Comment (loc, s)
+(* | s = COMMENT -> Comment (loc, s) *)
]
];
script: [ [ entries = LIST0 script_entry; EOI -> (loc, entries) ] ];
let empty = ""
- let aliases_grammar = Grammar.gcreate CicTextualLexer2.cic_lexer
+ let aliases_grammar = Grammar.gcreate cic_lexer
let aliases = Grammar.Entry.create aliases_grammar "aliases"
let to_string env =