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 @@ -543,9 +543,6 @@ let docEnv () =
543543 H. iter (fun k d -> acc := (k, d) :: ! acc) env;
544544 docList ~sep: line (fun (k , d ) -> dprintf " %s -> %a" k doone d) () ! acc
545545
546- let rec stripParenLocal e = match e with
547- | A. PAREN e2 -> stripParenLocal e2
548- | _ -> e
549546
550547
551548(* Add a new variable. Do alpha-conversion if necessary *)
@@ -6843,6 +6840,11 @@ and doStatement (s : A.statement) : chunk =
68436840 consLabel " booo_statement" empty (convLoc (C. get_statementloc s)) false
68446841 end
68456842
6843+
6844+ let rec stripParenLocal e = match e with
6845+ | A. PAREN e2 -> stripParenLocal e2
6846+ | _ -> e
6847+
68466848class stripParenClass : V. cabsVisitor = object (self )
68476849 inherit V. nopCabsVisitor
68486850
You can’t perform that action at this time.
0 commit comments