File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ module Identifier = struct
78
78
| `Constructor (parent , _ ) -> is_internal (parent :> t )
79
79
| `Field (parent , _ ) -> is_internal (parent :> t )
80
80
| `Extension (parent , _ ) -> is_internal (parent :> t )
81
+ | `ExtensionDecl (parent , _ , _ ) -> is_internal (parent :> t )
81
82
| `Exception (parent , _ ) -> is_internal (parent :> t )
82
83
| `CoreException _ -> false
83
84
| `Value (_ , name ) -> ValueName. is_internal name
@@ -114,6 +115,8 @@ module Identifier = struct
114
115
FieldName. to_string name :: full_name_aux (parent :> t )
115
116
| `Extension (parent , name ) ->
116
117
ExtensionName. to_string name :: full_name_aux (parent :> t )
118
+ | `ExtensionDecl (parent , _ , name ) ->
119
+ ExtensionName. to_string name :: full_name_aux (parent :> t )
117
120
| `Exception (parent , name ) ->
118
121
ExceptionName. to_string name :: full_name_aux (parent :> t )
119
122
| `CoreException name -> [ ExceptionName. to_string name ]
Original file line number Diff line number Diff line change @@ -56,6 +56,8 @@ let rec of_id x =
56
56
ret " Field" (FieldName. to_string name) :: of_id (parent :> t )
57
57
| `Extension (parent , name ) ->
58
58
ret " Extension" (ExtensionName. to_string name) :: of_id (parent :> t )
59
+ | `ExtensionDecl (parent , _ , name ) ->
60
+ ret " ExtensionDecl" (ExtensionName. to_string name) :: of_id (parent :> t )
59
61
| `Exception (parent , name ) ->
60
62
ret " Exception" (ExceptionName. to_string name) :: of_id (parent :> t )
61
63
| `CoreException name ->
You can’t perform that action at this time.
0 commit comments