ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

allow '\|' in the lexer

References: https://todo.sr.ht/~jonsterling/forester/102

+1 -1
+1 -1
lib/compiler/Lexer.mll
··· 18 18 let digit = ['0'-'9'] 19 19 let alpha = ['a'-'z' 'A'-'Z'] 20 20 21 - let special_name = ['%' '\\' ',' '"' '`' '_' ';' '#' '{' '}' '[' ']' ' '] 21 + let special_name = ['%' '\\' ',' '"' '`' '_' ';' '#' '{' '}' '[' ']' ' ' '|'] 22 22 let simple_name = (alpha | digit | '-')* 23 23 24 24 let xml_base_ident = (alpha) (alpha | digit | '-' | '_')*