File tree Expand file tree Collapse file tree 2 files changed +31
-2
lines changed Expand file tree Collapse file tree 2 files changed +31
-2
lines changed Original file line number Diff line number Diff line change
1
+ (* *************************************************************************)
2
+ (* *)
3
+ (* SuperBOL OSS Studio *)
4
+ (* *)
5
+ (* Copyright (c) 2022-2023 OCamlPro SAS *)
6
+ (* *)
7
+ (* All rights reserved. *)
8
+ (* This source code is licensed under the GNU Affero General Public *)
9
+ (* License version 3 found in the LICENSE.md file in the root directory *)
10
+ (* of this source tree. *)
11
+ (* *)
12
+ (* *************************************************************************)
13
+
1
14
module Expression : sig
2
15
type precedence = int
3
16
@@ -105,4 +118,4 @@ end = struct
105
118
AnyOp op, Fmt. (lhs ++ any " " ++ name ++ sp ++ rhs)
106
119
107
120
let pp ppf (_ , pp ) = pp ppf ()
108
- end
121
+ end
Original file line number Diff line number Diff line change
1
+ (* *************************************************************************)
2
+ (* *)
3
+ (* SuperBOL OSS Studio *)
4
+ (* *)
5
+ (* Copyright (c) 2022-2023 OCamlPro SAS *)
6
+ (* *)
7
+ (* All rights reserved. *)
8
+ (* This source code is licensed under the GNU Affero General Public *)
9
+ (* License version 3 found in the LICENSE.md file in the root directory *)
10
+ (* of this source tree. *)
11
+ (* *)
12
+ (* *************************************************************************)
13
+
14
+ (* NB: This module is not specific to COBOL; it does not really fit within
15
+ `cobol_ast`. *)
16
+
1
17
module Expression : sig
2
18
type precedence = int
3
19
(* * Operator precedence is represented using integers. Operators with a higher
@@ -38,4 +54,4 @@ module Expression : sig
38
54
val unary : unary_op -> t -> t
39
55
40
56
val binary : t -> binary_op -> t -> t
41
- end
57
+ end
You can’t perform that action at this time.
0 commit comments