parser.mly: minor mistake in position of a symbol#32
Closed
let-def wants to merge 1 commit intoocaml:trunkfrom
Closed
parser.mly: minor mistake in position of a symbol#32let-def wants to merge 1 commit intoocaml:trunkfrom
let-def wants to merge 1 commit intoocaml:trunkfrom
Conversation
Member
|
Thanks, merged in trunk. |
lpw25
pushed a commit
to lpw25/ocaml
that referenced
this pull request
Jun 12, 2016
Effects refactor
This was referenced Mar 14, 2019
Closed
Gbury
pushed a commit
to Gbury/ocaml
that referenced
this pull request
Aug 21, 2019
lthls
pushed a commit
to lthls/ocaml
that referenced
this pull request
Dec 19, 2019
Gbury
added a commit
to Gbury/ocaml
that referenced
this pull request
Mar 11, 2020
lthls
pushed a commit
to lthls/ocaml
that referenced
this pull request
Apr 15, 2020
anmolsahoo25
pushed a commit
to anmolsahoo25/ocaml
that referenced
this pull request
Aug 25, 2020
Run finalizers on large alloc blocks
lthls
pushed a commit
to lthls/ocaml
that referenced
this pull request
Sep 23, 2020
lthls
pushed a commit
to lthls/ocaml
that referenced
this pull request
Sep 23, 2020
lthls
pushed a commit
to lthls/ocaml
that referenced
this pull request
Sep 24, 2020
poechsel
pushed a commit
to poechsel/ocaml
that referenced
this pull request
Jul 2, 2021
Refactor all .sexp targets into flags.sexp.
sadiqj
pushed a commit
to sadiqj/ocaml
that referenced
this pull request
Feb 21, 2023
This extension adds the structure item form "include functor F", where F must be
a functor whose parameter can be "filled in" with the previous contents of the
current module. This eliminates a common source of boilerplate where modules
create submodules that duplicate some of their contents and exist only for the
purpose of applying a functor. For example:
module Foo = struct
module T = struct
type t = int [@@deriving compare]
end
include T
include Comparable.Make(T)
end
Can now be written:
module Foo = struct
type t = int [@@deriving compare]
include functor Comparable.Make
end
Where the only difference is that the latter Foo doesn't have the submodule T.
EmileTrotignon
pushed a commit
to EmileTrotignon/ocaml
that referenced
this pull request
Jan 12, 2024
* convert "support" page to use markdown; add next-mdx-remote bindings, simplify markdown and mdx modules * Also: remove vercel config to reduce number of configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is not even a bug, just a behavior that differs from the rest of the code: usually in error productions, reported messages refers to the position of the error token. This is not the case here.