Skip to content

mimiML#15

Open
RamProsad2 wants to merge 23 commits intoKakadu:masterfrom
RamProsad2:master
Open

mimiML#15
RamProsad2 wants to merge 23 commits intoKakadu:masterfrom
RamProsad2:master

Conversation

@RamProsad2
Copy link

No description provided.

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

@@ -0,0 +1,78 @@
open EChandraSutraDhar_lib
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

First item in file should be a documentation comment with copyright information. For example:
(** Copyright 2021-2022, Winnie Pooh et al. *)

@@ -0,0 +1,78 @@
open EChandraSutraDhar_lib
open Inferencer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

@@ -0,0 +1,99 @@
open Format
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

@@ -0,0 +1,652 @@

open Base
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

@@ -0,0 +1,28 @@
open Ast
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

@@ -0,0 +1,29 @@

open Ast
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

@@ -0,0 +1,310 @@

open Ast
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

@@ -0,0 +1,2 @@

val parse : string -> (Ast.program, string) result
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

@@ -0,0 +1,3 @@
(** Copyright, Ram Prosad Chandra Sutra Dhar *)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OCaml files should provide license information in second line (structure item)

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

open Base
open Stdlib.Format

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

open Ast
open Base

type env = (ident, value, String.comparator_witness) Map.t
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unneeded mutual recursion detected in these type declarations. It's recommended to rewrite 'value_error' as follows:
type value_error =
| UnboundVariable of ident
| TypeError
| DivisionByZeroError
| PatternMatchingError
| LHS

@github-actions
Copy link

Документация и тестовое покрытие (68.32%) должны скоро появиться.

https://kakadu.github.io/fp25/docs/EChandraSutraDhar

https://kakadu.github.io/fp25/cov/EChandraSutraDhar

2026-01-14 18:27

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zanuda-linter report

@github-actions
Copy link

Linter report from 2026-01-14 18:28, for mini language EChandraSutraDhar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments