summaryrefslogtreecommitdiff
path: root/compiler/ExtractName.ml
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/ExtractName.ml')
-rw-r--r--compiler/ExtractName.ml8
1 files changed, 5 insertions, 3 deletions
diff --git a/compiler/ExtractName.ml b/compiler/ExtractName.ml
index 4f5ca0d1..6d50ed73 100644
--- a/compiler/ExtractName.ml
+++ b/compiler/ExtractName.ml
@@ -35,7 +35,7 @@ end
*)
let pattern_to_extract_name (is_trait_impl : bool) (name : pattern) :
string list =
- let c = { tgt_kind = TkName } in
+ let c = { tgt = TkName } in
let is_var (g : generic_arg) : bool =
match g with
| GExpr (EVar _) -> true
@@ -83,11 +83,13 @@ let pattern_to_trait_impl_extract_name = pattern_to_extract_name true
names we derive from the patterns (for the builtin definitions) are
consistent with the extraction names we derive from the Rust names *)
let name_to_simple_name (ctx : ctx) (n : Types.name) : string list =
- pattern_to_extract_name false (name_to_pattern ctx n)
+ let c : to_pat_config = { tgt = TkName } in
+ pattern_to_extract_name false (name_to_pattern ctx c n)
let name_with_generics_to_simple_name (ctx : ctx) (n : Types.name)
(p : Types.generic_params) (g : Types.generic_args) : string list =
- pattern_to_extract_name true (name_with_generics_to_pattern ctx n p g)
+ let c : to_pat_config = { tgt = TkName } in
+ pattern_to_extract_name true (name_with_generics_to_pattern ctx c n p g)
(*
(* Prepare a name.