We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baea080 commit f6f4ba9Copy full SHA for f6f4ba9
1 file changed
src/mlang/m_ir/dbg_info.ml
@@ -65,8 +65,11 @@ module Info = struct
65
66
module Runtime = struct
67
type t = { hash : int; value : Com.literal; name : string option }
68
+ type rename_this = {origin: Origin.t; name: string option}
69
- let make origin value name = { hash = Origin.hash origin; value; name }
70
+ let make origin value name =
71
+ let hash = Hashtbl.hash {origin; name} in
72
+ { hash; value; name }
73
end
74
75
module Static = struct
0 commit comments