File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -251,9 +251,11 @@ let traverseAst () =
251
251
in
252
252
let isRaise s =
253
253
s = " Pervasives.raise"
254
- || s = " Pervasives.raise_notracee "
254
+ || s = " Pervasives.raise_notrace "
255
255
|| s = " Stdlib.raise"
256
- || s = " Stdlib.raise_notracee"
256
+ || s = " Stdlib.raise_notrace"
257
+ || s = " Stdlib.Pervasives.raise"
258
+ || s = " Stdlib.Pervasives.raise_notrace"
257
259
in
258
260
let raiseArgs args =
259
261
match args with
@@ -285,7 +287,7 @@ let traverseAst () =
285
287
if calleeName |> isRaise then
286
288
Log_. warning ~loc ~name: " Exception Analysis" (fun ppf () ->
287
289
Format. fprintf ppf
288
- " @{<info>%s@} can be analyzed only if called direclty " calleeName);
290
+ " @{<info>%s@} can be analyzed only if called directly " calleeName);
289
291
currentEvents :=
290
292
{
291
293
Event. exceptions = Exceptions. empty;
You can’t perform that action at this time.
0 commit comments