-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
c703f5f Incorporate upstream comments into type-variable refactor (#121) 362ba23 Constrain curry modes to increase along applications (#108) b1f0cf9 Simplify the extension handling (#114) 4fd53a1 Remove pat_mode from typedtree (#105) cf6fcbc Handle attributes on lambdas with locally abstract types (#120) 5fa80fe Don't track attributes inside attributes for warning 53 (#115) 8a69777 Handle unclosed `[: ... :]` patterns (via `Generic_array` machinery) (#117) b0737f4 Add promote-one Makefile target (#118) c6ad684 Refactoring and fixes around module lookup (#107) b0a6495 Add documentation for global constructor arguments (#69) dd79aec Print `nlocal` in the `-d(raw)lambda` output (#112) 8035026 Fix `nlocal` in the generated Lambda for list comprehensions (#113) afbcdf0 Immutable arrays (#47) bfe1490 fix several issues when removing exp_mode (#110) 8f46060 Better error message for under-applied functions (#74) 27331d8 Consistently use Lmutvar or Lvar in comprehensions (#111) 01e965b Skip failing test for now 0131357 Fix test case to use comprehensions_experimental 22a7368 Temporarily disable list comprehensions tests due to locals bug e08377d Make `comprehensions` into `comprehensions_experimental` for now (#109) 947cf89 List and array comprehensions (#46) bd9e051 remove exp_mode from typedtree (#100) a9268d2 Fix misplaced attribute warning when using external parser (and some cleanup) (#101) 2b33f24 Refactor toplevel local escape check (#104) ed2aec6 Comment functions exported from TyVarEnv. 87838ba Move new variable creation into TyVarEnv. a3f60ab Encapsulate functions that work with tyvars 43d83a6 Prevent possibility of forgetting to re-widen 2f3dd34 Encapsulate context when narrowing type env't d78ff6d Make immediate64 things mode cross (#97) aa25ab9 Fix version number (#94) d01ffa0 Fix .depend file (#93) 942f2ab Bootstrap (#92) 05f7e38 Check Menhir version (#91) 1569b58 Move the CI jobs from 4.12 to 4.14. (#90) git-subtree-dir: ocaml git-subtree-split: c703f5f
- Loading branch information
Showing
176 changed files
with
32,458 additions
and
10,323 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,30 @@ | ||
parsing/parser.cmo : parsing/syntaxerr.cmi parsing/parsetree.cmi \ | ||
parsing/longident.cmi parsing/location.cmi parsing/docstrings.cmi \ | ||
utils/clflags.cmi parsing/asttypes.cmi parsing/ast_helper.cmi \ | ||
parsing/parser.cmo : \ | ||
parsing/syntaxerr.cmi \ | ||
parsing/parsetree.cmi \ | ||
parsing/longident.cmi \ | ||
parsing/location.cmi \ | ||
parsing/extensions.cmi \ | ||
parsing/docstrings.cmi \ | ||
utils/clflags.cmi \ | ||
parsing/builtin_attributes.cmi \ | ||
parsing/asttypes.cmi \ | ||
parsing/ast_helper.cmi \ | ||
parsing/parser.cmi | ||
parsing/parser.cmx : parsing/syntaxerr.cmx parsing/parsetree.cmi \ | ||
parsing/longident.cmx parsing/location.cmx parsing/docstrings.cmx \ | ||
utils/clflags.cmx parsing/asttypes.cmi parsing/ast_helper.cmx \ | ||
parsing/parser.cmx : \ | ||
parsing/syntaxerr.cmx \ | ||
parsing/parsetree.cmi \ | ||
parsing/longident.cmx \ | ||
parsing/location.cmx \ | ||
parsing/extensions.cmx \ | ||
parsing/docstrings.cmx \ | ||
utils/clflags.cmx \ | ||
parsing/builtin_attributes.cmx \ | ||
parsing/asttypes.cmi \ | ||
parsing/ast_helper.cmx \ | ||
parsing/parser.cmi | ||
parsing/parser.cmi : parsing/parsetree.cmi parsing/location.cmi \ | ||
parsing/parser.cmi : \ | ||
parsing/parsetree.cmi \ | ||
parsing/longident.cmi \ | ||
parsing/location.cmi \ | ||
parsing/docstrings.cmi | ||
parsing/parser.ml parsing/parser.mli: parsing/ast_helper.cmi parsing/asttypes.cmi utils/clflags.cmi parsing/docstrings.cmi parsing/location.cmi parsing/longident.cmi parsing/parsetree.cmi parsing/syntaxerr.cmi | ||
parsing/parser.ml parsing/parser.mli: parsing/ast_helper.cmi parsing/asttypes.cmi parsing/builtin_attributes.cmi utils/clflags.cmi parsing/docstrings.cmi parsing/extensions.cmi parsing/location.cmi parsing/longident.cmi parsing/parsetree.cmi parsing/syntaxerr.cmi |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: menhir | ||
on: [push, pull_request] | ||
jobs: | ||
menhir: | ||
name: Check Menhir version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the ocaml-jst repo | ||
uses: actions/checkout@master | ||
with: | ||
path: 'ocaml-jst' | ||
- name: Check Menhir version | ||
shell: bash | ||
run: | | ||
grep --count --max-count=1 --quiet 'MenhirLib.StaticVersion.require_20210419' ocaml-jst/boot/menhir/parser.ml |
This file contains 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
This file contains 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
Oops, something went wrong.