X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Flexers%2Fpxp_lex_name_string.src;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Flexers%2Fpxp_lex_name_string.src;h=0000000000000000000000000000000000000000;hb=c7514aaa249a96c5fdd39b1123fbdb38d92f20b6;hp=57a0d54ce8d84d8e2fbbf316f38e5d60568d97e1;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/lexers/pxp_lex_name_string.src b/helm/DEVEL/pxp/pxp/lexers/pxp_lex_name_string.src deleted file mode 100644 index 57a0d54ce..000000000 --- a/helm/DEVEL/pxp/pxp/lexers/pxp_lex_name_string.src +++ /dev/null @@ -1,77 +0,0 @@ -(* $Id$ - * ---------------------------------------------------------------------- - * - *) - - -{ - open Pxp_types - open Pxp_lexer_types - -#insert open_pxp_lex_aux_*.src -#insert pxp_lex_aux.src - -} - -#insert pxp_lex_defs_*.def - -rule scan_name_string = parse - name - { Name (Lexing.lexeme lexbuf) } - | ws+ - { Ignore } - | nmtoken - { Nametoken (Lexing.lexeme lexbuf) } - | eof - { Eof } - | character - { CharData (Lexing.lexeme lexbuf) } - | _ - { raise Netconversion.Malformed_code } - - -and scan_ignored_section = parse - | "" - { tok_Conditional_end__Ignored } - | "" - { tok_Ignore__Ignored } - | '"' character_except_quot* '"' - { tok_Ignore__Ignored } - | "'" character_except_apos* "'" - { tok_Ignore__Ignored } - | eof - { tok_Eof__Ignored } - | character_except_special+ - { tok_Ignore__Ignored } - | "<" - { tok_Ignore__Ignored } - | "]" - { tok_Ignore__Ignored } - | "'" - { tok_Ignore__Ignored } - | "\"" - { tok_Ignore__Ignored } - | _ - { raise Netconversion.Malformed_code } - - -(* ====================================================================== - * History: - * - * $Log$ - * Revision 1.1 2000/11/17 09:57:32 lpadovan - * Initial revision - * - * Revision 1.3 2000/08/14 22:18:34 gerd - * Bad_character_stream -> Netconversion.Malformed_code - * - * Revision 1.2 2000/05/29 23:53:12 gerd - * Updated because Markup_* modules have been renamed to Pxp_*. - * - * Revision 1.1 2000/05/20 20:33:25 gerd - * Initial revision. - * - * - *)