Skip to content

Commit 0ef4fd6

Browse files
committed
Merge branch 'master' into feat-publish-diagnostics
2 parents f3687eb + 6853bbf commit 0ef4fd6

File tree

230 files changed

+56909
-24994
lines changed

Some content is hidden

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

230 files changed

+56909
-24994
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- Add configuration option for suppressing the "Do you want to start a build?" prompt.
1313
- Add configuration option for autostarting the Code Analyzer.
1414
- Sync with latest parser/printer.
15+
- Support paths to rescript executables in arm64 architectures.
1516

1617
## 1.3.0
1718

analysis/examples/larger-project/src/P.js

Lines changed: 114 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
exception Sys_error(string)
2+
let input = _ => assert false
3+
let output = _ => assert false
4+
let open_temp_file = _ => assert false
5+
let close_out = _ => assert false
6+
let output_char = _ => assert false
7+
let really_input = _ => assert false
8+
let pp_get_formatter_tag_functions = _ => assert false
9+
type ttt = Open_text
10+
type out_channel
11+
let stderr = assert false
12+
let print_char = _ => assert false
13+
14+
type nativeint

analysis/examples/larger-project/src/arg_helper.js

Lines changed: 2 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

analysis/examples/larger-project/src/asttypes.res

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
open P
2+
13
@@ocaml.text(
24
/* ************************************************************************ */
35
/* */

analysis/examples/larger-project/src/clflags.js

Lines changed: 6 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

analysis/examples/larger-project/src/clflags.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ let color: ref<option<string>> = ref(None) /* -color */
301301
let unboxed_types = ref(false)
302302

303303
let arg_spec = ref(list{})
304-
let arg_names = ref(Misc.StringMap.empty)
304+
let arg_names : ref<Misc.StringMap.t<int>> = ref(Misc.StringMap.empty)
305305

306306
let reset_arguments = () => {
307307
arg_spec := list{}

analysis/examples/larger-project/src/config.js

Lines changed: 5 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

analysis/examples/larger-project/src/config.res

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,5 +219,4 @@ let print_config = oc => {
219219
p("cmxs_magic_number", cmxs_magic_number)
220220
p("cmt_magic_number", cmt_magic_number)
221221

222-
flush(oc)
223222
}

0 commit comments

Comments
 (0)