We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec77220 commit 36b63c9Copy full SHA for 36b63c9
lib/Helpers.ml
@@ -28,7 +28,9 @@ end
28
(* Creating AST nodes *********************************************************)
29
30
let uint8 = TInt K.UInt8
31
+let uint16 = TInt K.UInt16
32
let uint32 = TInt K.UInt32
33
+let uint64 = TInt K.UInt64
34
let usize = TInt K.SizeT
35
36
let type_of_op op w =
@@ -346,7 +348,7 @@ class ['self] readonly_visitor = object (self: 'self)
346
348
| EPolyComp _
347
349
| EOp _ ->
350
List.for_all (self#visit_expr_w ()) es
- | EQualified _
351
+ | EQualified _
352
when is_readonly_builtin_lid e ->
353
354
| ETApp ({ node = EQualified _; _ } as e, _, _, _)
0 commit comments