├── .ci ├── build-platform.yml ├── use-node.yml └── utils │ ├── publish-build-cache.yml │ ├── restore-build-cache.yml │ ├── use-esy.yml │ └── use-node.yml ├── .circleci ├── config.osx.yml ├── config.yml └── try-config.sh ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ ├── check.js │ ├── package-lock.json │ └── package.json └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Changelog.md ├── LICENSE ├── Readme.md ├── appveyor.yml ├── azure-pipelines.yml ├── belt ├── belt.ml ├── belt_Array.ml ├── belt_HashMap.ml ├── belt_HashMapInt.ml ├── belt_HashMapString.ml ├── belt_HashSet.ml ├── belt_HashSetInt.ml ├── belt_HashSetString.ml ├── belt_Id.ml ├── belt_List.ml ├── belt_Map.ml ├── belt_MapDict.ml ├── belt_MapInt.ml ├── belt_MapString.ml ├── belt_MutableMap.ml ├── belt_MutableMapInt.ml ├── belt_MutableMapString.ml ├── belt_MutableQueue.ml ├── belt_MutableSet.ml ├── belt_MutableSetInt.ml ├── belt_MutableSetString.ml ├── belt_MutableStack.ml ├── belt_Option.ml ├── belt_Range.ml ├── belt_Result.ml ├── belt_Set.ml ├── belt_SetDict.ml ├── belt_SetInt.ml ├── belt_SetString.ml ├── belt_SortArray.ml ├── belt_SortArrayInt.ml ├── belt_SortArrayString.ml ├── belt_internalAVLset.ml ├── belt_internalAVLtree.ml ├── belt_internalBuckets.ml ├── belt_internalBucketsType.ml ├── belt_internalMapInt.ml ├── belt_internalMapString.ml ├── belt_internalSetBuckets.ml ├── belt_internalSetInt.ml ├── belt_internalSetString.ml ├── caml_hash.ml ├── convert.sh ├── dune ├── js.ml ├── js_math.ml ├── stubs.c └── test.ml ├── belt_ppx ├── Belt_ppx.ml └── dune ├── belt_src ├── belt.ml ├── belt_Array.ml ├── belt_HashMap.ml ├── belt_HashMapInt.ml ├── belt_HashMapString.ml ├── belt_HashSet.ml ├── belt_HashSetInt.ml ├── belt_HashSetString.ml ├── belt_Id.ml ├── belt_List.ml ├── belt_Map.ml ├── belt_MapDict.ml ├── belt_MapInt.ml ├── belt_MapString.ml ├── belt_MutableMap.ml ├── belt_MutableMapInt.ml ├── belt_MutableMapString.ml ├── belt_MutableQueue.ml ├── belt_MutableSet.ml ├── belt_MutableSetInt.ml ├── belt_MutableSetString.ml ├── belt_MutableStack.ml ├── belt_Option.ml ├── belt_Range.ml ├── belt_Result.ml ├── belt_Set.ml ├── belt_SetDict.ml ├── belt_SetInt.ml ├── belt_SetString.ml ├── belt_SortArray.ml ├── belt_SortArrayInt.ml ├── belt_SortArrayString.ml ├── belt_internalAVLset.ml ├── belt_internalAVLtree.ml ├── belt_internalBuckets.ml ├── belt_internalBucketsType.ml ├── belt_internalMapInt.ml ├── belt_internalMapString.ml ├── belt_internalSetBuckets.ml ├── belt_internalSetInt.ml ├── belt_internalSetString.ml ├── caml_hash.ml ├── js.ml ├── js_math.ml └── test.ml ├── bin ├── Bin.re └── dune ├── core ├── CodeLens.re ├── Query.re ├── References.re ├── SharedTypes.re └── dune ├── dune ├── dune-project ├── editor-extensions ├── coc.nvim │ ├── .eslintignore │ ├── .eslintrc.yml │ ├── .flowconfig │ ├── .gitignore │ ├── .npmignore │ ├── .prettierrc.yml │ ├── .vim │ │ └── coc-settings.json │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── rls │ │ └── CURRENT │ ├── src │ │ └── index.js │ ├── webpack.config.js │ └── yarn.lock └── vscode │ ├── .vscodeignore │ ├── LICENSE │ ├── Readme.md │ ├── bin.native │ ├── bin.native.exe │ ├── bin.native.linux │ ├── linux.zip │ ├── logo.png │ ├── logo.sketch │ ├── macos.zip │ ├── ocaml.configuration.json │ ├── ocaml.json │ ├── package-lock.json │ ├── package.json │ ├── reason-lisp.configuration.json │ ├── reason-lisp.json │ ├── reason-markdown-codeblock.json │ ├── reason.configuration.json │ ├── reason.json │ ├── screenshot.png │ ├── script │ └── syntax.js │ ├── snippets │ └── snippets.json │ ├── src │ ├── index.js │ └── syntaxes │ │ ├── basis.ts │ │ ├── ocaml.ts │ │ ├── schema.ts │ │ └── tsconfig.json │ └── windows.zip ├── esy.lock.json ├── esy.lock ├── .gitattributes ├── .gitignore ├── index.json ├── opam │ ├── ANSITerminal.0.8.1 │ │ └── opam │ ├── base-bytes.base │ │ └── opam │ ├── base-threads.base │ │ └── opam │ ├── base-unix.base │ │ └── opam │ ├── base.v0.13.1 │ │ └── opam │ ├── conf-m4.1 │ │ └── opam │ ├── cppo.1.6.6 │ │ └── opam │ ├── dune-configurator.2.3.1 │ │ └── opam │ ├── dune-private-libs.2.3.1 │ │ └── opam │ ├── dune.2.3.1 │ │ └── opam │ ├── junit.2.0.2 │ │ └── opam │ ├── menhir.20200211 │ │ └── opam │ ├── menhirLib.20200211 │ │ └── opam │ ├── menhirSdk.20200211 │ │ └── opam │ ├── merlin-extend.0.5 │ │ └── opam │ ├── ocaml-compiler-libs.v0.12.1 │ │ └── opam │ ├── ocaml-migrate-parsetree.1.6.0 │ │ └── opam │ ├── ocamlbuild.0.14.0 │ │ └── opam │ ├── ocamlfind.1.8.1 │ │ ├── files │ │ │ ├── ocaml-stub │ │ │ └── ocamlfind.install │ │ └── opam │ ├── ppx_derivers.1.2.1 │ │ └── opam │ ├── ppx_tools_versioned.5.2.3 │ │ └── opam │ ├── ppxlib.0.12.0 │ │ └── opam │ ├── ptime.0.8.5 │ │ └── opam │ ├── re.1.9.0 │ │ └── opam │ ├── reason.3.5.2 │ │ └── opam │ ├── result.1.5 │ │ └── opam │ ├── seq.base │ │ ├── files │ │ │ ├── META.seq │ │ │ └── seq.install │ │ └── opam │ ├── sexplib0.v0.13.0 │ │ └── opam │ ├── stdio.v0.13.0 │ │ └── opam │ ├── stdlib-shims.0.1.0 │ │ └── opam │ ├── stringext.1.6.0 │ │ └── opam │ ├── topkg.1.0.1 │ │ └── opam │ ├── tyxml.4.3.0 │ │ └── opam │ ├── uchar.0.0.2 │ │ └── opam │ ├── uri.3.1.0 │ │ └── opam │ └── uutf.1.0.2 │ │ └── opam └── overrides │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ ├── files │ │ └── ocamlbuild-0.14.0.patch │ └── package.json │ └── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ ├── files │ └── findlib-1.8.1.patch │ └── package.json ├── examples ├── bs-3.1.5 │ ├── .vscode │ │ └── settings.json │ ├── bsconfig.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── Component1.bs.js │ │ ├── Component1.re │ │ ├── Component2.bs.js │ │ ├── Component2.re │ │ ├── Index.bs.js │ │ ├── Index.re │ │ └── index.html ├── bs-7.2 │ ├── .vscode │ │ └── settings.json │ ├── bsconfig.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── Component1.bs.js │ │ ├── Component1.re │ │ ├── Component2.bs.js │ │ ├── Component2.re │ │ ├── Index.bs.js │ │ ├── Index.re │ │ └── index.html ├── dune-4.07 │ ├── .vscode │ │ └── settings.json │ ├── both │ │ ├── A.re │ │ ├── B.re │ │ └── dune │ ├── dune-example.opam │ ├── dune-project │ ├── esy.json │ ├── esy.lock │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── index.json │ │ ├── opam │ │ │ ├── base-threads.base │ │ │ │ └── opam │ │ │ ├── base-unix.base │ │ │ │ └── opam │ │ │ ├── conf-m4.1 │ │ │ │ └── opam │ │ │ ├── cppo.1.6.6 │ │ │ │ └── opam │ │ │ ├── dune.1.11.4 │ │ │ │ └── opam │ │ │ ├── menhir.20190924 │ │ │ │ └── opam │ │ │ ├── merlin-extend.0.5 │ │ │ │ └── opam │ │ │ ├── ocaml-migrate-parsetree.1.5.0 │ │ │ │ └── opam │ │ │ ├── ocamlbuild.0.14.0 │ │ │ │ └── opam │ │ │ ├── ocamlfind.1.8.1 │ │ │ │ ├── files │ │ │ │ │ ├── ocaml-stub │ │ │ │ │ └── ocamlfind.install │ │ │ │ └── opam │ │ │ ├── ppx_derivers.1.2.1 │ │ │ │ └── opam │ │ │ ├── reason.3.5.2 │ │ │ │ └── opam │ │ │ └── result.1.4 │ │ │ │ └── opam │ │ └── overrides │ │ │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ │ │ ├── files │ │ │ │ └── ocamlbuild-0.14.0.patch │ │ │ └── package.json │ │ │ └── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ │ │ ├── files │ │ │ └── findlib-1.8.1.patch │ │ │ └── package.json │ └── src │ │ ├── One.re │ │ ├── Three.re │ │ ├── Two.re │ │ └── dune ├── dune-complex │ ├── awesome │ │ └── dune │ ├── both │ │ ├── A.re │ │ ├── B.re │ │ └── dune │ ├── dune-complex.opam │ ├── dune-project │ ├── esy.json │ ├── esy.lock │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── index.json │ │ ├── opam │ │ │ ├── base-threads.base │ │ │ │ └── opam │ │ │ ├── base-unix.base │ │ │ │ └── opam │ │ │ ├── conf-m4.1 │ │ │ │ └── opam │ │ │ ├── cppo.1.6.5 │ │ │ │ └── opam │ │ │ ├── dune.1.8.2 │ │ │ │ └── opam │ │ │ ├── jbuilder.transition │ │ │ │ └── opam │ │ │ ├── menhir.20181113 │ │ │ │ └── opam │ │ │ ├── merlin-extend.0.3 │ │ │ │ └── opam │ │ │ ├── ocaml-migrate-parsetree.1.2.0 │ │ │ │ └── opam │ │ │ ├── ocamlbuild.0.14.0 │ │ │ │ └── opam │ │ │ ├── ocamlfind.1.8.0 │ │ │ │ ├── files │ │ │ │ │ ├── no-awk-check.patch │ │ │ │ │ ├── ocaml-stub │ │ │ │ │ └── ocamlfind.install │ │ │ │ └── opam │ │ │ ├── ppx_derivers.1.0 │ │ │ │ └── opam │ │ │ ├── reason.3.4.0 │ │ │ │ └── opam │ │ │ └── result.1.3 │ │ │ │ └── opam │ │ └── overrides │ │ │ ├── opam__s__dune_opam__c__1.8.2_opam_override │ │ │ └── package.json │ │ │ ├── opam__s__merlin_extend_opam__c__0.3_opam_override │ │ │ ├── files │ │ │ │ └── merlin-extend-winfix.patch │ │ │ └── package.json │ │ │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ │ │ ├── files │ │ │ │ └── ocamlbuild-0.14.0.patch │ │ │ └── package.json │ │ │ └── opam__s__ocamlfind_opam__c__1.8.0_opam_override │ │ │ ├── files │ │ │ └── findlib-1.8.0.patch │ │ │ └── package.json │ └── src │ │ ├── One.re │ │ ├── Three.re │ │ ├── Two.re │ │ └── dune ├── dune │ ├── .vscode │ │ └── settings.json │ ├── both │ │ ├── A.re │ │ ├── B.re │ │ └── dune │ ├── dune-example.opam │ ├── dune-project │ ├── esy.json │ ├── esy.lock │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── index.json │ │ ├── opam │ │ │ ├── base-threads.base │ │ │ │ └── opam │ │ │ ├── base-unix.base │ │ │ │ └── opam │ │ │ ├── conf-m4.1 │ │ │ │ └── opam │ │ │ ├── cppo.1.6.6 │ │ │ │ └── opam │ │ │ ├── dune.1.11.4 │ │ │ │ └── opam │ │ │ ├── menhir.20190924 │ │ │ │ └── opam │ │ │ ├── merlin-extend.0.5 │ │ │ │ └── opam │ │ │ ├── ocaml-migrate-parsetree.1.5.0 │ │ │ │ └── opam │ │ │ ├── ocamlbuild.0.14.0 │ │ │ │ └── opam │ │ │ ├── ocamlfind.1.8.1 │ │ │ │ ├── files │ │ │ │ │ ├── ocaml-stub │ │ │ │ │ └── ocamlfind.install │ │ │ │ └── opam │ │ │ ├── ppx_derivers.1.2.1 │ │ │ │ └── opam │ │ │ ├── reason.3.5.2 │ │ │ │ └── opam │ │ │ └── result.1.4 │ │ │ │ └── opam │ │ └── overrides │ │ │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ │ │ ├── files │ │ │ │ └── ocamlbuild-0.14.0.patch │ │ │ └── package.json │ │ │ └── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ │ │ ├── files │ │ │ └── findlib-1.8.1.patch │ │ │ └── package.json │ └── src │ │ ├── One.re │ │ ├── Three.re │ │ ├── Two.re │ │ └── dune ├── example-codemod │ ├── .vscode │ │ └── settings.json │ ├── bsconfig.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── More.re ├── example-es6-imports │ ├── .vscode │ │ └── settings.json │ ├── bsconfig.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── Awesome.rei │ │ ├── Hello.bs.js │ │ ├── Hello.re │ │ ├── More.bs.js │ │ ├── More.re │ │ ├── Other.bs.js │ │ ├── Other.re │ │ ├── SomeFile.bs.js │ │ └── SomeFile.ml ├── example-esy-dune-project │ ├── .vscode │ │ └── settings.json │ ├── Readme.md │ ├── bin │ │ ├── Hello.re │ │ └── dune │ ├── dune-project │ ├── esy.lock.json │ ├── esy.lock │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── index.json │ │ ├── opam │ │ │ ├── base-threads.base │ │ │ │ └── opam │ │ │ ├── base-unix.base │ │ │ │ └── opam │ │ │ ├── biniou.1.2.0 │ │ │ │ └── opam │ │ │ ├── conf-m4.1 │ │ │ │ └── opam │ │ │ ├── conf-which.1 │ │ │ │ └── opam │ │ │ ├── cppo.1.6.5 │ │ │ │ └── opam │ │ │ ├── dune.1.8.2 │ │ │ │ └── opam │ │ │ ├── easy-format.1.3.1 │ │ │ │ └── opam │ │ │ ├── jbuilder.transition │ │ │ │ └── opam │ │ │ ├── menhir.20181113 │ │ │ │ └── opam │ │ │ ├── merlin-extend.0.3 │ │ │ │ └── opam │ │ │ ├── ocaml-migrate-parsetree.1.2.0 │ │ │ │ └── opam │ │ │ ├── ocamlbuild.0.14.0 │ │ │ │ └── opam │ │ │ ├── ocamlfind.1.8.0 │ │ │ │ ├── files │ │ │ │ │ ├── no-awk-check.patch │ │ │ │ │ ├── ocaml-stub │ │ │ │ │ └── ocamlfind.install │ │ │ │ └── opam │ │ │ ├── ppx_derivers.1.0 │ │ │ │ └── opam │ │ │ ├── re.1.7.3 │ │ │ │ └── opam │ │ │ ├── result.1.3 │ │ │ │ └── opam │ │ │ └── yojson.1.7.0 │ │ │ │ └── opam │ │ └── overrides │ │ │ ├── opam__s__dune_opam__c__1.8.2_opam_override │ │ │ └── package.json │ │ │ ├── opam__s__merlin_extend_opam__c__0.3_opam_override │ │ │ ├── files │ │ │ │ └── merlin-extend-winfix.patch │ │ │ └── package.json │ │ │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ │ │ ├── files │ │ │ │ └── ocamlbuild-0.14.0.patch │ │ │ └── package.json │ │ │ └── opam__s__ocamlfind_opam__c__1.8.0_opam_override │ │ │ ├── files │ │ │ └── findlib-1.8.0.patch │ │ │ └── package.json │ ├── hello.opam │ ├── lib │ │ ├── .merlin │ │ ├── Awesome.rei │ │ ├── Hello.re │ │ ├── More.re │ │ ├── Other.re │ │ ├── SomeFile.ml │ │ └── dune │ └── package.json ├── example-monorepo │ ├── .vscode │ │ └── settings.json │ ├── example-project │ │ ├── bsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── Hello.re │ │ │ ├── More.re │ │ │ └── Other.re │ ├── example-react │ │ ├── .gitignore │ │ ├── bsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Component1.bs.js │ │ │ ├── Component1.re │ │ │ ├── Component2.bs.js │ │ │ ├── Component2.re │ │ │ ├── Index.bs.js │ │ │ ├── Index.re │ │ │ └── index.html │ │ └── webpack.config.js │ └── package-lock.json ├── example-native-project │ ├── .vscode │ │ └── settings.json │ ├── bsconfig.json │ ├── package.json │ └── src │ │ ├── Files.re │ │ ├── Infix.re │ │ ├── Mainz.re │ │ └── Other.re ├── example-opam-dune-project │ ├── .vscode │ │ └── settings.json │ ├── dune-project │ ├── example-opam-dune.opam │ └── src │ │ ├── bin │ │ ├── Hello.re │ │ └── dune │ │ └── lib │ │ ├── Awesome.rei │ │ ├── Hello.re │ │ ├── Hi.ml │ │ ├── More.re │ │ ├── Other.re │ │ ├── SomeFile.ml │ │ └── dune ├── example-project │ ├── .vscode │ │ └── settings.json │ ├── bsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Awesome.rei │ │ ├── Embeded.md │ │ ├── Hello.re │ │ ├── Json.re │ │ ├── More.re │ │ ├── More.rei │ │ ├── Other.re │ │ ├── Serde.ml │ │ ├── SomeFile.ml │ │ └── TransformHelpers.re │ └── types.json ├── example-react │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── __tests__ │ │ ├── example_tests.bs.js │ │ └── example_tests.re │ ├── bsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Component1.re │ │ ├── Component2.re │ │ ├── Index.re │ │ └── index.html │ └── webpack.config.js ├── example-workspace │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── package.json │ ├── shared │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src │ │ │ ├── Box.re │ │ │ └── Utils.re │ ├── web │ │ ├── README.md │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src │ │ │ └── Index.re │ └── yarn.lock └── name_with_underscore │ ├── .gitignore │ ├── README.md │ ├── bsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── browsing.bs.js │ ├── browsing.re │ ├── e2e.bs.js │ └── e2e.re │ ├── tasks.json │ └── yarn.lock ├── logo.png ├── logo.svg ├── ocaml_typing ├── 402 │ ├── annot.mli │ ├── ast_helper.ml │ ├── ast_helper.mli │ ├── ast_mapper.ml │ ├── ast_mapper.mli │ ├── asttypes.mli │ ├── btype.ml │ ├── btype.mli │ ├── ccomp.ml │ ├── ccomp.mli │ ├── clflags.ml │ ├── clflags.mli │ ├── cmi_format.ml │ ├── cmi_format.mli │ ├── cmt_format.ml │ ├── cmt_format.mli │ ├── compenv.ml │ ├── compenv.mli │ ├── compmisc.ml │ ├── compmisc.mli │ ├── config.ml │ ├── config.mlbuild │ ├── config.mli │ ├── config.mlp │ ├── consistbl.ml │ ├── consistbl.mli │ ├── ctype.ml │ ├── ctype.mli │ ├── datarepr.ml │ ├── datarepr.mli │ ├── docstrings.ml │ ├── docstrings.mli │ ├── dune │ ├── env.ml │ ├── env.mli │ ├── envaux.ml │ ├── envaux.mli │ ├── ident.ml │ ├── ident.mli │ ├── includeclass.ml │ ├── includeclass.mli │ ├── includecore.ml │ ├── includecore.mli │ ├── includemod.ml │ ├── includemod.mli │ ├── lambda.ml │ ├── lambda.mli │ ├── lexer.ml │ ├── lexer.mli │ ├── lexer.mll │ ├── location.ml │ ├── location.mli │ ├── longident.ml │ ├── longident.mli │ ├── main_args.ml │ ├── main_args.mli │ ├── matching.ml │ ├── matching.mli │ ├── misc.ml │ ├── misc.mli │ ├── mtype.ml │ ├── mtype.mli │ ├── oprint.ml │ ├── oprint.mli │ ├── outcometree.mli │ ├── parmatch.ml │ ├── parmatch.mli │ ├── parse.ml │ ├── parse.mli │ ├── parser.ml │ ├── parser.mli │ ├── parser.mly │ ├── parsetree.mli │ ├── path.ml │ ├── path.mli │ ├── pparse.ml │ ├── pparse.mli │ ├── pprintast.ml │ ├── pprintast.mli │ ├── predef.ml │ ├── predef.mli │ ├── primitive.ml │ ├── primitive.mli │ ├── printast.ml │ ├── printast.mli │ ├── printlambda.ml │ ├── printlambda.mli │ ├── printtyp.ml │ ├── printtyp.mli │ ├── printtyped.ml │ ├── printtyped.mli │ ├── runtimedef.mli │ ├── simplif.ml │ ├── simplif.mli │ ├── stypes.ml │ ├── stypes.mli │ ├── subst.ml │ ├── subst.mli │ ├── switch.ml │ ├── switch.mli │ ├── syntaxerr.ml │ ├── syntaxerr.mli │ ├── tbl.ml │ ├── tbl.mli │ ├── terminfo.ml │ ├── terminfo.mli │ ├── translclass.ml │ ├── translclass.mli │ ├── translcore.ml │ ├── translcore.mli │ ├── translmod.ml │ ├── translmod.mli │ ├── translobj.ml │ ├── translobj.mli │ ├── typeclass.ml │ ├── typeclass.mli │ ├── typecore.ml │ ├── typecore.mli │ ├── typedecl.ml │ ├── typedecl.mli │ ├── typedtree.ml │ ├── typedtree.mli │ ├── typedtreeIter.ml │ ├── typedtreeIter.mli │ ├── typedtreeMap.ml │ ├── typedtreeMap.mli │ ├── typemod.ml │ ├── typemod.mli │ ├── typeopt.ml │ ├── typeopt.mli │ ├── types.ml │ ├── types.mli │ ├── typetexp.ml │ ├── typetexp.mli │ ├── untypeast.ml │ ├── untypeast.mli │ ├── warnings.ml │ └── warnings.mli ├── 406 │ ├── annot.mli │ ├── arg_helper.ml │ ├── arg_helper.mli │ ├── ast_helper.ml │ ├── ast_helper.mli │ ├── ast_invariants.ml │ ├── ast_invariants.mli │ ├── ast_iterator.ml │ ├── ast_iterator.mli │ ├── ast_mapper.ml │ ├── ast_mapper.mli │ ├── asttypes.mli │ ├── attr_helper.ml │ ├── attr_helper.mli │ ├── btype.ml │ ├── btype.mli │ ├── builtin_attributes.ml │ ├── builtin_attributes.mli │ ├── bytesections.ml │ ├── bytesections.mli │ ├── ccomp.ml │ ├── ccomp.mli │ ├── clflags.ml │ ├── clflags.mli │ ├── cmi_format.ml │ ├── cmi_format.mli │ ├── cmo_format.mli │ ├── cmt_format.ml │ ├── cmt_format.mli │ ├── compdynlink.mli │ ├── compenv.ml │ ├── compenv.mli │ ├── compmisc.ml │ ├── compmisc.mli │ ├── compplugin.ml │ ├── compplugin.mli │ ├── config.ml │ ├── config.mli │ ├── consistbl.ml │ ├── consistbl.mli │ ├── ctype.ml │ ├── ctype.mli │ ├── datarepr.ml │ ├── datarepr.mli │ ├── depend.ml │ ├── depend.mli │ ├── dll.ml │ ├── dll.mli │ ├── docstrings.ml │ ├── docstrings.mli │ ├── dune │ ├── env.ml │ ├── env.mli │ ├── envaux.ml │ ├── envaux.mli │ ├── ident.ml │ ├── ident.mli │ ├── identifiable.ml │ ├── identifiable.mli │ ├── includeclass.ml │ ├── includeclass.mli │ ├── includecore.ml │ ├── includecore.mli │ ├── includemod.ml │ ├── includemod.mli │ ├── lambda.ml │ ├── lambda.mli │ ├── lexer.ml │ ├── lexer.mli │ ├── location.ml │ ├── location.mli │ ├── longident.ml │ ├── longident.mli │ ├── main_args.ml │ ├── main_args.mli │ ├── makedepend.ml │ ├── makedepend.mli │ ├── matching.ml │ ├── matching.mli │ ├── meta.ml │ ├── meta.mli │ ├── misc.ml │ ├── misc.mli │ ├── mtype.ml │ ├── mtype.mli │ ├── numbers.ml │ ├── numbers.mli │ ├── opcodes.ml │ ├── oprint.ml │ ├── oprint.mli │ ├── outcometree.mli │ ├── parmatch.ml │ ├── parmatch.mli │ ├── parse.ml │ ├── parse.mli │ ├── parser.ml │ ├── parser.mli │ ├── parsetree.mli │ ├── path.ml │ ├── path.mli │ ├── pparse.ml │ ├── pparse.mli │ ├── pprintast.ml │ ├── pprintast.mli │ ├── predef.ml │ ├── predef.mli │ ├── primitive.ml │ ├── primitive.mli │ ├── printast.ml │ ├── printast.mli │ ├── printlambda.ml │ ├── printlambda.mli │ ├── printtyp.ml │ ├── printtyp.mli │ ├── printtyped.ml │ ├── printtyped.mli │ ├── profile.ml │ ├── profile.mli │ ├── runtimedef.ml │ ├── runtimedef.mli │ ├── semantics_of_primitives.ml │ ├── semantics_of_primitives.mli │ ├── simplif.ml │ ├── simplif.mli │ ├── strongly_connected_components.ml │ ├── strongly_connected_components.mli │ ├── stypes.ml │ ├── stypes.mli │ ├── subst.ml │ ├── subst.mli │ ├── switch.ml │ ├── switch.mli │ ├── symtable.ml │ ├── symtable.mli │ ├── syntaxerr.ml │ ├── syntaxerr.mli │ ├── targetint.ml │ ├── targetint.mli │ ├── tast_mapper.ml │ ├── tast_mapper.mli │ ├── tbl.ml │ ├── tbl.mli │ ├── terminfo.ml │ ├── terminfo.mli │ ├── translattribute.ml │ ├── translattribute.mli │ ├── translclass.ml │ ├── translclass.mli │ ├── translcore.ml │ ├── translcore.mli │ ├── translmod.ml │ ├── translmod.mli │ ├── translobj.ml │ ├── translobj.mli │ ├── typeclass.ml │ ├── typeclass.mli │ ├── typecore.ml │ ├── typecore.mli │ ├── typedecl.ml │ ├── typedecl.mli │ ├── typedtree.ml │ ├── typedtree.mli │ ├── typedtreeIter.ml │ ├── typedtreeIter.mli │ ├── typedtreeMap.ml │ ├── typedtreeMap.mli │ ├── typemod.ml │ ├── typemod.mli │ ├── typeopt.ml │ ├── typeopt.mli │ ├── types.ml │ ├── types.mli │ ├── typetexp.ml │ ├── typetexp.mli │ ├── untypeast.ml │ ├── untypeast.mli │ ├── warnings.ml │ └── warnings.mli ├── 407 │ ├── annot.mli │ ├── arg_helper.ml │ ├── arg_helper.mli │ ├── ast_helper.ml │ ├── ast_helper.mli │ ├── ast_invariants.ml │ ├── ast_invariants.mli │ ├── ast_iterator.ml │ ├── ast_iterator.mli │ ├── ast_mapper.ml │ ├── ast_mapper.mli │ ├── asttypes.mli │ ├── attr_helper.ml │ ├── attr_helper.mli │ ├── btype.ml │ ├── btype.mli │ ├── build_path_prefix_map.ml │ ├── build_path_prefix_map.mli │ ├── builtin_attributes.ml │ ├── builtin_attributes.mli │ ├── bytesections.ml │ ├── bytesections.mli │ ├── ccomp.ml │ ├── ccomp.mli │ ├── clflags.ml │ ├── clflags.mli │ ├── cmi_format.ml │ ├── cmi_format.mli │ ├── cmo_format.mli │ ├── cmt_format.ml │ ├── cmt_format.mli │ ├── compdynlink.mli │ ├── compenv.ml │ ├── compenv.mli │ ├── compmisc.ml │ ├── compmisc.mli │ ├── compplugin.ml │ ├── compplugin.mli │ ├── config.ml │ ├── config.mli │ ├── consistbl.ml │ ├── consistbl.mli │ ├── ctype.ml │ ├── ctype.mli │ ├── datarepr.ml │ ├── datarepr.mli │ ├── depend.ml │ ├── depend.mli │ ├── dll.ml │ ├── dll.mli │ ├── docstrings.ml │ ├── docstrings.mli │ ├── dune │ ├── env.ml │ ├── env.mli │ ├── envaux.ml │ ├── envaux.mli │ ├── ident.ml │ ├── ident.mli │ ├── identifiable.ml │ ├── identifiable.mli │ ├── includeclass.ml │ ├── includeclass.mli │ ├── includecore.ml │ ├── includecore.mli │ ├── includemod.ml │ ├── includemod.mli │ ├── lambda.ml │ ├── lambda.mli │ ├── lexer.ml │ ├── lexer.mli │ ├── location.ml │ ├── location.mli │ ├── longident.ml │ ├── longident.mli │ ├── main_args.ml │ ├── main_args.mli │ ├── makedepend.ml │ ├── makedepend.mli │ ├── matching.ml │ ├── matching.mli │ ├── meta.ml │ ├── meta.mli │ ├── misc.ml │ ├── misc.mli │ ├── mtype.ml │ ├── mtype.mli │ ├── numbers.ml │ ├── numbers.mli │ ├── opcodes.ml │ ├── oprint.ml │ ├── oprint.mli │ ├── outcometree.mli │ ├── parmatch.ml │ ├── parmatch.mli │ ├── parse.ml │ ├── parse.mli │ ├── parser.ml │ ├── parser.mli │ ├── parsetree.mli │ ├── path.ml │ ├── path.mli │ ├── pparse.ml │ ├── pparse.mli │ ├── pprintast.ml │ ├── pprintast.mli │ ├── predef.ml │ ├── predef.mli │ ├── primitive.ml │ ├── primitive.mli │ ├── printast.ml │ ├── printast.mli │ ├── printlambda.ml │ ├── printlambda.mli │ ├── printpat.ml │ ├── printpat.mli │ ├── printtyp.ml │ ├── printtyp.mli │ ├── printtyped.ml │ ├── printtyped.mli │ ├── profile.ml │ ├── profile.mli │ ├── runtimedef.ml │ ├── runtimedef.mli │ ├── semantics_of_primitives.ml │ ├── semantics_of_primitives.mli │ ├── simplif.ml │ ├── simplif.mli │ ├── strongly_connected_components.ml │ ├── strongly_connected_components.mli │ ├── stypes.ml │ ├── stypes.mli │ ├── subst.ml │ ├── subst.mli │ ├── switch.ml │ ├── switch.mli │ ├── symtable.ml │ ├── symtable.mli │ ├── syntaxerr.ml │ ├── syntaxerr.mli │ ├── targetint.ml │ ├── targetint.mli │ ├── tast_mapper.ml │ ├── tast_mapper.mli │ ├── tbl.ml │ ├── tbl.mli │ ├── terminfo.ml │ ├── terminfo.mli │ ├── translattribute.ml │ ├── translattribute.mli │ ├── translclass.ml │ ├── translclass.mli │ ├── translcore.ml │ ├── translcore.mli │ ├── translmod.ml │ ├── translmod.mli │ ├── translobj.ml │ ├── translobj.mli │ ├── translprim.ml │ ├── translprim.mli │ ├── typeclass.ml │ ├── typeclass.mli │ ├── typecore.ml │ ├── typecore.mli │ ├── typedecl.ml │ ├── typedecl.mli │ ├── typedtree.ml │ ├── typedtree.mli │ ├── typedtreeIter.ml │ ├── typedtreeIter.mli │ ├── typedtreeMap.ml │ ├── typedtreeMap.mli │ ├── typemod.ml │ ├── typemod.mli │ ├── typeopt.ml │ ├── typeopt.mli │ ├── types.ml │ ├── types.mli │ ├── typetexp.ml │ ├── typetexp.mli │ ├── untypeast.ml │ ├── untypeast.mli │ ├── warnings.ml │ └── warnings.mli ├── 408 │ ├── Compiler_libs_408.re │ └── dune ├── assemble.js └── current │ ├── Current.ml │ └── dune ├── old_ocamls └── 407 │ ├── dune-project │ ├── esy.json │ └── esy.lock │ ├── .gitattributes │ ├── .gitignore │ ├── index.json │ ├── opam │ ├── base-threads.base │ │ └── opam │ ├── base-unix.base │ │ └── opam │ ├── conf-m4.1 │ │ └── opam │ ├── cppo.1.6.6 │ │ └── opam │ ├── dune.1.11.4 │ │ └── opam │ ├── menhir.20190924 │ │ └── opam │ ├── merlin-extend.0.5 │ │ └── opam │ ├── ocaml-migrate-parsetree.1.5.0 │ │ └── opam │ ├── ocamlbuild.0.14.0 │ │ └── opam │ ├── ocamlfind.1.8.1 │ │ ├── files │ │ │ ├── ocaml-stub │ │ │ └── ocamlfind.install │ │ └── opam │ ├── ppx_derivers.1.2.1 │ │ └── opam │ └── result.1.4 │ │ └── opam │ └── overrides │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ ├── files │ │ └── ocamlbuild-0.14.0.patch │ └── package.json │ └── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ ├── files │ └── findlib-1.8.1.patch │ └── package.json ├── package.json ├── pp ├── Pp.re ├── dune └── pp.js ├── ppx ├── Ppx_Monads.re └── dune ├── process_ocaml ├── 402 │ ├── PrintType.re │ ├── ProcessAttributes.re │ ├── ProcessCmt.re │ ├── ProcessExtra.re │ ├── Process_402.re │ ├── Process_402.rei │ ├── Shared.re │ └── dune ├── 406 │ ├── PrintType.re │ ├── ProcessAttributes.re │ ├── ProcessCmt.re │ ├── ProcessExtra.re │ ├── Process_406.re │ ├── Process_406.rei │ ├── Shared.re │ └── dune ├── 407 │ ├── PrintType.re │ ├── ProcessAttributes.re │ ├── ProcessCmt.re │ ├── ProcessExtra.re │ ├── Process_407.re │ ├── Process_407.rei │ ├── Shared.re │ └── dune ├── 408 │ ├── PrintType.re │ ├── ProcessAttributes.re │ ├── ProcessCmt.re │ ├── ProcessExtra.re │ ├── Process_408.re │ ├── Process_408.rei │ ├── Shared.re │ └── dune ├── base │ ├── PrintType.re │ ├── ProcessAttributes.re │ ├── ProcessCmt.re │ ├── ProcessExtra.re │ └── Shared.re └── build.sh ├── reason-language-server.opam ├── release.sh ├── relite ├── Example.re ├── Expect.re ├── Files.re ├── Relite.re ├── Reporter.re ├── Runner.re ├── Suite.re ├── Types.re └── dune ├── runtests.sh ├── src ├── analyze │ ├── AsYouType.re │ ├── BuildCommand.re │ ├── BuildSystem.re │ ├── ErrorParser.re │ ├── FindFiles.re │ ├── Hover.re │ ├── NewCompletions.re │ ├── Packages.re │ ├── PartialParser.re │ ├── State.re │ ├── TopTypes.re │ └── dune ├── analyze_example_tests │ ├── ExamplesTests.re │ └── dune ├── analyze_fixture_tests │ ├── AnalyzeFixtureTests.re │ ├── TestCodeLens.re │ ├── TestCodeLens.txt │ ├── TestCompletions.re │ ├── TestCompletions.txt │ ├── TestDefinition.re │ ├── TestDefinition.txt │ ├── TestHover.re │ ├── TestHover.txt │ ├── TestJbuildFile.re │ ├── TestJbuildFile.txt │ ├── TestReferences.re │ ├── TestReferences.txt │ ├── TestSignatureHelp.re │ ├── dune │ └── lib │ │ ├── TestParser.re │ │ └── TestUtils.re ├── full_tests │ ├── FullTests.re │ └── dune └── lsp │ ├── BasicServer.re │ ├── Diagnostics.re │ ├── Main.re │ ├── MessageHandlers.re │ ├── NotificationHandlers.re │ ├── Protocol.re │ ├── Rpc.re │ └── dune ├── test ├── RunTests.re ├── TestFramework.re └── dune ├── unexceptional ├── Readme.md └── tests │ ├── basic.re │ └── records.re ├── util ├── Commands.re ├── Files.re ├── Infix.re ├── JbuildFile.re ├── JsonShort.re ├── Log.re ├── MarkdownOfOCamldoc.re ├── MerlinFile.re ├── MerlinFile.rei ├── ModuleResolution.re ├── Monads.re ├── PrepareUtils.re ├── Pretty.ml ├── Pretty.mli ├── RJson.re ├── RResult.re ├── Result.re ├── Semver.re ├── Semver.rei ├── Utils.re └── dune ├── util_tests ├── UtilTests.re └── dune └── vendor ├── Json.re ├── dune ├── odoc_parser ├── LICENSE.md ├── Readme.md ├── ast.ml ├── comment.ml ├── error.ml ├── helpers.ml ├── lang.ml ├── location_.ml ├── odoc_lexer.ml ├── odoc_lexer.mli ├── odoc_lexer.mll ├── parse_error.ml ├── parser_.ml ├── parser_.mli ├── paths.ml ├── paths.mli ├── paths_types.ml ├── root.ml ├── root.mli ├── semantics.ml ├── semantics.mli ├── syntax.ml ├── syntax.mli └── token.ml └── omd ├── Readme.md ├── html_characters.ml ├── omd.ml ├── omd.mli ├── omd_backend.ml ├── omd_backend.mli ├── omd_html.ml ├── omd_lexer.ml ├── omd_lexer.mli ├── omd_parser.ml ├── omd_parser.mli ├── omd_representation.ml ├── omd_representation.mli ├── omd_types.ml ├── omd_utils.ml ├── omd_utils.mli ├── omd_xtxt.ml └── omd_xtxt.mli /.ci/build-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.ci/build-platform.yml -------------------------------------------------------------------------------- /.ci/use-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.ci/use-node.yml -------------------------------------------------------------------------------- /.ci/utils/publish-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.ci/utils/publish-build-cache.yml -------------------------------------------------------------------------------- /.ci/utils/restore-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.ci/utils/restore-build-cache.yml -------------------------------------------------------------------------------- /.ci/utils/use-esy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.ci/utils/use-esy.yml -------------------------------------------------------------------------------- /.ci/utils/use-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.ci/utils/use-node.yml -------------------------------------------------------------------------------- /.circleci/config.osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.circleci/config.osx.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/try-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.circleci/try-config.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | types.lock.json binary 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/actions/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.github/actions/check.js -------------------------------------------------------------------------------- /.github/actions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.github/actions/package-lock.json -------------------------------------------------------------------------------- /.github/actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.github/actions/package.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/Readme.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /belt/belt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt.ml -------------------------------------------------------------------------------- /belt/belt_Array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_Array.ml -------------------------------------------------------------------------------- /belt/belt_HashMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_HashMap.ml -------------------------------------------------------------------------------- /belt/belt_HashMapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_HashMapInt.ml -------------------------------------------------------------------------------- /belt/belt_HashMapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_HashMapString.ml -------------------------------------------------------------------------------- /belt/belt_HashSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_HashSet.ml -------------------------------------------------------------------------------- /belt/belt_HashSetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_HashSetInt.ml -------------------------------------------------------------------------------- /belt/belt_HashSetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_HashSetString.ml -------------------------------------------------------------------------------- /belt/belt_Id.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_Id.ml -------------------------------------------------------------------------------- /belt/belt_List.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_List.ml -------------------------------------------------------------------------------- /belt/belt_Map.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_Map.ml -------------------------------------------------------------------------------- /belt/belt_MapDict.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MapDict.ml -------------------------------------------------------------------------------- /belt/belt_MapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MapInt.ml -------------------------------------------------------------------------------- /belt/belt_MapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MapString.ml -------------------------------------------------------------------------------- /belt/belt_MutableMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableMap.ml -------------------------------------------------------------------------------- /belt/belt_MutableMapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableMapInt.ml -------------------------------------------------------------------------------- /belt/belt_MutableMapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableMapString.ml -------------------------------------------------------------------------------- /belt/belt_MutableQueue.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableQueue.ml -------------------------------------------------------------------------------- /belt/belt_MutableSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableSet.ml -------------------------------------------------------------------------------- /belt/belt_MutableSetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableSetInt.ml -------------------------------------------------------------------------------- /belt/belt_MutableSetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableSetString.ml -------------------------------------------------------------------------------- /belt/belt_MutableStack.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_MutableStack.ml -------------------------------------------------------------------------------- /belt/belt_Option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_Option.ml -------------------------------------------------------------------------------- /belt/belt_Range.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_Range.ml -------------------------------------------------------------------------------- /belt/belt_Result.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_Result.ml -------------------------------------------------------------------------------- /belt/belt_Set.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_Set.ml -------------------------------------------------------------------------------- /belt/belt_SetDict.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_SetDict.ml -------------------------------------------------------------------------------- /belt/belt_SetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_SetInt.ml -------------------------------------------------------------------------------- /belt/belt_SetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_SetString.ml -------------------------------------------------------------------------------- /belt/belt_SortArray.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_SortArray.ml -------------------------------------------------------------------------------- /belt/belt_SortArrayInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_SortArrayInt.ml -------------------------------------------------------------------------------- /belt/belt_SortArrayString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_SortArrayString.ml -------------------------------------------------------------------------------- /belt/belt_internalAVLset.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalAVLset.ml -------------------------------------------------------------------------------- /belt/belt_internalAVLtree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalAVLtree.ml -------------------------------------------------------------------------------- /belt/belt_internalBuckets.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalBuckets.ml -------------------------------------------------------------------------------- /belt/belt_internalBucketsType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalBucketsType.ml -------------------------------------------------------------------------------- /belt/belt_internalMapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalMapInt.ml -------------------------------------------------------------------------------- /belt/belt_internalMapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalMapString.ml -------------------------------------------------------------------------------- /belt/belt_internalSetBuckets.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalSetBuckets.ml -------------------------------------------------------------------------------- /belt/belt_internalSetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalSetInt.ml -------------------------------------------------------------------------------- /belt/belt_internalSetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/belt_internalSetString.ml -------------------------------------------------------------------------------- /belt/caml_hash.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/caml_hash.ml -------------------------------------------------------------------------------- /belt/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/convert.sh -------------------------------------------------------------------------------- /belt/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/dune -------------------------------------------------------------------------------- /belt/js.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/js.ml -------------------------------------------------------------------------------- /belt/js_math.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/js_math.ml -------------------------------------------------------------------------------- /belt/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/stubs.c -------------------------------------------------------------------------------- /belt/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt/test.ml -------------------------------------------------------------------------------- /belt_ppx/Belt_ppx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_ppx/Belt_ppx.ml -------------------------------------------------------------------------------- /belt_ppx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_ppx/dune -------------------------------------------------------------------------------- /belt_src/belt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt.ml -------------------------------------------------------------------------------- /belt_src/belt_Array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_Array.ml -------------------------------------------------------------------------------- /belt_src/belt_HashMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_HashMap.ml -------------------------------------------------------------------------------- /belt_src/belt_HashMapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_HashMapInt.ml -------------------------------------------------------------------------------- /belt_src/belt_HashMapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_HashMapString.ml -------------------------------------------------------------------------------- /belt_src/belt_HashSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_HashSet.ml -------------------------------------------------------------------------------- /belt_src/belt_HashSetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_HashSetInt.ml -------------------------------------------------------------------------------- /belt_src/belt_HashSetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_HashSetString.ml -------------------------------------------------------------------------------- /belt_src/belt_Id.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_Id.ml -------------------------------------------------------------------------------- /belt_src/belt_List.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_List.ml -------------------------------------------------------------------------------- /belt_src/belt_Map.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_Map.ml -------------------------------------------------------------------------------- /belt_src/belt_MapDict.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MapDict.ml -------------------------------------------------------------------------------- /belt_src/belt_MapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MapInt.ml -------------------------------------------------------------------------------- /belt_src/belt_MapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MapString.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableMap.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableMapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableMapInt.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableMapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableMapString.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableQueue.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableQueue.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableSet.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableSetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableSetInt.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableSetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableSetString.ml -------------------------------------------------------------------------------- /belt_src/belt_MutableStack.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_MutableStack.ml -------------------------------------------------------------------------------- /belt_src/belt_Option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_Option.ml -------------------------------------------------------------------------------- /belt_src/belt_Range.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_Range.ml -------------------------------------------------------------------------------- /belt_src/belt_Result.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_Result.ml -------------------------------------------------------------------------------- /belt_src/belt_Set.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_Set.ml -------------------------------------------------------------------------------- /belt_src/belt_SetDict.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_SetDict.ml -------------------------------------------------------------------------------- /belt_src/belt_SetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_SetInt.ml -------------------------------------------------------------------------------- /belt_src/belt_SetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_SetString.ml -------------------------------------------------------------------------------- /belt_src/belt_SortArray.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_SortArray.ml -------------------------------------------------------------------------------- /belt_src/belt_SortArrayInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_SortArrayInt.ml -------------------------------------------------------------------------------- /belt_src/belt_SortArrayString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_SortArrayString.ml -------------------------------------------------------------------------------- /belt_src/belt_internalAVLset.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalAVLset.ml -------------------------------------------------------------------------------- /belt_src/belt_internalAVLtree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalAVLtree.ml -------------------------------------------------------------------------------- /belt_src/belt_internalBuckets.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalBuckets.ml -------------------------------------------------------------------------------- /belt_src/belt_internalBucketsType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalBucketsType.ml -------------------------------------------------------------------------------- /belt_src/belt_internalMapInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalMapInt.ml -------------------------------------------------------------------------------- /belt_src/belt_internalMapString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalMapString.ml -------------------------------------------------------------------------------- /belt_src/belt_internalSetBuckets.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalSetBuckets.ml -------------------------------------------------------------------------------- /belt_src/belt_internalSetInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalSetInt.ml -------------------------------------------------------------------------------- /belt_src/belt_internalSetString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/belt_internalSetString.ml -------------------------------------------------------------------------------- /belt_src/caml_hash.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/caml_hash.ml -------------------------------------------------------------------------------- /belt_src/js.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/js.ml -------------------------------------------------------------------------------- /belt_src/js_math.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/js_math.ml -------------------------------------------------------------------------------- /belt_src/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/belt_src/test.ml -------------------------------------------------------------------------------- /bin/Bin.re: -------------------------------------------------------------------------------- 1 | Printexc.record_backtrace(true); 2 | 3 | let () = Lsp.Main.main(); -------------------------------------------------------------------------------- /bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/bin/dune -------------------------------------------------------------------------------- /core/CodeLens.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/core/CodeLens.re -------------------------------------------------------------------------------- /core/Query.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/core/Query.re -------------------------------------------------------------------------------- /core/References.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/core/References.re -------------------------------------------------------------------------------- /core/SharedTypes.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/core/SharedTypes.re -------------------------------------------------------------------------------- /core/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/core/dune -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.1) 2 | -------------------------------------------------------------------------------- /editor-extensions/coc.nvim/.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | 3 | -------------------------------------------------------------------------------- /editor-extensions/coc.nvim/.vim/coc-settings.json: -------------------------------------------------------------------------------- 1 | { "tsserver.enable": false } 2 | -------------------------------------------------------------------------------- /editor-extensions/coc.nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/coc.nvim/README.md -------------------------------------------------------------------------------- /editor-extensions/coc.nvim/rls/CURRENT: -------------------------------------------------------------------------------- 1 | 1.7.11 2 | -------------------------------------------------------------------------------- /editor-extensions/coc.nvim/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/coc.nvim/yarn.lock -------------------------------------------------------------------------------- /editor-extensions/vscode/.vscodeignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.vsix 3 | logo.sketch 4 | -------------------------------------------------------------------------------- /editor-extensions/vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/LICENSE -------------------------------------------------------------------------------- /editor-extensions/vscode/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/Readme.md -------------------------------------------------------------------------------- /editor-extensions/vscode/bin.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/bin.native -------------------------------------------------------------------------------- /editor-extensions/vscode/linux.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/linux.zip -------------------------------------------------------------------------------- /editor-extensions/vscode/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/logo.png -------------------------------------------------------------------------------- /editor-extensions/vscode/logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/logo.sketch -------------------------------------------------------------------------------- /editor-extensions/vscode/macos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/macos.zip -------------------------------------------------------------------------------- /editor-extensions/vscode/ocaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/ocaml.json -------------------------------------------------------------------------------- /editor-extensions/vscode/reason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/reason.json -------------------------------------------------------------------------------- /editor-extensions/vscode/windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/editor-extensions/vscode/windows.zip -------------------------------------------------------------------------------- /esy.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock.json -------------------------------------------------------------------------------- /esy.lock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/.gitattributes -------------------------------------------------------------------------------- /esy.lock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/.gitignore -------------------------------------------------------------------------------- /esy.lock/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/index.json -------------------------------------------------------------------------------- /esy.lock/opam/base-bytes.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/base-bytes.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-threads.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/base-threads.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-unix.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/base-unix.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base.v0.13.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/base.v0.13.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/conf-m4.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/conf-m4.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/cppo.1.6.6/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/cppo.1.6.6/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune.2.3.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/dune.2.3.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/junit.2.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/junit.2.0.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/menhir.20200211/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/menhir.20200211/opam -------------------------------------------------------------------------------- /esy.lock/opam/merlin-extend.0.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/merlin-extend.0.5/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlbuild.0.14.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/ocamlbuild.0.14.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/ocamlfind.1.8.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/ppxlib.0.12.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/ppxlib.0.12.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ptime.0.8.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/ptime.0.8.5/opam -------------------------------------------------------------------------------- /esy.lock/opam/re.1.9.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/re.1.9.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/reason.3.5.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/reason.3.5.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/result.1.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/result.1.5/opam -------------------------------------------------------------------------------- /esy.lock/opam/seq.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/seq.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/sexplib0.v0.13.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/sexplib0.v0.13.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/stdio.v0.13.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/stdio.v0.13.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/stringext.1.6.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/stringext.1.6.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/topkg.1.0.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/topkg.1.0.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/tyxml.4.3.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/tyxml.4.3.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/uchar.0.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/uchar.0.0.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/uri.3.1.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/uri.3.1.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/uutf.1.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/esy.lock/opam/uutf.1.0.2/opam -------------------------------------------------------------------------------- /examples/bs-3.1.5/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-3.1.5/bsconfig.json -------------------------------------------------------------------------------- /examples/bs-3.1.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-3.1.5/package.json -------------------------------------------------------------------------------- /examples/bs-3.1.5/src/Index.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-3.1.5/src/Index.bs.js -------------------------------------------------------------------------------- /examples/bs-3.1.5/src/Index.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-3.1.5/src/Index.re -------------------------------------------------------------------------------- /examples/bs-3.1.5/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-3.1.5/src/index.html -------------------------------------------------------------------------------- /examples/bs-7.2/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/bsconfig.json -------------------------------------------------------------------------------- /examples/bs-7.2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/package-lock.json -------------------------------------------------------------------------------- /examples/bs-7.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/package.json -------------------------------------------------------------------------------- /examples/bs-7.2/src/Component1.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/src/Component1.re -------------------------------------------------------------------------------- /examples/bs-7.2/src/Component2.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/src/Component2.re -------------------------------------------------------------------------------- /examples/bs-7.2/src/Index.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/src/Index.bs.js -------------------------------------------------------------------------------- /examples/bs-7.2/src/Index.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/src/Index.re -------------------------------------------------------------------------------- /examples/bs-7.2/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/bs-7.2/src/index.html -------------------------------------------------------------------------------- /examples/dune-4.07/both/A.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-4.07/both/A.re -------------------------------------------------------------------------------- /examples/dune-4.07/both/B.re: -------------------------------------------------------------------------------- 1 | let x = 1 2 | -------------------------------------------------------------------------------- /examples/dune-4.07/both/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-4.07/both/dune -------------------------------------------------------------------------------- /examples/dune-4.07/dune-example.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dune-4.07/dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-4.07/dune-project -------------------------------------------------------------------------------- /examples/dune-4.07/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-4.07/esy.json -------------------------------------------------------------------------------- /examples/dune-4.07/src/One.re: -------------------------------------------------------------------------------- 1 | 2 | let x = 10 + Two.y; 3 | print_endline("hello") -------------------------------------------------------------------------------- /examples/dune-4.07/src/Three.re: -------------------------------------------------------------------------------- 1 | let x = 3 2 | -------------------------------------------------------------------------------- /examples/dune-4.07/src/Two.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-4.07/src/Two.re -------------------------------------------------------------------------------- /examples/dune-4.07/src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-4.07/src/dune -------------------------------------------------------------------------------- /examples/dune-complex/awesome/dune: -------------------------------------------------------------------------------- 1 | (library (name OnE)) 2 | -------------------------------------------------------------------------------- /examples/dune-complex/both/A.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-complex/both/A.re -------------------------------------------------------------------------------- /examples/dune-complex/both/B.re: -------------------------------------------------------------------------------- 1 | let x = 1 2 | -------------------------------------------------------------------------------- /examples/dune-complex/both/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-complex/both/dune -------------------------------------------------------------------------------- /examples/dune-complex/dune-complex.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dune-complex/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-complex/esy.json -------------------------------------------------------------------------------- /examples/dune-complex/src/One.re: -------------------------------------------------------------------------------- 1 | let x = 10 2 | -------------------------------------------------------------------------------- /examples/dune-complex/src/Three.re: -------------------------------------------------------------------------------- 1 | let x = 3 2 | -------------------------------------------------------------------------------- /examples/dune-complex/src/Two.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-complex/src/Two.re -------------------------------------------------------------------------------- /examples/dune-complex/src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune-complex/src/dune -------------------------------------------------------------------------------- /examples/dune/both/A.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/both/A.re -------------------------------------------------------------------------------- /examples/dune/both/B.re: -------------------------------------------------------------------------------- 1 | let x = 1 2 | -------------------------------------------------------------------------------- /examples/dune/both/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/both/dune -------------------------------------------------------------------------------- /examples/dune/dune-example.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dune/dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/dune-project -------------------------------------------------------------------------------- /examples/dune/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/esy.json -------------------------------------------------------------------------------- /examples/dune/esy.lock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/esy.lock/.gitignore -------------------------------------------------------------------------------- /examples/dune/esy.lock/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/esy.lock/index.json -------------------------------------------------------------------------------- /examples/dune/src/One.re: -------------------------------------------------------------------------------- 1 | let x = 10 + Two.y; 2 | print_endline("hello") -------------------------------------------------------------------------------- /examples/dune/src/Three.re: -------------------------------------------------------------------------------- 1 | let x = 3 2 | -------------------------------------------------------------------------------- /examples/dune/src/Two.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/src/Two.re -------------------------------------------------------------------------------- /examples/dune/src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/dune/src/dune -------------------------------------------------------------------------------- /examples/example-esy-dune-project/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.0) 2 | -------------------------------------------------------------------------------- /examples/example-esy-dune-project/hello.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/example-monorepo/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /examples/example-opam-dune-project/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.3) 2 | -------------------------------------------------------------------------------- /examples/example-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/examples/example-react/.gitignore -------------------------------------------------------------------------------- /examples/example-workspace/shared/src/Utils.re: -------------------------------------------------------------------------------- 1 | let doNothing = () => (); -------------------------------------------------------------------------------- /examples/name_with_underscore/src/browsing.re: -------------------------------------------------------------------------------- 1 | open Belt.Result; /* Not necessary on native. */ 2 | let y = E2e.x; 3 | -------------------------------------------------------------------------------- /examples/name_with_underscore/src/e2e.re: -------------------------------------------------------------------------------- 1 | let x = 10; 2 | 3 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/logo.svg -------------------------------------------------------------------------------- /ocaml_typing/402/annot.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/annot.mli -------------------------------------------------------------------------------- /ocaml_typing/402/ast_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ast_helper.ml -------------------------------------------------------------------------------- /ocaml_typing/402/ast_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ast_helper.mli -------------------------------------------------------------------------------- /ocaml_typing/402/ast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ast_mapper.ml -------------------------------------------------------------------------------- /ocaml_typing/402/ast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ast_mapper.mli -------------------------------------------------------------------------------- /ocaml_typing/402/asttypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/asttypes.mli -------------------------------------------------------------------------------- /ocaml_typing/402/btype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/btype.ml -------------------------------------------------------------------------------- /ocaml_typing/402/btype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/btype.mli -------------------------------------------------------------------------------- /ocaml_typing/402/ccomp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ccomp.ml -------------------------------------------------------------------------------- /ocaml_typing/402/ccomp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ccomp.mli -------------------------------------------------------------------------------- /ocaml_typing/402/clflags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/clflags.ml -------------------------------------------------------------------------------- /ocaml_typing/402/clflags.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/clflags.mli -------------------------------------------------------------------------------- /ocaml_typing/402/cmi_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/cmi_format.ml -------------------------------------------------------------------------------- /ocaml_typing/402/cmi_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/cmi_format.mli -------------------------------------------------------------------------------- /ocaml_typing/402/cmt_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/cmt_format.ml -------------------------------------------------------------------------------- /ocaml_typing/402/cmt_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/cmt_format.mli -------------------------------------------------------------------------------- /ocaml_typing/402/compenv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/compenv.ml -------------------------------------------------------------------------------- /ocaml_typing/402/compenv.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/compenv.mli -------------------------------------------------------------------------------- /ocaml_typing/402/compmisc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/compmisc.ml -------------------------------------------------------------------------------- /ocaml_typing/402/compmisc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/compmisc.mli -------------------------------------------------------------------------------- /ocaml_typing/402/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/config.ml -------------------------------------------------------------------------------- /ocaml_typing/402/config.mlbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/config.mlbuild -------------------------------------------------------------------------------- /ocaml_typing/402/config.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/config.mli -------------------------------------------------------------------------------- /ocaml_typing/402/config.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/config.mlp -------------------------------------------------------------------------------- /ocaml_typing/402/consistbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/consistbl.ml -------------------------------------------------------------------------------- /ocaml_typing/402/consistbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/consistbl.mli -------------------------------------------------------------------------------- /ocaml_typing/402/ctype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ctype.ml -------------------------------------------------------------------------------- /ocaml_typing/402/ctype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ctype.mli -------------------------------------------------------------------------------- /ocaml_typing/402/datarepr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/datarepr.ml -------------------------------------------------------------------------------- /ocaml_typing/402/datarepr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/datarepr.mli -------------------------------------------------------------------------------- /ocaml_typing/402/docstrings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/docstrings.ml -------------------------------------------------------------------------------- /ocaml_typing/402/docstrings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/docstrings.mli -------------------------------------------------------------------------------- /ocaml_typing/402/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/dune -------------------------------------------------------------------------------- /ocaml_typing/402/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/env.ml -------------------------------------------------------------------------------- /ocaml_typing/402/env.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/env.mli -------------------------------------------------------------------------------- /ocaml_typing/402/envaux.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/envaux.ml -------------------------------------------------------------------------------- /ocaml_typing/402/envaux.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/envaux.mli -------------------------------------------------------------------------------- /ocaml_typing/402/ident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ident.ml -------------------------------------------------------------------------------- /ocaml_typing/402/ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/ident.mli -------------------------------------------------------------------------------- /ocaml_typing/402/includeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/includeclass.ml -------------------------------------------------------------------------------- /ocaml_typing/402/includeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/includeclass.mli -------------------------------------------------------------------------------- /ocaml_typing/402/includecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/includecore.ml -------------------------------------------------------------------------------- /ocaml_typing/402/includecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/includecore.mli -------------------------------------------------------------------------------- /ocaml_typing/402/includemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/includemod.ml -------------------------------------------------------------------------------- /ocaml_typing/402/includemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/includemod.mli -------------------------------------------------------------------------------- /ocaml_typing/402/lambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/lambda.ml -------------------------------------------------------------------------------- /ocaml_typing/402/lambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/lambda.mli -------------------------------------------------------------------------------- /ocaml_typing/402/lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/lexer.ml -------------------------------------------------------------------------------- /ocaml_typing/402/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/lexer.mli -------------------------------------------------------------------------------- /ocaml_typing/402/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/lexer.mll -------------------------------------------------------------------------------- /ocaml_typing/402/location.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/location.ml -------------------------------------------------------------------------------- /ocaml_typing/402/location.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/location.mli -------------------------------------------------------------------------------- /ocaml_typing/402/longident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/longident.ml -------------------------------------------------------------------------------- /ocaml_typing/402/longident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/longident.mli -------------------------------------------------------------------------------- /ocaml_typing/402/main_args.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/main_args.ml -------------------------------------------------------------------------------- /ocaml_typing/402/main_args.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/main_args.mli -------------------------------------------------------------------------------- /ocaml_typing/402/matching.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/matching.ml -------------------------------------------------------------------------------- /ocaml_typing/402/matching.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/matching.mli -------------------------------------------------------------------------------- /ocaml_typing/402/misc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/misc.ml -------------------------------------------------------------------------------- /ocaml_typing/402/misc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/misc.mli -------------------------------------------------------------------------------- /ocaml_typing/402/mtype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/mtype.ml -------------------------------------------------------------------------------- /ocaml_typing/402/mtype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/mtype.mli -------------------------------------------------------------------------------- /ocaml_typing/402/oprint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/oprint.ml -------------------------------------------------------------------------------- /ocaml_typing/402/oprint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/oprint.mli -------------------------------------------------------------------------------- /ocaml_typing/402/outcometree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/outcometree.mli -------------------------------------------------------------------------------- /ocaml_typing/402/parmatch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parmatch.ml -------------------------------------------------------------------------------- /ocaml_typing/402/parmatch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parmatch.mli -------------------------------------------------------------------------------- /ocaml_typing/402/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parse.ml -------------------------------------------------------------------------------- /ocaml_typing/402/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parse.mli -------------------------------------------------------------------------------- /ocaml_typing/402/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parser.ml -------------------------------------------------------------------------------- /ocaml_typing/402/parser.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parser.mli -------------------------------------------------------------------------------- /ocaml_typing/402/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parser.mly -------------------------------------------------------------------------------- /ocaml_typing/402/parsetree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/parsetree.mli -------------------------------------------------------------------------------- /ocaml_typing/402/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/path.ml -------------------------------------------------------------------------------- /ocaml_typing/402/path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/path.mli -------------------------------------------------------------------------------- /ocaml_typing/402/pparse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/pparse.ml -------------------------------------------------------------------------------- /ocaml_typing/402/pparse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/pparse.mli -------------------------------------------------------------------------------- /ocaml_typing/402/pprintast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/pprintast.ml -------------------------------------------------------------------------------- /ocaml_typing/402/pprintast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/pprintast.mli -------------------------------------------------------------------------------- /ocaml_typing/402/predef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/predef.ml -------------------------------------------------------------------------------- /ocaml_typing/402/predef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/predef.mli -------------------------------------------------------------------------------- /ocaml_typing/402/primitive.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/primitive.ml -------------------------------------------------------------------------------- /ocaml_typing/402/primitive.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/primitive.mli -------------------------------------------------------------------------------- /ocaml_typing/402/printast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printast.ml -------------------------------------------------------------------------------- /ocaml_typing/402/printast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printast.mli -------------------------------------------------------------------------------- /ocaml_typing/402/printlambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printlambda.ml -------------------------------------------------------------------------------- /ocaml_typing/402/printlambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printlambda.mli -------------------------------------------------------------------------------- /ocaml_typing/402/printtyp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printtyp.ml -------------------------------------------------------------------------------- /ocaml_typing/402/printtyp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printtyp.mli -------------------------------------------------------------------------------- /ocaml_typing/402/printtyped.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printtyped.ml -------------------------------------------------------------------------------- /ocaml_typing/402/printtyped.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/printtyped.mli -------------------------------------------------------------------------------- /ocaml_typing/402/runtimedef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/runtimedef.mli -------------------------------------------------------------------------------- /ocaml_typing/402/simplif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/simplif.ml -------------------------------------------------------------------------------- /ocaml_typing/402/simplif.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/simplif.mli -------------------------------------------------------------------------------- /ocaml_typing/402/stypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/stypes.ml -------------------------------------------------------------------------------- /ocaml_typing/402/stypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/stypes.mli -------------------------------------------------------------------------------- /ocaml_typing/402/subst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/subst.ml -------------------------------------------------------------------------------- /ocaml_typing/402/subst.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/subst.mli -------------------------------------------------------------------------------- /ocaml_typing/402/switch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/switch.ml -------------------------------------------------------------------------------- /ocaml_typing/402/switch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/switch.mli -------------------------------------------------------------------------------- /ocaml_typing/402/syntaxerr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/syntaxerr.ml -------------------------------------------------------------------------------- /ocaml_typing/402/syntaxerr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/syntaxerr.mli -------------------------------------------------------------------------------- /ocaml_typing/402/tbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/tbl.ml -------------------------------------------------------------------------------- /ocaml_typing/402/tbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/tbl.mli -------------------------------------------------------------------------------- /ocaml_typing/402/terminfo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/terminfo.ml -------------------------------------------------------------------------------- /ocaml_typing/402/terminfo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/terminfo.mli -------------------------------------------------------------------------------- /ocaml_typing/402/translclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translclass.ml -------------------------------------------------------------------------------- /ocaml_typing/402/translclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translclass.mli -------------------------------------------------------------------------------- /ocaml_typing/402/translcore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translcore.ml -------------------------------------------------------------------------------- /ocaml_typing/402/translcore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translcore.mli -------------------------------------------------------------------------------- /ocaml_typing/402/translmod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translmod.ml -------------------------------------------------------------------------------- /ocaml_typing/402/translmod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translmod.mli -------------------------------------------------------------------------------- /ocaml_typing/402/translobj.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translobj.ml -------------------------------------------------------------------------------- /ocaml_typing/402/translobj.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/translobj.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typeclass.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typeclass.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typecore.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typecore.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typedecl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typedecl.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typedecl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typedecl.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typedtree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typedtree.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typedtree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typedtree.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typedtreeIter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typedtreeIter.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typedtreeMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typedtreeMap.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typedtreeMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typedtreeMap.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typemod.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typemod.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typeopt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typeopt.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typeopt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typeopt.mli -------------------------------------------------------------------------------- /ocaml_typing/402/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/types.ml -------------------------------------------------------------------------------- /ocaml_typing/402/types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/types.mli -------------------------------------------------------------------------------- /ocaml_typing/402/typetexp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typetexp.ml -------------------------------------------------------------------------------- /ocaml_typing/402/typetexp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/typetexp.mli -------------------------------------------------------------------------------- /ocaml_typing/402/untypeast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/untypeast.ml -------------------------------------------------------------------------------- /ocaml_typing/402/untypeast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/untypeast.mli -------------------------------------------------------------------------------- /ocaml_typing/402/warnings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/warnings.ml -------------------------------------------------------------------------------- /ocaml_typing/402/warnings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/402/warnings.mli -------------------------------------------------------------------------------- /ocaml_typing/406/annot.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/annot.mli -------------------------------------------------------------------------------- /ocaml_typing/406/arg_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/arg_helper.ml -------------------------------------------------------------------------------- /ocaml_typing/406/arg_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/arg_helper.mli -------------------------------------------------------------------------------- /ocaml_typing/406/ast_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ast_helper.ml -------------------------------------------------------------------------------- /ocaml_typing/406/ast_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ast_helper.mli -------------------------------------------------------------------------------- /ocaml_typing/406/ast_iterator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ast_iterator.ml -------------------------------------------------------------------------------- /ocaml_typing/406/ast_iterator.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ast_iterator.mli -------------------------------------------------------------------------------- /ocaml_typing/406/ast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ast_mapper.ml -------------------------------------------------------------------------------- /ocaml_typing/406/ast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ast_mapper.mli -------------------------------------------------------------------------------- /ocaml_typing/406/asttypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/asttypes.mli -------------------------------------------------------------------------------- /ocaml_typing/406/attr_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/attr_helper.ml -------------------------------------------------------------------------------- /ocaml_typing/406/attr_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/attr_helper.mli -------------------------------------------------------------------------------- /ocaml_typing/406/btype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/btype.ml -------------------------------------------------------------------------------- /ocaml_typing/406/btype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/btype.mli -------------------------------------------------------------------------------- /ocaml_typing/406/bytesections.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/bytesections.ml -------------------------------------------------------------------------------- /ocaml_typing/406/bytesections.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/bytesections.mli -------------------------------------------------------------------------------- /ocaml_typing/406/ccomp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ccomp.ml -------------------------------------------------------------------------------- /ocaml_typing/406/ccomp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ccomp.mli -------------------------------------------------------------------------------- /ocaml_typing/406/clflags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/clflags.ml -------------------------------------------------------------------------------- /ocaml_typing/406/clflags.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/clflags.mli -------------------------------------------------------------------------------- /ocaml_typing/406/cmi_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/cmi_format.ml -------------------------------------------------------------------------------- /ocaml_typing/406/cmi_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/cmi_format.mli -------------------------------------------------------------------------------- /ocaml_typing/406/cmo_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/cmo_format.mli -------------------------------------------------------------------------------- /ocaml_typing/406/cmt_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/cmt_format.ml -------------------------------------------------------------------------------- /ocaml_typing/406/cmt_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/cmt_format.mli -------------------------------------------------------------------------------- /ocaml_typing/406/compdynlink.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/compdynlink.mli -------------------------------------------------------------------------------- /ocaml_typing/406/compenv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/compenv.ml -------------------------------------------------------------------------------- /ocaml_typing/406/compenv.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/compenv.mli -------------------------------------------------------------------------------- /ocaml_typing/406/compmisc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/compmisc.ml -------------------------------------------------------------------------------- /ocaml_typing/406/compmisc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/compmisc.mli -------------------------------------------------------------------------------- /ocaml_typing/406/compplugin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/compplugin.ml -------------------------------------------------------------------------------- /ocaml_typing/406/compplugin.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/compplugin.mli -------------------------------------------------------------------------------- /ocaml_typing/406/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/config.ml -------------------------------------------------------------------------------- /ocaml_typing/406/config.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/config.mli -------------------------------------------------------------------------------- /ocaml_typing/406/consistbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/consistbl.ml -------------------------------------------------------------------------------- /ocaml_typing/406/consistbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/consistbl.mli -------------------------------------------------------------------------------- /ocaml_typing/406/ctype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ctype.ml -------------------------------------------------------------------------------- /ocaml_typing/406/ctype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ctype.mli -------------------------------------------------------------------------------- /ocaml_typing/406/datarepr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/datarepr.ml -------------------------------------------------------------------------------- /ocaml_typing/406/datarepr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/datarepr.mli -------------------------------------------------------------------------------- /ocaml_typing/406/depend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/depend.ml -------------------------------------------------------------------------------- /ocaml_typing/406/depend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/depend.mli -------------------------------------------------------------------------------- /ocaml_typing/406/dll.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/dll.ml -------------------------------------------------------------------------------- /ocaml_typing/406/dll.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/dll.mli -------------------------------------------------------------------------------- /ocaml_typing/406/docstrings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/docstrings.ml -------------------------------------------------------------------------------- /ocaml_typing/406/docstrings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/docstrings.mli -------------------------------------------------------------------------------- /ocaml_typing/406/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/dune -------------------------------------------------------------------------------- /ocaml_typing/406/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/env.ml -------------------------------------------------------------------------------- /ocaml_typing/406/env.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/env.mli -------------------------------------------------------------------------------- /ocaml_typing/406/envaux.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/envaux.ml -------------------------------------------------------------------------------- /ocaml_typing/406/envaux.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/envaux.mli -------------------------------------------------------------------------------- /ocaml_typing/406/ident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ident.ml -------------------------------------------------------------------------------- /ocaml_typing/406/ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/ident.mli -------------------------------------------------------------------------------- /ocaml_typing/406/identifiable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/identifiable.ml -------------------------------------------------------------------------------- /ocaml_typing/406/identifiable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/identifiable.mli -------------------------------------------------------------------------------- /ocaml_typing/406/includeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/includeclass.ml -------------------------------------------------------------------------------- /ocaml_typing/406/includeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/includeclass.mli -------------------------------------------------------------------------------- /ocaml_typing/406/includecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/includecore.ml -------------------------------------------------------------------------------- /ocaml_typing/406/includecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/includecore.mli -------------------------------------------------------------------------------- /ocaml_typing/406/includemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/includemod.ml -------------------------------------------------------------------------------- /ocaml_typing/406/includemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/includemod.mli -------------------------------------------------------------------------------- /ocaml_typing/406/lambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/lambda.ml -------------------------------------------------------------------------------- /ocaml_typing/406/lambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/lambda.mli -------------------------------------------------------------------------------- /ocaml_typing/406/lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/lexer.ml -------------------------------------------------------------------------------- /ocaml_typing/406/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/lexer.mli -------------------------------------------------------------------------------- /ocaml_typing/406/location.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/location.ml -------------------------------------------------------------------------------- /ocaml_typing/406/location.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/location.mli -------------------------------------------------------------------------------- /ocaml_typing/406/longident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/longident.ml -------------------------------------------------------------------------------- /ocaml_typing/406/longident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/longident.mli -------------------------------------------------------------------------------- /ocaml_typing/406/main_args.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/main_args.ml -------------------------------------------------------------------------------- /ocaml_typing/406/main_args.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/main_args.mli -------------------------------------------------------------------------------- /ocaml_typing/406/makedepend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/makedepend.ml -------------------------------------------------------------------------------- /ocaml_typing/406/makedepend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/makedepend.mli -------------------------------------------------------------------------------- /ocaml_typing/406/matching.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/matching.ml -------------------------------------------------------------------------------- /ocaml_typing/406/matching.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/matching.mli -------------------------------------------------------------------------------- /ocaml_typing/406/meta.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/meta.ml -------------------------------------------------------------------------------- /ocaml_typing/406/meta.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/meta.mli -------------------------------------------------------------------------------- /ocaml_typing/406/misc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/misc.ml -------------------------------------------------------------------------------- /ocaml_typing/406/misc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/misc.mli -------------------------------------------------------------------------------- /ocaml_typing/406/mtype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/mtype.ml -------------------------------------------------------------------------------- /ocaml_typing/406/mtype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/mtype.mli -------------------------------------------------------------------------------- /ocaml_typing/406/numbers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/numbers.ml -------------------------------------------------------------------------------- /ocaml_typing/406/numbers.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/numbers.mli -------------------------------------------------------------------------------- /ocaml_typing/406/opcodes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/opcodes.ml -------------------------------------------------------------------------------- /ocaml_typing/406/oprint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/oprint.ml -------------------------------------------------------------------------------- /ocaml_typing/406/oprint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/oprint.mli -------------------------------------------------------------------------------- /ocaml_typing/406/outcometree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/outcometree.mli -------------------------------------------------------------------------------- /ocaml_typing/406/parmatch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/parmatch.ml -------------------------------------------------------------------------------- /ocaml_typing/406/parmatch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/parmatch.mli -------------------------------------------------------------------------------- /ocaml_typing/406/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/parse.ml -------------------------------------------------------------------------------- /ocaml_typing/406/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/parse.mli -------------------------------------------------------------------------------- /ocaml_typing/406/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/parser.ml -------------------------------------------------------------------------------- /ocaml_typing/406/parser.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/parser.mli -------------------------------------------------------------------------------- /ocaml_typing/406/parsetree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/parsetree.mli -------------------------------------------------------------------------------- /ocaml_typing/406/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/path.ml -------------------------------------------------------------------------------- /ocaml_typing/406/path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/path.mli -------------------------------------------------------------------------------- /ocaml_typing/406/pparse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/pparse.ml -------------------------------------------------------------------------------- /ocaml_typing/406/pparse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/pparse.mli -------------------------------------------------------------------------------- /ocaml_typing/406/pprintast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/pprintast.ml -------------------------------------------------------------------------------- /ocaml_typing/406/pprintast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/pprintast.mli -------------------------------------------------------------------------------- /ocaml_typing/406/predef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/predef.ml -------------------------------------------------------------------------------- /ocaml_typing/406/predef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/predef.mli -------------------------------------------------------------------------------- /ocaml_typing/406/primitive.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/primitive.ml -------------------------------------------------------------------------------- /ocaml_typing/406/primitive.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/primitive.mli -------------------------------------------------------------------------------- /ocaml_typing/406/printast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printast.ml -------------------------------------------------------------------------------- /ocaml_typing/406/printast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printast.mli -------------------------------------------------------------------------------- /ocaml_typing/406/printlambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printlambda.ml -------------------------------------------------------------------------------- /ocaml_typing/406/printlambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printlambda.mli -------------------------------------------------------------------------------- /ocaml_typing/406/printtyp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printtyp.ml -------------------------------------------------------------------------------- /ocaml_typing/406/printtyp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printtyp.mli -------------------------------------------------------------------------------- /ocaml_typing/406/printtyped.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printtyped.ml -------------------------------------------------------------------------------- /ocaml_typing/406/printtyped.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/printtyped.mli -------------------------------------------------------------------------------- /ocaml_typing/406/profile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/profile.ml -------------------------------------------------------------------------------- /ocaml_typing/406/profile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/profile.mli -------------------------------------------------------------------------------- /ocaml_typing/406/runtimedef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/runtimedef.ml -------------------------------------------------------------------------------- /ocaml_typing/406/runtimedef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/runtimedef.mli -------------------------------------------------------------------------------- /ocaml_typing/406/simplif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/simplif.ml -------------------------------------------------------------------------------- /ocaml_typing/406/simplif.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/simplif.mli -------------------------------------------------------------------------------- /ocaml_typing/406/stypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/stypes.ml -------------------------------------------------------------------------------- /ocaml_typing/406/stypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/stypes.mli -------------------------------------------------------------------------------- /ocaml_typing/406/subst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/subst.ml -------------------------------------------------------------------------------- /ocaml_typing/406/subst.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/subst.mli -------------------------------------------------------------------------------- /ocaml_typing/406/switch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/switch.ml -------------------------------------------------------------------------------- /ocaml_typing/406/switch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/switch.mli -------------------------------------------------------------------------------- /ocaml_typing/406/symtable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/symtable.ml -------------------------------------------------------------------------------- /ocaml_typing/406/symtable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/symtable.mli -------------------------------------------------------------------------------- /ocaml_typing/406/syntaxerr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/syntaxerr.ml -------------------------------------------------------------------------------- /ocaml_typing/406/syntaxerr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/syntaxerr.mli -------------------------------------------------------------------------------- /ocaml_typing/406/targetint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/targetint.ml -------------------------------------------------------------------------------- /ocaml_typing/406/targetint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/targetint.mli -------------------------------------------------------------------------------- /ocaml_typing/406/tast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/tast_mapper.ml -------------------------------------------------------------------------------- /ocaml_typing/406/tast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/tast_mapper.mli -------------------------------------------------------------------------------- /ocaml_typing/406/tbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/tbl.ml -------------------------------------------------------------------------------- /ocaml_typing/406/tbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/tbl.mli -------------------------------------------------------------------------------- /ocaml_typing/406/terminfo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/terminfo.ml -------------------------------------------------------------------------------- /ocaml_typing/406/terminfo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/terminfo.mli -------------------------------------------------------------------------------- /ocaml_typing/406/translclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translclass.ml -------------------------------------------------------------------------------- /ocaml_typing/406/translclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translclass.mli -------------------------------------------------------------------------------- /ocaml_typing/406/translcore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translcore.ml -------------------------------------------------------------------------------- /ocaml_typing/406/translcore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translcore.mli -------------------------------------------------------------------------------- /ocaml_typing/406/translmod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translmod.ml -------------------------------------------------------------------------------- /ocaml_typing/406/translmod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translmod.mli -------------------------------------------------------------------------------- /ocaml_typing/406/translobj.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translobj.ml -------------------------------------------------------------------------------- /ocaml_typing/406/translobj.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/translobj.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typeclass.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typeclass.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typecore.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typecore.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typedecl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typedecl.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typedecl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typedecl.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typedtree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typedtree.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typedtree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typedtree.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typedtreeIter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typedtreeIter.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typedtreeMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typedtreeMap.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typedtreeMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typedtreeMap.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typemod.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typemod.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typeopt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typeopt.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typeopt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typeopt.mli -------------------------------------------------------------------------------- /ocaml_typing/406/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/types.ml -------------------------------------------------------------------------------- /ocaml_typing/406/types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/types.mli -------------------------------------------------------------------------------- /ocaml_typing/406/typetexp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typetexp.ml -------------------------------------------------------------------------------- /ocaml_typing/406/typetexp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/typetexp.mli -------------------------------------------------------------------------------- /ocaml_typing/406/untypeast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/untypeast.ml -------------------------------------------------------------------------------- /ocaml_typing/406/untypeast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/untypeast.mli -------------------------------------------------------------------------------- /ocaml_typing/406/warnings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/warnings.ml -------------------------------------------------------------------------------- /ocaml_typing/406/warnings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/406/warnings.mli -------------------------------------------------------------------------------- /ocaml_typing/407/annot.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/annot.mli -------------------------------------------------------------------------------- /ocaml_typing/407/arg_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/arg_helper.ml -------------------------------------------------------------------------------- /ocaml_typing/407/arg_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/arg_helper.mli -------------------------------------------------------------------------------- /ocaml_typing/407/ast_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ast_helper.ml -------------------------------------------------------------------------------- /ocaml_typing/407/ast_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ast_helper.mli -------------------------------------------------------------------------------- /ocaml_typing/407/ast_iterator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ast_iterator.ml -------------------------------------------------------------------------------- /ocaml_typing/407/ast_iterator.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ast_iterator.mli -------------------------------------------------------------------------------- /ocaml_typing/407/ast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ast_mapper.ml -------------------------------------------------------------------------------- /ocaml_typing/407/ast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ast_mapper.mli -------------------------------------------------------------------------------- /ocaml_typing/407/asttypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/asttypes.mli -------------------------------------------------------------------------------- /ocaml_typing/407/attr_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/attr_helper.ml -------------------------------------------------------------------------------- /ocaml_typing/407/attr_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/attr_helper.mli -------------------------------------------------------------------------------- /ocaml_typing/407/btype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/btype.ml -------------------------------------------------------------------------------- /ocaml_typing/407/btype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/btype.mli -------------------------------------------------------------------------------- /ocaml_typing/407/bytesections.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/bytesections.ml -------------------------------------------------------------------------------- /ocaml_typing/407/bytesections.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/bytesections.mli -------------------------------------------------------------------------------- /ocaml_typing/407/ccomp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ccomp.ml -------------------------------------------------------------------------------- /ocaml_typing/407/ccomp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ccomp.mli -------------------------------------------------------------------------------- /ocaml_typing/407/clflags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/clflags.ml -------------------------------------------------------------------------------- /ocaml_typing/407/clflags.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/clflags.mli -------------------------------------------------------------------------------- /ocaml_typing/407/cmi_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/cmi_format.ml -------------------------------------------------------------------------------- /ocaml_typing/407/cmi_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/cmi_format.mli -------------------------------------------------------------------------------- /ocaml_typing/407/cmo_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/cmo_format.mli -------------------------------------------------------------------------------- /ocaml_typing/407/cmt_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/cmt_format.ml -------------------------------------------------------------------------------- /ocaml_typing/407/cmt_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/cmt_format.mli -------------------------------------------------------------------------------- /ocaml_typing/407/compdynlink.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/compdynlink.mli -------------------------------------------------------------------------------- /ocaml_typing/407/compenv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/compenv.ml -------------------------------------------------------------------------------- /ocaml_typing/407/compenv.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/compenv.mli -------------------------------------------------------------------------------- /ocaml_typing/407/compmisc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/compmisc.ml -------------------------------------------------------------------------------- /ocaml_typing/407/compmisc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/compmisc.mli -------------------------------------------------------------------------------- /ocaml_typing/407/compplugin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/compplugin.ml -------------------------------------------------------------------------------- /ocaml_typing/407/compplugin.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/compplugin.mli -------------------------------------------------------------------------------- /ocaml_typing/407/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/config.ml -------------------------------------------------------------------------------- /ocaml_typing/407/config.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/config.mli -------------------------------------------------------------------------------- /ocaml_typing/407/consistbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/consistbl.ml -------------------------------------------------------------------------------- /ocaml_typing/407/consistbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/consistbl.mli -------------------------------------------------------------------------------- /ocaml_typing/407/ctype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ctype.ml -------------------------------------------------------------------------------- /ocaml_typing/407/ctype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ctype.mli -------------------------------------------------------------------------------- /ocaml_typing/407/datarepr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/datarepr.ml -------------------------------------------------------------------------------- /ocaml_typing/407/datarepr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/datarepr.mli -------------------------------------------------------------------------------- /ocaml_typing/407/depend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/depend.ml -------------------------------------------------------------------------------- /ocaml_typing/407/depend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/depend.mli -------------------------------------------------------------------------------- /ocaml_typing/407/dll.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/dll.ml -------------------------------------------------------------------------------- /ocaml_typing/407/dll.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/dll.mli -------------------------------------------------------------------------------- /ocaml_typing/407/docstrings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/docstrings.ml -------------------------------------------------------------------------------- /ocaml_typing/407/docstrings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/docstrings.mli -------------------------------------------------------------------------------- /ocaml_typing/407/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/dune -------------------------------------------------------------------------------- /ocaml_typing/407/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/env.ml -------------------------------------------------------------------------------- /ocaml_typing/407/env.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/env.mli -------------------------------------------------------------------------------- /ocaml_typing/407/envaux.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/envaux.ml -------------------------------------------------------------------------------- /ocaml_typing/407/envaux.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/envaux.mli -------------------------------------------------------------------------------- /ocaml_typing/407/ident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ident.ml -------------------------------------------------------------------------------- /ocaml_typing/407/ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/ident.mli -------------------------------------------------------------------------------- /ocaml_typing/407/identifiable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/identifiable.ml -------------------------------------------------------------------------------- /ocaml_typing/407/identifiable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/identifiable.mli -------------------------------------------------------------------------------- /ocaml_typing/407/includeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/includeclass.ml -------------------------------------------------------------------------------- /ocaml_typing/407/includeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/includeclass.mli -------------------------------------------------------------------------------- /ocaml_typing/407/includecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/includecore.ml -------------------------------------------------------------------------------- /ocaml_typing/407/includecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/includecore.mli -------------------------------------------------------------------------------- /ocaml_typing/407/includemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/includemod.ml -------------------------------------------------------------------------------- /ocaml_typing/407/includemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/includemod.mli -------------------------------------------------------------------------------- /ocaml_typing/407/lambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/lambda.ml -------------------------------------------------------------------------------- /ocaml_typing/407/lambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/lambda.mli -------------------------------------------------------------------------------- /ocaml_typing/407/lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/lexer.ml -------------------------------------------------------------------------------- /ocaml_typing/407/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/lexer.mli -------------------------------------------------------------------------------- /ocaml_typing/407/location.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/location.ml -------------------------------------------------------------------------------- /ocaml_typing/407/location.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/location.mli -------------------------------------------------------------------------------- /ocaml_typing/407/longident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/longident.ml -------------------------------------------------------------------------------- /ocaml_typing/407/longident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/longident.mli -------------------------------------------------------------------------------- /ocaml_typing/407/main_args.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/main_args.ml -------------------------------------------------------------------------------- /ocaml_typing/407/main_args.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/main_args.mli -------------------------------------------------------------------------------- /ocaml_typing/407/makedepend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/makedepend.ml -------------------------------------------------------------------------------- /ocaml_typing/407/makedepend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/makedepend.mli -------------------------------------------------------------------------------- /ocaml_typing/407/matching.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/matching.ml -------------------------------------------------------------------------------- /ocaml_typing/407/matching.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/matching.mli -------------------------------------------------------------------------------- /ocaml_typing/407/meta.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/meta.ml -------------------------------------------------------------------------------- /ocaml_typing/407/meta.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/meta.mli -------------------------------------------------------------------------------- /ocaml_typing/407/misc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/misc.ml -------------------------------------------------------------------------------- /ocaml_typing/407/misc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/misc.mli -------------------------------------------------------------------------------- /ocaml_typing/407/mtype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/mtype.ml -------------------------------------------------------------------------------- /ocaml_typing/407/mtype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/mtype.mli -------------------------------------------------------------------------------- /ocaml_typing/407/numbers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/numbers.ml -------------------------------------------------------------------------------- /ocaml_typing/407/numbers.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/numbers.mli -------------------------------------------------------------------------------- /ocaml_typing/407/opcodes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/opcodes.ml -------------------------------------------------------------------------------- /ocaml_typing/407/oprint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/oprint.ml -------------------------------------------------------------------------------- /ocaml_typing/407/oprint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/oprint.mli -------------------------------------------------------------------------------- /ocaml_typing/407/outcometree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/outcometree.mli -------------------------------------------------------------------------------- /ocaml_typing/407/parmatch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/parmatch.ml -------------------------------------------------------------------------------- /ocaml_typing/407/parmatch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/parmatch.mli -------------------------------------------------------------------------------- /ocaml_typing/407/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/parse.ml -------------------------------------------------------------------------------- /ocaml_typing/407/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/parse.mli -------------------------------------------------------------------------------- /ocaml_typing/407/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/parser.ml -------------------------------------------------------------------------------- /ocaml_typing/407/parser.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/parser.mli -------------------------------------------------------------------------------- /ocaml_typing/407/parsetree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/parsetree.mli -------------------------------------------------------------------------------- /ocaml_typing/407/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/path.ml -------------------------------------------------------------------------------- /ocaml_typing/407/path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/path.mli -------------------------------------------------------------------------------- /ocaml_typing/407/pparse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/pparse.ml -------------------------------------------------------------------------------- /ocaml_typing/407/pparse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/pparse.mli -------------------------------------------------------------------------------- /ocaml_typing/407/pprintast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/pprintast.ml -------------------------------------------------------------------------------- /ocaml_typing/407/pprintast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/pprintast.mli -------------------------------------------------------------------------------- /ocaml_typing/407/predef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/predef.ml -------------------------------------------------------------------------------- /ocaml_typing/407/predef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/predef.mli -------------------------------------------------------------------------------- /ocaml_typing/407/primitive.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/primitive.ml -------------------------------------------------------------------------------- /ocaml_typing/407/primitive.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/primitive.mli -------------------------------------------------------------------------------- /ocaml_typing/407/printast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printast.ml -------------------------------------------------------------------------------- /ocaml_typing/407/printast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printast.mli -------------------------------------------------------------------------------- /ocaml_typing/407/printlambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printlambda.ml -------------------------------------------------------------------------------- /ocaml_typing/407/printlambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printlambda.mli -------------------------------------------------------------------------------- /ocaml_typing/407/printpat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printpat.ml -------------------------------------------------------------------------------- /ocaml_typing/407/printpat.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printpat.mli -------------------------------------------------------------------------------- /ocaml_typing/407/printtyp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printtyp.ml -------------------------------------------------------------------------------- /ocaml_typing/407/printtyp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printtyp.mli -------------------------------------------------------------------------------- /ocaml_typing/407/printtyped.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printtyped.ml -------------------------------------------------------------------------------- /ocaml_typing/407/printtyped.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/printtyped.mli -------------------------------------------------------------------------------- /ocaml_typing/407/profile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/profile.ml -------------------------------------------------------------------------------- /ocaml_typing/407/profile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/profile.mli -------------------------------------------------------------------------------- /ocaml_typing/407/runtimedef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/runtimedef.ml -------------------------------------------------------------------------------- /ocaml_typing/407/runtimedef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/runtimedef.mli -------------------------------------------------------------------------------- /ocaml_typing/407/simplif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/simplif.ml -------------------------------------------------------------------------------- /ocaml_typing/407/simplif.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/simplif.mli -------------------------------------------------------------------------------- /ocaml_typing/407/stypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/stypes.ml -------------------------------------------------------------------------------- /ocaml_typing/407/stypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/stypes.mli -------------------------------------------------------------------------------- /ocaml_typing/407/subst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/subst.ml -------------------------------------------------------------------------------- /ocaml_typing/407/subst.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/subst.mli -------------------------------------------------------------------------------- /ocaml_typing/407/switch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/switch.ml -------------------------------------------------------------------------------- /ocaml_typing/407/switch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/switch.mli -------------------------------------------------------------------------------- /ocaml_typing/407/symtable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/symtable.ml -------------------------------------------------------------------------------- /ocaml_typing/407/symtable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/symtable.mli -------------------------------------------------------------------------------- /ocaml_typing/407/syntaxerr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/syntaxerr.ml -------------------------------------------------------------------------------- /ocaml_typing/407/syntaxerr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/syntaxerr.mli -------------------------------------------------------------------------------- /ocaml_typing/407/targetint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/targetint.ml -------------------------------------------------------------------------------- /ocaml_typing/407/targetint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/targetint.mli -------------------------------------------------------------------------------- /ocaml_typing/407/tast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/tast_mapper.ml -------------------------------------------------------------------------------- /ocaml_typing/407/tast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/tast_mapper.mli -------------------------------------------------------------------------------- /ocaml_typing/407/tbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/tbl.ml -------------------------------------------------------------------------------- /ocaml_typing/407/tbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/tbl.mli -------------------------------------------------------------------------------- /ocaml_typing/407/terminfo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/terminfo.ml -------------------------------------------------------------------------------- /ocaml_typing/407/terminfo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/terminfo.mli -------------------------------------------------------------------------------- /ocaml_typing/407/translclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translclass.ml -------------------------------------------------------------------------------- /ocaml_typing/407/translclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translclass.mli -------------------------------------------------------------------------------- /ocaml_typing/407/translcore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translcore.ml -------------------------------------------------------------------------------- /ocaml_typing/407/translcore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translcore.mli -------------------------------------------------------------------------------- /ocaml_typing/407/translmod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translmod.ml -------------------------------------------------------------------------------- /ocaml_typing/407/translmod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translmod.mli -------------------------------------------------------------------------------- /ocaml_typing/407/translobj.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translobj.ml -------------------------------------------------------------------------------- /ocaml_typing/407/translobj.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translobj.mli -------------------------------------------------------------------------------- /ocaml_typing/407/translprim.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translprim.ml -------------------------------------------------------------------------------- /ocaml_typing/407/translprim.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/translprim.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typeclass.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typeclass.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typecore.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typecore.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typedecl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typedecl.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typedecl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typedecl.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typedtree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typedtree.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typedtree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typedtree.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typedtreeIter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typedtreeIter.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typedtreeMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typedtreeMap.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typedtreeMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typedtreeMap.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typemod.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typemod.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typeopt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typeopt.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typeopt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typeopt.mli -------------------------------------------------------------------------------- /ocaml_typing/407/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/types.ml -------------------------------------------------------------------------------- /ocaml_typing/407/types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/types.mli -------------------------------------------------------------------------------- /ocaml_typing/407/typetexp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typetexp.ml -------------------------------------------------------------------------------- /ocaml_typing/407/typetexp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/typetexp.mli -------------------------------------------------------------------------------- /ocaml_typing/407/untypeast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/untypeast.ml -------------------------------------------------------------------------------- /ocaml_typing/407/untypeast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/untypeast.mli -------------------------------------------------------------------------------- /ocaml_typing/407/warnings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/warnings.ml -------------------------------------------------------------------------------- /ocaml_typing/407/warnings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/407/warnings.mli -------------------------------------------------------------------------------- /ocaml_typing/408/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/408/dune -------------------------------------------------------------------------------- /ocaml_typing/assemble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/assemble.js -------------------------------------------------------------------------------- /ocaml_typing/current/Current.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/current/Current.ml -------------------------------------------------------------------------------- /ocaml_typing/current/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ocaml_typing/current/dune -------------------------------------------------------------------------------- /old_ocamls/407/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.6) 2 | -------------------------------------------------------------------------------- /old_ocamls/407/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/old_ocamls/407/esy.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/package.json -------------------------------------------------------------------------------- /pp/Pp.re: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pp/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/pp/dune -------------------------------------------------------------------------------- /pp/pp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/pp/pp.js -------------------------------------------------------------------------------- /ppx/Ppx_Monads.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ppx/Ppx_Monads.re -------------------------------------------------------------------------------- /ppx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/ppx/dune -------------------------------------------------------------------------------- /process_ocaml/402/PrintType.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/402/PrintType.re -------------------------------------------------------------------------------- /process_ocaml/402/ProcessCmt.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/402/ProcessCmt.re -------------------------------------------------------------------------------- /process_ocaml/402/ProcessExtra.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/402/ProcessExtra.re -------------------------------------------------------------------------------- /process_ocaml/402/Process_402.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/402/Process_402.re -------------------------------------------------------------------------------- /process_ocaml/402/Process_402.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/402/Process_402.rei -------------------------------------------------------------------------------- /process_ocaml/402/Shared.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/402/Shared.re -------------------------------------------------------------------------------- /process_ocaml/402/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/402/dune -------------------------------------------------------------------------------- /process_ocaml/406/PrintType.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/406/PrintType.re -------------------------------------------------------------------------------- /process_ocaml/406/ProcessCmt.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/406/ProcessCmt.re -------------------------------------------------------------------------------- /process_ocaml/406/ProcessExtra.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/406/ProcessExtra.re -------------------------------------------------------------------------------- /process_ocaml/406/Process_406.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/406/Process_406.re -------------------------------------------------------------------------------- /process_ocaml/406/Process_406.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/406/Process_406.rei -------------------------------------------------------------------------------- /process_ocaml/406/Shared.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/406/Shared.re -------------------------------------------------------------------------------- /process_ocaml/406/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/406/dune -------------------------------------------------------------------------------- /process_ocaml/407/PrintType.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/407/PrintType.re -------------------------------------------------------------------------------- /process_ocaml/407/ProcessCmt.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/407/ProcessCmt.re -------------------------------------------------------------------------------- /process_ocaml/407/ProcessExtra.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/407/ProcessExtra.re -------------------------------------------------------------------------------- /process_ocaml/407/Process_407.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/407/Process_407.re -------------------------------------------------------------------------------- /process_ocaml/407/Process_407.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/407/Process_407.rei -------------------------------------------------------------------------------- /process_ocaml/407/Shared.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/407/Shared.re -------------------------------------------------------------------------------- /process_ocaml/407/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/407/dune -------------------------------------------------------------------------------- /process_ocaml/408/PrintType.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/408/PrintType.re -------------------------------------------------------------------------------- /process_ocaml/408/ProcessCmt.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/408/ProcessCmt.re -------------------------------------------------------------------------------- /process_ocaml/408/ProcessExtra.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/408/ProcessExtra.re -------------------------------------------------------------------------------- /process_ocaml/408/Process_408.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/408/Process_408.re -------------------------------------------------------------------------------- /process_ocaml/408/Process_408.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/408/Process_408.rei -------------------------------------------------------------------------------- /process_ocaml/408/Shared.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/408/Shared.re -------------------------------------------------------------------------------- /process_ocaml/408/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/408/dune -------------------------------------------------------------------------------- /process_ocaml/base/PrintType.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/base/PrintType.re -------------------------------------------------------------------------------- /process_ocaml/base/ProcessCmt.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/base/ProcessCmt.re -------------------------------------------------------------------------------- /process_ocaml/base/Shared.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/base/Shared.re -------------------------------------------------------------------------------- /process_ocaml/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/process_ocaml/build.sh -------------------------------------------------------------------------------- /reason-language-server.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/release.sh -------------------------------------------------------------------------------- /relite/Example.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Example.re -------------------------------------------------------------------------------- /relite/Expect.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Expect.re -------------------------------------------------------------------------------- /relite/Files.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Files.re -------------------------------------------------------------------------------- /relite/Relite.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Relite.re -------------------------------------------------------------------------------- /relite/Reporter.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Reporter.re -------------------------------------------------------------------------------- /relite/Runner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Runner.re -------------------------------------------------------------------------------- /relite/Suite.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Suite.re -------------------------------------------------------------------------------- /relite/Types.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/Types.re -------------------------------------------------------------------------------- /relite/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/relite/dune -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/runtests.sh -------------------------------------------------------------------------------- /src/analyze/AsYouType.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/AsYouType.re -------------------------------------------------------------------------------- /src/analyze/BuildCommand.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/BuildCommand.re -------------------------------------------------------------------------------- /src/analyze/BuildSystem.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/BuildSystem.re -------------------------------------------------------------------------------- /src/analyze/ErrorParser.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/ErrorParser.re -------------------------------------------------------------------------------- /src/analyze/FindFiles.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/FindFiles.re -------------------------------------------------------------------------------- /src/analyze/Hover.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/Hover.re -------------------------------------------------------------------------------- /src/analyze/NewCompletions.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/NewCompletions.re -------------------------------------------------------------------------------- /src/analyze/Packages.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/Packages.re -------------------------------------------------------------------------------- /src/analyze/PartialParser.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/PartialParser.re -------------------------------------------------------------------------------- /src/analyze/State.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/State.re -------------------------------------------------------------------------------- /src/analyze/TopTypes.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/TopTypes.re -------------------------------------------------------------------------------- /src/analyze/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze/dune -------------------------------------------------------------------------------- /src/analyze_example_tests/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze_example_tests/dune -------------------------------------------------------------------------------- /src/analyze_fixture_tests/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/analyze_fixture_tests/dune -------------------------------------------------------------------------------- /src/full_tests/FullTests.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/full_tests/FullTests.re -------------------------------------------------------------------------------- /src/full_tests/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/full_tests/dune -------------------------------------------------------------------------------- /src/lsp/BasicServer.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/BasicServer.re -------------------------------------------------------------------------------- /src/lsp/Diagnostics.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/Diagnostics.re -------------------------------------------------------------------------------- /src/lsp/Main.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/Main.re -------------------------------------------------------------------------------- /src/lsp/MessageHandlers.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/MessageHandlers.re -------------------------------------------------------------------------------- /src/lsp/NotificationHandlers.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/NotificationHandlers.re -------------------------------------------------------------------------------- /src/lsp/Protocol.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/Protocol.re -------------------------------------------------------------------------------- /src/lsp/Rpc.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/Rpc.re -------------------------------------------------------------------------------- /src/lsp/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/src/lsp/dune -------------------------------------------------------------------------------- /test/RunTests.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/test/RunTests.re -------------------------------------------------------------------------------- /test/TestFramework.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/test/TestFramework.re -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/test/dune -------------------------------------------------------------------------------- /unexceptional/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/unexceptional/Readme.md -------------------------------------------------------------------------------- /unexceptional/tests/basic.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/unexceptional/tests/basic.re -------------------------------------------------------------------------------- /unexceptional/tests/records.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/unexceptional/tests/records.re -------------------------------------------------------------------------------- /util/Commands.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Commands.re -------------------------------------------------------------------------------- /util/Files.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Files.re -------------------------------------------------------------------------------- /util/Infix.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Infix.re -------------------------------------------------------------------------------- /util/JbuildFile.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/JbuildFile.re -------------------------------------------------------------------------------- /util/JsonShort.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/JsonShort.re -------------------------------------------------------------------------------- /util/Log.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Log.re -------------------------------------------------------------------------------- /util/MarkdownOfOCamldoc.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/MarkdownOfOCamldoc.re -------------------------------------------------------------------------------- /util/MerlinFile.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/MerlinFile.re -------------------------------------------------------------------------------- /util/MerlinFile.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/MerlinFile.rei -------------------------------------------------------------------------------- /util/ModuleResolution.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/ModuleResolution.re -------------------------------------------------------------------------------- /util/Monads.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Monads.re -------------------------------------------------------------------------------- /util/PrepareUtils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/PrepareUtils.re -------------------------------------------------------------------------------- /util/Pretty.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Pretty.ml -------------------------------------------------------------------------------- /util/Pretty.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Pretty.mli -------------------------------------------------------------------------------- /util/RJson.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/RJson.re -------------------------------------------------------------------------------- /util/RResult.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/RResult.re -------------------------------------------------------------------------------- /util/Result.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Result.re -------------------------------------------------------------------------------- /util/Semver.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Semver.re -------------------------------------------------------------------------------- /util/Semver.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Semver.rei -------------------------------------------------------------------------------- /util/Utils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/Utils.re -------------------------------------------------------------------------------- /util/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util/dune -------------------------------------------------------------------------------- /util_tests/UtilTests.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util_tests/UtilTests.re -------------------------------------------------------------------------------- /util_tests/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/util_tests/dune -------------------------------------------------------------------------------- /vendor/Json.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/Json.re -------------------------------------------------------------------------------- /vendor/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/dune -------------------------------------------------------------------------------- /vendor/odoc_parser/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/LICENSE.md -------------------------------------------------------------------------------- /vendor/odoc_parser/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/Readme.md -------------------------------------------------------------------------------- /vendor/odoc_parser/ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/ast.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/comment.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/comment.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/error.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/helpers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/helpers.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/lang.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/lang.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/location_.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/location_.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/odoc_lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/odoc_lexer.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/odoc_lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/odoc_lexer.mli -------------------------------------------------------------------------------- /vendor/odoc_parser/odoc_lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/odoc_lexer.mll -------------------------------------------------------------------------------- /vendor/odoc_parser/parse_error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/parse_error.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/parser_.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/parser_.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/parser_.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/parser_.mli -------------------------------------------------------------------------------- /vendor/odoc_parser/paths.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/paths.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/paths.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/paths.mli -------------------------------------------------------------------------------- /vendor/odoc_parser/paths_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/paths_types.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/root.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/root.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/root.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/root.mli -------------------------------------------------------------------------------- /vendor/odoc_parser/semantics.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/semantics.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/semantics.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/semantics.mli -------------------------------------------------------------------------------- /vendor/odoc_parser/syntax.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/syntax.ml -------------------------------------------------------------------------------- /vendor/odoc_parser/syntax.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/syntax.mli -------------------------------------------------------------------------------- /vendor/odoc_parser/token.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/odoc_parser/token.ml -------------------------------------------------------------------------------- /vendor/omd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/Readme.md -------------------------------------------------------------------------------- /vendor/omd/html_characters.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/html_characters.ml -------------------------------------------------------------------------------- /vendor/omd/omd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd.ml -------------------------------------------------------------------------------- /vendor/omd/omd.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd.mli -------------------------------------------------------------------------------- /vendor/omd/omd_backend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_backend.ml -------------------------------------------------------------------------------- /vendor/omd/omd_backend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_backend.mli -------------------------------------------------------------------------------- /vendor/omd/omd_html.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_html.ml -------------------------------------------------------------------------------- /vendor/omd/omd_lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_lexer.ml -------------------------------------------------------------------------------- /vendor/omd/omd_lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_lexer.mli -------------------------------------------------------------------------------- /vendor/omd/omd_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_parser.ml -------------------------------------------------------------------------------- /vendor/omd/omd_parser.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_parser.mli -------------------------------------------------------------------------------- /vendor/omd/omd_representation.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_representation.ml -------------------------------------------------------------------------------- /vendor/omd/omd_representation.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_representation.mli -------------------------------------------------------------------------------- /vendor/omd/omd_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_types.ml -------------------------------------------------------------------------------- /vendor/omd/omd_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_utils.ml -------------------------------------------------------------------------------- /vendor/omd/omd_utils.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_utils.mli -------------------------------------------------------------------------------- /vendor/omd/omd_xtxt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_xtxt.ml -------------------------------------------------------------------------------- /vendor/omd/omd_xtxt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/reason-language-server/HEAD/vendor/omd/omd_xtxt.mli --------------------------------------------------------------------------------