From 5f94836f4d1adca31c502706831b9ac600c3f41f Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Mon, 12 Feb 2018 15:22:56 +0100 Subject: Update licence, add opam script --- src/expressions/collect_sources.ml | 17 +++++++++++++++++ src/expressions/eval_ref.ml | 17 +++++++++++++++++ src/expressions/evaluate.ml | 17 +++++++++++++++++ src/expressions/show_expr.ml | 17 +++++++++++++++++ src/expressions/show_type.ml | 17 +++++++++++++++++ src/expressions/sym_expr.ml | 17 +++++++++++++++++ src/expressions/sym_ref.ml | 17 +++++++++++++++++ src/expressions/sym_type.ml | 17 +++++++++++++++++ 8 files changed, 136 insertions(+) (limited to 'src/expressions') diff --git a/src/expressions/collect_sources.ml b/src/expressions/collect_sources.ml index d898b86..32b40be 100755 --- a/src/expressions/collect_sources.ml +++ b/src/expressions/collect_sources.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + module T = struct type 'a t = unit diff --git a/src/expressions/eval_ref.ml b/src/expressions/eval_ref.ml index d367d2d..8463f6c 100755 --- a/src/expressions/eval_ref.ml +++ b/src/expressions/eval_ref.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + type 'a range = | Single of 'a | Array1 of 'a list diff --git a/src/expressions/evaluate.ml b/src/expressions/evaluate.ml index e910c19..ff44097 100755 --- a/src/expressions/evaluate.ml +++ b/src/expressions/evaluate.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + (** Internal representation for each type *) type 'a value = | Bool: DataType.Bool.t -> DataType.Bool.t value diff --git a/src/expressions/show_expr.ml b/src/expressions/show_expr.ml index 3a54929..c283162 100755 --- a/src/expressions/show_expr.ml +++ b/src/expressions/show_expr.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + let u = UTF8.from_utf8string module Show_Expr diff --git a/src/expressions/show_type.ml b/src/expressions/show_type.ml index c459dca..3451cde 100755 --- a/src/expressions/show_type.ml +++ b/src/expressions/show_type.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + type 'a t = UTF8.Buffer.buffer -> unit type 'a obs = UTF8.Buffer.buffer -> unit diff --git a/src/expressions/sym_expr.ml b/src/expressions/sym_expr.ml index 5ff828e..4f5d6a6 100755 --- a/src/expressions/sym_expr.ml +++ b/src/expressions/sym_expr.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + module type SYM_EXPR = sig module T:Sym_type.SYM_TYPE diff --git a/src/expressions/sym_ref.ml b/src/expressions/sym_ref.ml index aba8053..ef9168e 100755 --- a/src/expressions/sym_ref.ml +++ b/src/expressions/sym_ref.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + module type SYM_REF = sig type 'a t diff --git a/src/expressions/sym_type.ml b/src/expressions/sym_type.ml index 31c9534..8670f4d 100755 --- a/src/expressions/sym_type.ml +++ b/src/expressions/sym_type.ml @@ -1,3 +1,20 @@ +(* +This file is part of licht. + +licht is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +licht is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with licht. If not, see . +*) + module type SYM_TYPE = sig type 'a t -- cgit v1.2.3