diff options
Diffstat (limited to 'ocamldoc/odoc_text_parser.mly')
-rw-r--r-- | ocamldoc/odoc_text_parser.mly | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ocamldoc/odoc_text_parser.mly b/ocamldoc/odoc_text_parser.mly index c10425ccb..b4118c4f2 100644 --- a/ocamldoc/odoc_text_parser.mly +++ b/ocamldoc/odoc_text_parser.mly @@ -52,6 +52,7 @@ let print_DEBUG s = print_string s; print_newline () %token ELE_REF %token VAL_REF %token TYP_REF +%token EXT_REF %token EXC_REF %token MOD_REF %token MODT_REF @@ -113,6 +114,7 @@ ele_ref_kind: ELE_REF { None } | VAL_REF { Some RK_value } | TYP_REF { Some RK_type } +| EXT_REF { Some RK_extension } | EXC_REF { Some RK_exception } | MOD_REF { Some RK_module } | MODT_REF { Some RK_module_type } |