Skip to content

Commit

Permalink
Add lambda mls to build script and ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ncik-roberts committed Oct 23, 2023
1 parent 501716b commit dd06084
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions jane/build-resolved-files-for-ci
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,17 @@ typing_mls=(
mls=$(
{ echo driver/{compenv,compmisc,main_args}.ml
echo parsing/parser.ml
echo {utils,parsing}/*.ml
echo lambda/{lambda,tmc,simplif}.ml
echo {utils,parsing,lambda}/*.ml
for f in "${typing_mls[@]}"; do
echo "typing/${f}.ml"
done
} |
tr ' ' '\n' |
grep -v "utils/config.common.ml" |
grep -v "utils/config.fixed.ml" |
grep -v "utils/config.generated.ml"
grep -v "utils/config.generated.ml" |
grep -v "lambda/matching.ml" | # need Obj.forcing_tag in stdlib
cat;
)
echo "$mls"
dune_targets=$(
Expand Down
2 changes: 1 addition & 1 deletion lambda/transl_array_comprehension.ml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ end = struct
let slot =
transl_extension_path
loc
(Lazy.force Env.initial_safe_string)
(Lazy.force Env.initial)
Predef.path_invalid_argument
in
(* CR-someday aspectorzabusky: We might want to raise an event here for
Expand Down

0 comments on commit dd06084

Please sign in to comment.