X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fgrafite_parser%2FgrafiteParser.ml;h=5b092a6d310fc2dc3641374cc026a2a73118d194;hb=39b205d12af34c0c8d6e691da2628bc386b70cf2;hp=9485190867edd74a55b8689049550f20424371aa;hpb=8161bcb58808e60658072bc3da83b62d1df2a223;p=helm.git diff --git a/matita/components/grafite_parser/grafiteParser.ml b/matita/components/grafite_parser/grafiteParser.ml index 948519086..5b092a6d3 100644 --- a/matita/components/grafite_parser/grafiteParser.ml +++ b/matita/components/grafite_parser/grafiteParser.ml @@ -630,19 +630,19 @@ type db = ast_statement localized_option Grammar.Entry.e ;; class type g_status = object - inherit LexiconTypes.g_status + inherit CicNotationParser.g_status method parser_db: db end class status = object(self) - inherit LexiconTypes.status as super + inherit CicNotationParser.status ~keywords:[] val mutable db = None method parser_db = match db with None -> assert false | Some x -> x method set_parser_db v = {< db = Some v >} method set_parser_status : 'status. #g_status as 'status -> 'self - = fun o -> {< db = Some o#parser_db >}#set_lexicon_engine_status o + = fun o -> {< db = Some o#parser_db >}#set_notation_parser_status o initializer let grammar = CicNotationParser.level2_ast_grammar self in db <- Some (mk_parser (Grammar.Entry.create grammar "statement") self)