Skip to content

Commit 454fcdb

Browse files
committed
Add some missing headers
1 parent 0a3c09c commit 454fcdb

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

src/lsp/cobol_ast/unparse.ml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
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+
114
module Expression : sig
215
type precedence = int
316

@@ -105,4 +118,4 @@ end = struct
105118
AnyOp op, Fmt.(lhs ++ any " " ++ name ++ sp ++ rhs)
106119

107120
let pp ppf (_, pp) = pp ppf ()
108-
end
121+
end

src/lsp/cobol_ast/unparse.mli

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
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+
117
module Expression : sig
218
type precedence = int
319
(** Operator precedence is represented using integers. Operators with a higher
@@ -38,4 +54,4 @@ module Expression : sig
3854
val unary : unary_op -> t -> t
3955

4056
val binary : t -> binary_op -> t -> t
41-
end
57+
end

0 commit comments

Comments
 (0)