Skip to content

Commit c330bbf

Browse files
cometkimcknitt
andauthored
Use pinned flow_parser (#7390)
* use pinned flow_parser * Fix classify_function Co-authored-by: Christoph Knittel <[email protected]> * pin to fork * allow long-paths in git operations * update pin --------- Co-authored-by: Christoph Knittel <[email protected]>
1 parent 50d337d commit c330bbf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+36
-32838
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,12 @@ jobs:
128128
DUNE_PROFILE: release
129129

130130
steps:
131-
- name: "Windows: Set git to use LF"
131+
- name: "Windows: Set git config"
132132
if: runner.os == 'Windows'
133133
run: |
134-
git config --global core.autocrlf false
135-
git config --global core.eol lf
134+
git config --system core.autocrlf false
135+
git config --system core.eol lf
136+
git config --system core.longpaths true
136137
137138
- name: Checkout
138139
uses: actions/checkout@v4

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ test-gentype:
4949
test-all: test test-gentype test-analysis test-tools
5050

5151
reanalyze:
52-
reanalyze.exe -set-exit-code -all-cmt _build/default/compiler _build/default/tests -exclude-paths compiler/outcome_printer,compiler/ml,compiler/js_parser,compiler/frontend,compiler/ext,compiler/depends,compiler/core,compiler/common,compiler/cmij,compiler/bsb_helper,compiler/bsb
52+
reanalyze.exe -set-exit-code -all-cmt _build/default/compiler _build/default/tests -exclude-paths compiler/outcome_printer,compiler/ml,compiler/frontend,compiler/ext,compiler/depends,compiler/core,compiler/common,compiler/cmij,compiler/bsb_helper,compiler/bsb
5353

5454
lib: build
5555
./scripts/buildRuntime.sh

analysis/vendor/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
(dirs ext ml res_syntax json js_parser)
1+
(dirs ext ml res_syntax json flow_parser)

compiler/bsc/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
(package rescript)
1010
(flags
1111
(:standard -w +a-4-9-30-40-41-42-48-70))
12-
(libraries common core depends gentype js_parser syntax))
12+
(libraries common core depends flow_parser gentype syntax))

compiler/core/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
(run %{bin:cppo} %{env:CPPO_FLAGS=} %{input-file})))
77
(flags
88
(:standard -w +a-4-9-27-30-40-41-42-48-70))
9-
(libraries depends ext frontend gentype js_parser))
9+
(libraries depends ext flow_parser frontend gentype))

compiler/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
core
1010
depends
1111
ext
12+
flow_parser
1213
frontend
1314
gentype
1415
jsoo
15-
js_parser
1616
ml
1717
syntax)
1818

0 commit comments

Comments
 (0)