├── .github └── workflows │ ├── bump-version.js │ └── ci.yml ├── .gitignore ├── .ocamlformat ├── .ocamlformat-ignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── analysis.opam ├── analysis ├── Makefile ├── README.md ├── bin │ ├── dune │ └── main.ml ├── dune ├── examples │ ├── example-project │ │ ├── .gitignore │ │ ├── bsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── B.re │ │ │ ├── Embeded.md │ │ │ ├── Hello.res │ │ │ ├── Json.res │ │ │ ├── ModuleWithDocComment.res │ │ │ ├── More.res │ │ │ ├── More.resi │ │ │ ├── Other.res │ │ │ ├── Serde.res │ │ │ ├── TransformHelpers.res │ │ │ ├── ZZ.res │ │ │ └── syntax │ │ │ │ ├── sample-highlighting.res │ │ │ │ ├── sample-highlighting.rs │ │ │ │ └── sample-highlighting.tsx │ │ └── types.json │ ├── larger-project │ │ ├── .gitignore │ │ ├── .merlin │ │ ├── .watchmanconfig │ │ ├── bsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── AutoAnnotate.js │ │ │ ├── AutoAnnotate.res │ │ │ ├── BootloaderResource.js │ │ │ ├── BootloaderResource.res │ │ │ ├── BucklescriptAnnotations.js │ │ │ ├── BucklescriptAnnotations.res │ │ │ ├── ComponentAsProp.js │ │ │ ├── ComponentAsProp.res │ │ │ ├── CreateErrorHandler1.js │ │ │ ├── CreateErrorHandler1.res │ │ │ ├── CreateErrorHandler2.js │ │ │ ├── CreateErrorHandler2.res │ │ │ ├── DeadCodeImplementation.js │ │ │ ├── DeadCodeImplementation.res │ │ │ ├── DeadCodeInterface.js │ │ │ ├── DeadCodeInterface.res │ │ │ ├── DeadExn.js │ │ │ ├── DeadExn.res │ │ │ ├── DeadExn.resi │ │ │ ├── DeadRT.js │ │ │ ├── DeadRT.res │ │ │ ├── DeadRT.resi │ │ │ ├── DeadTest.js │ │ │ ├── DeadTest.res │ │ │ ├── DeadTestBlacklist.js │ │ │ ├── DeadTestBlacklist.res │ │ │ ├── DeadTestWithInterface.js │ │ │ ├── DeadTestWithInterface.res │ │ │ ├── DeadTestWithInterface.resi │ │ │ ├── DeadTypeTest.js │ │ │ ├── DeadTypeTest.res │ │ │ ├── DeadTypeTest.resi │ │ │ ├── DeadValueTest.js │ │ │ ├── DeadValueTest.res │ │ │ ├── DeadValueTest.resi │ │ │ ├── Docstrings.js │ │ │ ├── Docstrings.res │ │ │ ├── DynamicallyLoadedComponent.js │ │ │ ├── DynamicallyLoadedComponent.res │ │ │ ├── EmptyArray.js │ │ │ ├── EmptyArray.res │ │ │ ├── ErrorHandler.js │ │ │ ├── ErrorHandler.res │ │ │ ├── ErrorHandler.resi │ │ │ ├── EverythingLiveHere.js │ │ │ ├── EverythingLiveHere.res │ │ │ ├── FC.js │ │ │ ├── FC.res │ │ │ ├── FirstClassModules.js │ │ │ ├── FirstClassModules.res │ │ │ ├── FirstClassModulesInterface.js │ │ │ ├── FirstClassModulesInterface.res │ │ │ ├── FirstClassModulesInterface.resi │ │ │ ├── Hooks.js │ │ │ ├── Hooks.res │ │ │ ├── IgnoreInterface.js │ │ │ ├── IgnoreInterface.res │ │ │ ├── IgnoreInterface.resi │ │ │ ├── ImmutableArray.js │ │ │ ├── ImmutableArray.res │ │ │ ├── ImmutableArray.resi │ │ │ ├── ImportHookDefault.js │ │ │ ├── ImportHookDefault.res │ │ │ ├── ImportHooks.js │ │ │ ├── ImportHooks.res │ │ │ ├── ImportIndex.js │ │ │ ├── ImportIndex.res │ │ │ ├── ImportJsValue.js │ │ │ ├── ImportJsValue.res │ │ │ ├── ImportMyBanner.js │ │ │ ├── ImportMyBanner.res │ │ │ ├── JSResource.js │ │ │ ├── JSResource.res │ │ │ ├── LetPrivate.js │ │ │ ├── LetPrivate.res │ │ │ ├── ModuleAliases.js │ │ │ ├── ModuleAliases.res │ │ │ ├── ModuleAliases2.js │ │ │ ├── ModuleAliases2.res │ │ │ ├── ModuleExceptionBug.js │ │ │ ├── ModuleExceptionBug.res │ │ │ ├── NestedModules.js │ │ │ ├── NestedModules.res │ │ │ ├── NestedModulesInSignature.js │ │ │ ├── NestedModulesInSignature.res │ │ │ ├── NestedModulesInSignature.resi │ │ │ ├── Newsyntax.js │ │ │ ├── Newsyntax.res │ │ │ ├── Newton.js │ │ │ ├── Newton.res │ │ │ ├── Opaque.js │ │ │ ├── Opaque.res │ │ │ ├── OptArg.js │ │ │ ├── OptArg.res │ │ │ ├── OptArg.resi │ │ │ ├── P.js │ │ │ ├── P.res │ │ │ ├── Records.js │ │ │ ├── Records.res │ │ │ ├── References.js │ │ │ ├── References.res │ │ │ ├── RepeatedLabel.js │ │ │ ├── RepeatedLabel.res │ │ │ ├── RequireCond.js │ │ │ ├── RequireCond.res │ │ │ ├── Shadow.js │ │ │ ├── Shadow.res │ │ │ ├── TestDeadExn.js │ │ │ ├── TestDeadExn.res │ │ │ ├── TestEmitInnerModules.js │ │ │ ├── TestEmitInnerModules.res │ │ │ ├── TestFirstClassModules.js │ │ │ ├── TestFirstClassModules.res │ │ │ ├── TestImmutableArray.js │ │ │ ├── TestImmutableArray.res │ │ │ ├── TestImport.js │ │ │ ├── TestImport.res │ │ │ ├── TestModuleAliases.js │ │ │ ├── TestModuleAliases.res │ │ │ ├── TestOptArg.js │ │ │ ├── TestOptArg.res │ │ │ ├── TestPromise.js │ │ │ ├── TestPromise.res │ │ │ ├── ToSuppress.js │ │ │ ├── ToSuppress.res │ │ │ ├── TransitiveType1.js │ │ │ ├── TransitiveType1.res │ │ │ ├── TransitiveType2.js │ │ │ ├── TransitiveType2.res │ │ │ ├── TransitiveType3.js │ │ │ ├── TransitiveType3.res │ │ │ ├── Tuples.js │ │ │ ├── Tuples.res │ │ │ ├── TypeParams1.js │ │ │ ├── TypeParams1.res │ │ │ ├── TypeParams2.js │ │ │ ├── TypeParams2.res │ │ │ ├── TypeParams3.js │ │ │ ├── TypeParams3.res │ │ │ ├── Types.js │ │ │ ├── Types.res │ │ │ ├── Unboxed.js │ │ │ ├── Unboxed.res │ │ │ ├── Uncurried.js │ │ │ ├── Uncurried.res │ │ │ ├── Unison.js │ │ │ ├── Unison.res │ │ │ ├── UseImportJsValue.js │ │ │ ├── UseImportJsValue.res │ │ │ ├── Variants.js │ │ │ ├── Variants.res │ │ │ ├── VariantsWithPayload.js │ │ │ ├── VariantsWithPayload.res │ │ │ ├── arg_helper.js │ │ │ ├── arg_helper.res │ │ │ ├── ast_helper.js │ │ │ ├── ast_helper.res │ │ │ ├── asttypes.js │ │ │ ├── asttypes.res │ │ │ ├── clflags.js │ │ │ ├── clflags.res │ │ │ ├── config.js │ │ │ ├── config.res │ │ │ ├── exception │ │ │ ├── Arr.js │ │ │ ├── Arr.res │ │ │ ├── BeltTest.js │ │ │ ├── BeltTest.res │ │ │ ├── BsJson.js │ │ │ ├── BsJson.res │ │ │ ├── Exn.js │ │ │ ├── Exn.res │ │ │ ├── ExnA.js │ │ │ ├── ExnA.res │ │ │ ├── ExnB.js │ │ │ ├── ExnB.res │ │ │ ├── ExportWithRename.js │ │ │ ├── ExportWithRename.res │ │ │ ├── InnerModules.js │ │ │ ├── InnerModules.res │ │ │ ├── TestInnerModules.js │ │ │ ├── TestInnerModules.res │ │ │ ├── TestYojson.js │ │ │ ├── TestYojson.res │ │ │ ├── Yojson.js │ │ │ └── Yojson.res │ │ │ ├── format.js │ │ │ ├── format.res │ │ │ ├── identifiable.js │ │ │ ├── location.js │ │ │ ├── location.res │ │ │ ├── longident.js │ │ │ ├── longident.res │ │ │ ├── loop.js │ │ │ ├── loop.res │ │ │ ├── misc.js │ │ │ ├── misc.res │ │ │ ├── nativeint.js │ │ │ ├── nativeint.res │ │ │ ├── numbers.js │ │ │ ├── numbers.res │ │ │ ├── parsetree.js │ │ │ ├── parsetree.res │ │ │ ├── printf.js │ │ │ ├── printf.res │ │ │ ├── res_comment.js │ │ │ ├── res_comment.res │ │ │ ├── res_comments_table.js │ │ │ ├── res_comments_table.res │ │ │ ├── res_core.js │ │ │ ├── res_core.res │ │ │ ├── res_diagnostics.js │ │ │ ├── res_diagnostics.res │ │ │ ├── res_diagnostics_printing_utils.js │ │ │ ├── res_diagnostics_printing_utils.res │ │ │ ├── res_doc.js │ │ │ ├── res_doc.res │ │ │ ├── res_grammar.js │ │ │ ├── res_grammar.res │ │ │ ├── res_js_ffi.js │ │ │ ├── res_js_ffi.res │ │ │ ├── res_minibuffer.js │ │ │ ├── res_minibuffer.res │ │ │ ├── res_parens.js │ │ │ ├── res_parens.res │ │ │ ├── res_parser.js │ │ │ ├── res_parser.res │ │ │ ├── res_parsetree_viewer.js │ │ │ ├── res_parsetree_viewer.res │ │ │ ├── res_printer.js │ │ │ ├── res_printer.res │ │ │ ├── res_reporting.js │ │ │ ├── res_reporting.res │ │ │ ├── res_scanner.js │ │ │ ├── res_scanner.res │ │ │ ├── res_token.js │ │ │ ├── res_token.res │ │ │ ├── res_utf8.js │ │ │ ├── res_utf8.res │ │ │ ├── syntaxerr.js │ │ │ ├── syntaxerr.res │ │ │ ├── warnings.js │ │ │ └── warnings.res │ └── workspace-project │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src │ │ │ └── App.res │ │ ├── bsconfig.json │ │ ├── common │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src │ │ │ ├── Utils.mjs │ │ │ └── Utils.res │ │ ├── myplugin │ │ ├── bsconfig.json │ │ ├── package.json │ │ └── src │ │ │ ├── Promise.mjs │ │ │ └── Promise.res │ │ ├── package-lock.json │ │ └── package.json ├── reanalyze │ ├── Makefile │ ├── dune │ ├── examples │ │ ├── .gitignore │ │ ├── deadcode │ │ │ ├── .gitignore │ │ │ ├── .watchmanconfig │ │ │ ├── Makefile │ │ │ ├── bsconfig.json │ │ │ ├── expected │ │ │ │ ├── deadcode.txt │ │ │ │ └── exception.txt │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── AutoAnnotate.bs.js │ │ │ │ ├── AutoAnnotate.res │ │ │ │ ├── BootloaderResource.bs.js │ │ │ │ ├── BootloaderResource.res │ │ │ │ ├── BucklescriptAnnotations.bs.js │ │ │ │ ├── BucklescriptAnnotations.res │ │ │ │ ├── ComponentAsProp.bs.js │ │ │ │ ├── ComponentAsProp.res │ │ │ │ ├── CreateErrorHandler1.bs.js │ │ │ │ ├── CreateErrorHandler1.res │ │ │ │ ├── CreateErrorHandler2.bs.js │ │ │ │ ├── CreateErrorHandler2.res │ │ │ │ ├── DeadCodeImplementation.bs.js │ │ │ │ ├── DeadCodeImplementation.res │ │ │ │ ├── DeadCodeInterface.bs.js │ │ │ │ ├── DeadCodeInterface.res │ │ │ │ ├── DeadExn.bs.js │ │ │ │ ├── DeadExn.res │ │ │ │ ├── DeadExn.resi │ │ │ │ ├── DeadRT.bs.js │ │ │ │ ├── DeadRT.res │ │ │ │ ├── DeadRT.resi │ │ │ │ ├── DeadTest.bs.js │ │ │ │ ├── DeadTest.res │ │ │ │ ├── DeadTestBlacklist.bs.js │ │ │ │ ├── DeadTestBlacklist.res │ │ │ │ ├── DeadTestWithInterface.bs.js │ │ │ │ ├── DeadTestWithInterface.res │ │ │ │ ├── DeadTestWithInterface.resi │ │ │ │ ├── DeadTypeTest.bs.js │ │ │ │ ├── DeadTypeTest.res │ │ │ │ ├── DeadTypeTest.resi │ │ │ │ ├── DeadValueTest.bs.js │ │ │ │ ├── DeadValueTest.res │ │ │ │ ├── DeadValueTest.resi │ │ │ │ ├── Docstrings.bs.js │ │ │ │ ├── Docstrings.res │ │ │ │ ├── DynamicallyLoadedComponent.bs.js │ │ │ │ ├── DynamicallyLoadedComponent.res │ │ │ │ ├── EmptyArray.bs.js │ │ │ │ ├── EmptyArray.res │ │ │ │ ├── ErrorHandler.bs.js │ │ │ │ ├── ErrorHandler.res │ │ │ │ ├── ErrorHandler.resi │ │ │ │ ├── EverythingLiveHere.bs.js │ │ │ │ ├── EverythingLiveHere.res │ │ │ │ ├── FC.bs.js │ │ │ │ ├── FC.res │ │ │ │ ├── FirstClassModules.bs.js │ │ │ │ ├── FirstClassModules.res │ │ │ │ ├── FirstClassModulesInterface.bs.js │ │ │ │ ├── FirstClassModulesInterface.res │ │ │ │ ├── FirstClassModulesInterface.resi │ │ │ │ ├── Hooks.bs.js │ │ │ │ ├── Hooks.res │ │ │ │ ├── IgnoreInterface.bs.js │ │ │ │ ├── IgnoreInterface.res │ │ │ │ ├── IgnoreInterface.resi │ │ │ │ ├── ImmutableArray.bs.js │ │ │ │ ├── ImmutableArray.res │ │ │ │ ├── ImmutableArray.resi │ │ │ │ ├── ImportHookDefault.bs.js │ │ │ │ ├── ImportHookDefault.res │ │ │ │ ├── ImportHooks.bs.js │ │ │ │ ├── ImportHooks.res │ │ │ │ ├── ImportIndex.bs.js │ │ │ │ ├── ImportIndex.res │ │ │ │ ├── ImportJsValue.bs.js │ │ │ │ ├── ImportJsValue.res │ │ │ │ ├── ImportMyBanner.bs.js │ │ │ │ ├── ImportMyBanner.res │ │ │ │ ├── InnerModuleTypes.bs.js │ │ │ │ ├── InnerModuleTypes.res │ │ │ │ ├── InnerModuleTypes.resi │ │ │ │ ├── JSResource.bs.js │ │ │ │ ├── JSResource.res │ │ │ │ ├── JsxV4.bs.js │ │ │ │ ├── JsxV4.res │ │ │ │ ├── LetPrivate.bs.js │ │ │ │ ├── LetPrivate.res │ │ │ │ ├── ModuleAliases.bs.js │ │ │ │ ├── ModuleAliases.res │ │ │ │ ├── ModuleAliases2.bs.js │ │ │ │ ├── ModuleAliases2.res │ │ │ │ ├── ModuleExceptionBug.bs.js │ │ │ │ ├── ModuleExceptionBug.res │ │ │ │ ├── NestedModules.bs.js │ │ │ │ ├── NestedModules.res │ │ │ │ ├── NestedModulesInSignature.bs.js │ │ │ │ ├── NestedModulesInSignature.res │ │ │ │ ├── NestedModulesInSignature.resi │ │ │ │ ├── Newsyntax.bs.js │ │ │ │ ├── Newsyntax.res │ │ │ │ ├── Newton.bs.js │ │ │ │ ├── Newton.res │ │ │ │ ├── Opaque.bs.js │ │ │ │ ├── Opaque.res │ │ │ │ ├── OptArg.bs.js │ │ │ │ ├── OptArg.res │ │ │ │ ├── OptArg.resi │ │ │ │ ├── Records.bs.js │ │ │ │ ├── Records.res │ │ │ │ ├── References.bs.js │ │ │ │ ├── References.res │ │ │ │ ├── RepeatedLabel.bs.js │ │ │ │ ├── RepeatedLabel.res │ │ │ │ ├── RequireCond.bs.js │ │ │ │ ├── RequireCond.res │ │ │ │ ├── Shadow.bs.js │ │ │ │ ├── Shadow.res │ │ │ │ ├── TestDeadExn.bs.js │ │ │ │ ├── TestDeadExn.res │ │ │ │ ├── TestEmitInnerModules.bs.js │ │ │ │ ├── TestEmitInnerModules.res │ │ │ │ ├── TestFirstClassModules.bs.js │ │ │ │ ├── TestFirstClassModules.res │ │ │ │ ├── TestImmutableArray.bs.js │ │ │ │ ├── TestImmutableArray.res │ │ │ │ ├── TestImport.bs.js │ │ │ │ ├── TestImport.res │ │ │ │ ├── TestInnedModuleTypes.bs.js │ │ │ │ ├── TestInnedModuleTypes.res │ │ │ │ ├── TestModuleAliases.bs.js │ │ │ │ ├── TestModuleAliases.res │ │ │ │ ├── TestOptArg.bs.js │ │ │ │ ├── TestOptArg.res │ │ │ │ ├── TestPromise.bs.js │ │ │ │ ├── TestPromise.res │ │ │ │ ├── ToSuppress.bs.js │ │ │ │ ├── ToSuppress.res │ │ │ │ ├── TransitiveType1.bs.js │ │ │ │ ├── TransitiveType1.res │ │ │ │ ├── TransitiveType2.bs.js │ │ │ │ ├── TransitiveType2.res │ │ │ │ ├── TransitiveType3.bs.js │ │ │ │ ├── TransitiveType3.res │ │ │ │ ├── Tuples.bs.js │ │ │ │ ├── Tuples.res │ │ │ │ ├── TypeParams1.bs.js │ │ │ │ ├── TypeParams1.res │ │ │ │ ├── TypeParams2.bs.js │ │ │ │ ├── TypeParams2.res │ │ │ │ ├── TypeParams3.bs.js │ │ │ │ ├── TypeParams3.res │ │ │ │ ├── Types.bs.js │ │ │ │ ├── Types.res │ │ │ │ ├── Unboxed.bs.js │ │ │ │ ├── Unboxed.res │ │ │ │ ├── Uncurried.bs.js │ │ │ │ ├── Uncurried.res │ │ │ │ ├── Unison.bs.js │ │ │ │ ├── Unison.res │ │ │ │ ├── UseImportJsValue.bs.js │ │ │ │ ├── UseImportJsValue.res │ │ │ │ ├── Variants.bs.js │ │ │ │ ├── Variants.res │ │ │ │ ├── VariantsWithPayload.bs.js │ │ │ │ ├── VariantsWithPayload.res │ │ │ │ ├── exception │ │ │ │ │ ├── Arr.bs.js │ │ │ │ │ ├── Arr.res │ │ │ │ │ ├── BeltTest.bs.js │ │ │ │ │ ├── BeltTest.res │ │ │ │ │ ├── BsJson.bs.js │ │ │ │ │ ├── BsJson.res │ │ │ │ │ ├── Exn.bs.js │ │ │ │ │ ├── Exn.res │ │ │ │ │ ├── ExnA.bs.js │ │ │ │ │ ├── ExnA.res │ │ │ │ │ ├── ExnB.bs.js │ │ │ │ │ ├── ExnB.res │ │ │ │ │ ├── ExportWithRename.bs.js │ │ │ │ │ ├── ExportWithRename.res │ │ │ │ │ ├── InnerModules.bs.js │ │ │ │ │ ├── InnerModules.res │ │ │ │ │ ├── TestInnerModules.bs.js │ │ │ │ │ ├── TestInnerModules.res │ │ │ │ │ ├── TestYojson.bs.js │ │ │ │ │ ├── TestYojson.res │ │ │ │ │ ├── Yojson.bs.js │ │ │ │ │ └── Yojson.res │ │ │ │ ├── exportNestedValues.js │ │ │ │ └── trace.bs.js │ │ │ └── test.sh │ │ └── termination │ │ │ ├── .gitignore │ │ │ ├── .watchmanconfig │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bsconfig.json │ │ │ ├── expected │ │ │ └── termination.txt │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── TestCyberTruck.bs.js │ │ │ └── TestCyberTruck.res │ │ │ └── test.sh │ └── src │ │ ├── Annotation.ml │ │ ├── Arnold.ml │ │ ├── Common.ml │ │ ├── DeadCode.ml │ │ ├── DeadCommon.ml │ │ ├── DeadException.ml │ │ ├── DeadModules.ml │ │ ├── DeadOptionalArgs.ml │ │ ├── DeadType.ml │ │ ├── DeadValue.ml │ │ ├── EmitJson.ml │ │ ├── Exception.ml │ │ ├── Exceptions.ml │ │ ├── Exn.ml │ │ ├── Exn.mli │ │ ├── ExnLib.ml │ │ ├── FindSourceFile.ml │ │ ├── Issues.ml │ │ ├── Log_.ml │ │ ├── ModulePath.ml │ │ ├── Name.ml │ │ ├── Name.mli │ │ ├── Paths.ml │ │ ├── Reanalyze.ml │ │ ├── RunConfig.ml │ │ ├── SideEffects.ml │ │ ├── Suppress.ml │ │ ├── Version.ml │ │ ├── WriteDeadAnnotations.ml │ │ └── dune ├── src │ ├── BuildSystem.ml │ ├── Cache.ml │ ├── Cfg.ml │ ├── Cmt.ml │ ├── CodeActions.ml │ ├── Codemod.ml │ ├── Commands.ml │ ├── CompletionBackEnd.ml │ ├── CompletionDecorators.ml │ ├── CompletionExpressions.ml │ ├── CompletionFrontEnd.ml │ ├── CompletionJsx.ml │ ├── CompletionPatterns.ml │ ├── Completions.ml │ ├── CreateInterface.ml │ ├── DceCommand.ml │ ├── Debug.ml │ ├── Diagnostics.ml │ ├── DocumentSymbol.ml │ ├── DotCompletionUtils.ml │ ├── DumpAst.ml │ ├── Files.ml │ ├── FindFiles.ml │ ├── Hint.ml │ ├── Hover.ml │ ├── JsxHacks.ml │ ├── Loc.ml │ ├── LocalTables.ml │ ├── Log.ml │ ├── Markdown.ml │ ├── ModuleResolution.ml │ ├── Packages.ml │ ├── PipeCompletionUtils.ml │ ├── Pos.ml │ ├── PrintType.ml │ ├── ProcessAttributes.ml │ ├── ProcessCmt.ml │ ├── ProcessExtra.ml │ ├── Protocol.ml │ ├── Range.ml │ ├── References.ml │ ├── ResolvePath.ml │ ├── Scope.ml │ ├── SemanticTokens.ml │ ├── Shared.ml │ ├── SharedTypes.ml │ ├── SignatureHelp.ml │ ├── TypeUtils.ml │ ├── Uri.ml │ ├── Uri.mli │ ├── Utils.ml │ ├── Xform.ml │ └── dune ├── tests-generic-jsx-transform │ ├── Makefile │ ├── package-lock.json │ ├── package.json │ ├── rescript.json │ ├── src │ │ ├── GenericJsx.res │ │ ├── GenericJsxCompletion.res │ │ └── expected │ │ │ ├── GenericJsx.res.txt │ │ │ └── GenericJsxCompletion.res.txt │ └── test.sh ├── tests-incremental-typechecking │ ├── Makefile │ ├── package-lock.json │ ├── package.json │ ├── rescript.json │ ├── src │ │ ├── ConstructorCompletion__Json.res │ │ ├── ConstructorCompletion__Own.res │ │ └── expected │ │ │ ├── ConstructorCompletion__Json.res.txt │ │ │ └── ConstructorCompletion__Own.res.txt │ └── test.sh ├── tests │ ├── Makefile │ ├── bsconfig.json │ ├── not_compiled │ │ ├── Diagnostics.res │ │ ├── DocTemplate.res │ │ ├── DocTemplate.resi │ │ └── expected │ │ │ ├── Diagnostics.res.txt │ │ │ ├── DocTemplate.res.txt │ │ │ └── DocTemplate.resi.txt │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Auto.res │ │ ├── BrokenParserCases.res │ │ ├── CodeLens.res │ │ ├── Codemod.res │ │ ├── CompletableComponent.res │ │ ├── CompletePrioritize1.res │ │ ├── CompletePrioritize2.res │ │ ├── Completion.res │ │ ├── CompletionAttributes.res │ │ ├── CompletionDicts.res │ │ ├── CompletionExpressions.res │ │ ├── CompletionFromModule.res │ │ ├── CompletionFromModule2.res │ │ ├── CompletionFunctionArguments.res │ │ ├── CompletionInferValues.res │ │ ├── CompletionJsx.res │ │ ├── CompletionJsxProps.res │ │ ├── CompletionMultipleEditorCompleteFrom.res │ │ ├── CompletionObjects.res │ │ ├── CompletionPattern.res │ │ ├── CompletionPipeChain.res │ │ ├── CompletionPipeProperty.res │ │ ├── CompletionPipeSubmodules.res │ │ ├── CompletionResolve.res │ │ ├── CompletionSupport.res │ │ ├── CompletionSupport2.res │ │ ├── CompletionTypeAnnotation.res │ │ ├── CompletionTypeT.res │ │ ├── Component.res │ │ ├── Component.resi │ │ ├── CreateInterface.res │ │ ├── Cross.res │ │ ├── Dce.res │ │ ├── Debug.res │ │ ├── Definition.res │ │ ├── DefinitionWithInterface.res │ │ ├── DefinitionWithInterface.resi │ │ ├── Destructuring.res │ │ ├── Div.res │ │ ├── DocComments.res │ │ ├── DocumentSymbol.res │ │ ├── DotPipeCompletionSpec.res │ │ ├── EnvCompletion.res │ │ ├── EnvCompletionOtherFile.res │ │ ├── ExhaustiveSwitch.res │ │ ├── Firebase.res │ │ ├── Fragment.res │ │ ├── Highlight.res │ │ ├── Hover.res │ │ ├── InlayHint.res │ │ ├── Jsx2.res │ │ ├── Jsx2.resi │ │ ├── JsxV4.res │ │ ├── LongIdentTest.res │ │ ├── ModuleStuff.res │ │ ├── Objects.res │ │ ├── Patterns.res │ │ ├── PolyRec.res │ │ ├── QueryFile.res │ │ ├── RecModules.res │ │ ├── RecordCompletion.res │ │ ├── RecoveryOnProp.res │ │ ├── References.res │ │ ├── ReferencesWithInterface.res │ │ ├── ReferencesWithInterface.resi │ │ ├── Rename.res │ │ ├── RenameWithInterface.res │ │ ├── RenameWithInterface.resi │ │ ├── Reprod.res │ │ ├── Rxjs.res │ │ ├── RxjsCompletion.res │ │ ├── SchemaAssets.res │ │ ├── ShadowedBelt.res │ │ ├── SignatureHelp.res │ │ ├── Support.res │ │ ├── TableclothMap.res │ │ ├── TableclothMap.resi │ │ ├── TypeArgCtx.res │ │ ├── TypeAtPosCompletion.res │ │ ├── TypeDefinition.res │ │ ├── Xform.res │ │ ├── dce │ │ │ └── DceTest.res │ │ ├── expected │ │ │ ├── Auto.res.txt │ │ │ ├── BrokenParserCases.res.txt │ │ │ ├── CodeLens.res.txt │ │ │ ├── Codemod.res.txt │ │ │ ├── CompletableComponent.res.txt │ │ │ ├── CompletePrioritize1.res.txt │ │ │ ├── CompletePrioritize2.res.txt │ │ │ ├── Completion.res.txt │ │ │ ├── CompletionAttributes.res.txt │ │ │ ├── CompletionDicts.res.txt │ │ │ ├── CompletionExpressions.res.txt │ │ │ ├── CompletionFromModule.res.txt │ │ │ ├── CompletionFromModule2.res.txt │ │ │ ├── CompletionFunctionArguments.res.txt │ │ │ ├── CompletionInferValues.res.txt │ │ │ ├── CompletionJsx.res.txt │ │ │ ├── CompletionJsxProps.res.txt │ │ │ ├── CompletionMultipleEditorCompleteFrom.res.txt │ │ │ ├── CompletionObjects.res.txt │ │ │ ├── CompletionPattern.res.txt │ │ │ ├── CompletionPipeChain.res.txt │ │ │ ├── CompletionPipeProperty.res.txt │ │ │ ├── CompletionPipeSubmodules.res.txt │ │ │ ├── CompletionResolve.res.txt │ │ │ ├── CompletionSupport.res.txt │ │ │ ├── CompletionSupport2.res.txt │ │ │ ├── CompletionTypeAnnotation.res.txt │ │ │ ├── CompletionTypeT.res.txt │ │ │ ├── Component.res.txt │ │ │ ├── Component.resi.txt │ │ │ ├── CreateInterface.res.txt │ │ │ ├── Cross.res.txt │ │ │ ├── Dce.res.txt │ │ │ ├── Debug.res.txt │ │ │ ├── Definition.res.txt │ │ │ ├── DefinitionWithInterface.res.txt │ │ │ ├── DefinitionWithInterface.resi.txt │ │ │ ├── Destructuring.res.txt │ │ │ ├── Div.res.txt │ │ │ ├── DocComments.res.txt │ │ │ ├── DocExtraction2.res.txt │ │ │ ├── DocExtraction2.resi.txt │ │ │ ├── DocExtractionRes.res.txt │ │ │ ├── DocumentSymbol.res.txt │ │ │ ├── DotPipeCompletionSpec.res.txt │ │ │ ├── EnvCompletion.res.txt │ │ │ ├── EnvCompletionOtherFile.res.txt │ │ │ ├── ExhaustiveSwitch.res.txt │ │ │ ├── Firebase.res.txt │ │ │ ├── Fragment.res.txt │ │ │ ├── Highlight.res.txt │ │ │ ├── Hover.res.txt │ │ │ ├── InlayHint.res.txt │ │ │ ├── Jsx2.res.txt │ │ │ ├── Jsx2.resi.txt │ │ │ ├── JsxV4.res.txt │ │ │ ├── LongIdentTest.res.txt │ │ │ ├── ModuleStuff.res.txt │ │ │ ├── Objects.res.txt │ │ │ ├── Patterns.res.txt │ │ │ ├── PolyRec.res.txt │ │ │ ├── QueryFile.res.txt │ │ │ ├── RecModules.res.txt │ │ │ ├── RecordCompletion.res.txt │ │ │ ├── RecoveryOnProp.res.txt │ │ │ ├── References.res.txt │ │ │ ├── ReferencesWithInterface.res.txt │ │ │ ├── ReferencesWithInterface.resi.txt │ │ │ ├── Rename.res.txt │ │ │ ├── RenameWithInterface.res.txt │ │ │ ├── RenameWithInterface.resi.txt │ │ │ ├── Reprod.res.txt │ │ │ ├── Rxjs.res.txt │ │ │ ├── RxjsCompletion.res.txt │ │ │ ├── SchemaAssets.res.txt │ │ │ ├── ShadowedBelt.res.txt │ │ │ ├── SignatureHelp.res.txt │ │ │ ├── Support.res.txt │ │ │ ├── TableclothMap.res.txt │ │ │ ├── TableclothMap.resi.txt │ │ │ ├── TypeArgCtx.res.txt │ │ │ ├── TypeAtPosCompletion.res.txt │ │ │ ├── TypeDefinition.res.txt │ │ │ └── Xform.res.txt │ │ ├── inner │ │ │ ├── ComponentInner.res │ │ │ ├── ComponentInner.resi │ │ │ ├── ReferencesInner.res │ │ │ └── ReferencesInner.resi │ │ ├── test.json │ │ └── tst.js │ └── test.sh └── vendor │ ├── dune │ ├── ext │ ├── README.md │ ├── bs_hash_stubs.ml │ ├── bsb_db.ml │ ├── bsb_db.mli │ ├── bsc_args.ml │ ├── bsc_args.mli │ ├── bsc_warnings.ml │ ├── config.ml │ ├── config.mli │ ├── dune │ ├── encoding.md │ ├── ext_array.ml │ ├── ext_array.mli │ ├── ext_basic_hash_stubs.c │ ├── ext_buffer.ml │ ├── ext_buffer.mli │ ├── ext_bytes.ml │ ├── ext_bytes.mli │ ├── ext_char.ml │ ├── ext_char.mli │ ├── ext_cmp.ml │ ├── ext_cmp.mli │ ├── ext_color.ml │ ├── ext_color.mli │ ├── ext_digest.ml │ ├── ext_digest.mli │ ├── ext_file_extensions.ml │ ├── ext_filename.ml │ ├── ext_filename.mli │ ├── ext_fmt.ml │ ├── ext_format.ml │ ├── ext_format.mli │ ├── ext_ident.ml │ ├── ext_ident.mli │ ├── ext_int.ml │ ├── ext_int.mli │ ├── ext_io.ml │ ├── ext_io.mli │ ├── ext_js_file_kind.ml │ ├── ext_js_regex.ml │ ├── ext_js_regex.mli │ ├── ext_json.ml │ ├── ext_json.mli │ ├── ext_json_noloc.ml │ ├── ext_json_noloc.mli │ ├── ext_json_parse.mli │ ├── ext_json_parse.mll │ ├── ext_json_types.ml │ ├── ext_list.ml │ ├── ext_list.mli │ ├── ext_marshal.ml │ ├── ext_marshal.mli │ ├── ext_module_system.ml │ ├── ext_modulename.ml │ ├── ext_modulename.mli │ ├── ext_namespace.ml │ ├── ext_namespace.mli │ ├── ext_namespace_encode.ml │ ├── ext_namespace_encode.mli │ ├── ext_obj.ml │ ├── ext_obj.mli │ ├── ext_option.ml │ ├── ext_option.mli │ ├── ext_path.ml │ ├── ext_path.mli │ ├── ext_pervasives.ml │ ├── ext_pervasives.mli │ ├── ext_position.ml │ ├── ext_position.mli │ ├── ext_pp.ml │ ├── ext_pp.mli │ ├── ext_pp_scope.ml │ ├── ext_pp_scope.mli │ ├── ext_ref.ml │ ├── ext_ref.mli │ ├── ext_scc.ml │ ├── ext_scc.mli │ ├── ext_spec.ml │ ├── ext_spec.mli │ ├── ext_string.ml │ ├── ext_string.mli │ ├── ext_string_array.ml │ ├── ext_string_array.mli │ ├── ext_sys.ml │ ├── ext_sys.mli │ ├── ext_topsort.ml │ ├── ext_topsort.mli │ ├── ext_utf8.ml │ ├── ext_utf8.mli │ ├── ext_util.ml │ ├── ext_util.mli │ ├── hash.cppo.ml │ ├── hash.mli │ ├── hash_gen.ml │ ├── hash_ident.mli │ ├── hash_int.mli │ ├── hash_set.cppo.ml │ ├── hash_set.mli │ ├── hash_set_gen.ml │ ├── hash_set_ident.mli │ ├── hash_set_ident_mask.ml │ ├── hash_set_ident_mask.mli │ ├── hash_set_int.mli │ ├── hash_set_poly.mli │ ├── hash_set_string.mli │ ├── hash_string.mli │ ├── ident.ml │ ├── ident.mli │ ├── identifiable.ml │ ├── identifiable.mli │ ├── int_vec_util.ml │ ├── int_vec_util.mli │ ├── int_vec_vec.ml │ ├── int_vec_vec.mli │ ├── js_reserved_map.ml │ ├── js_reserved_map.mli │ ├── js_runtime_modules.ml │ ├── literals.ml │ ├── map.cppo.ml │ ├── map_gen.ml │ ├── map_gen.mli │ ├── map_ident.mli │ ├── map_int.mli │ ├── map_string.mli │ ├── misc.ml │ ├── misc.mli │ ├── ordered_hash_map.cppo.ml │ ├── ordered_hash_map_gen.ml │ ├── ordered_hash_map_local_ident.mli │ ├── set.cppo.ml │ ├── set_gen.ml │ ├── set_gen.mli │ ├── set_ident.mli │ ├── set_int.mli │ ├── set_string.mli │ ├── union_find.ml │ ├── union_find.mli │ ├── vec.cppo.ml │ ├── vec.mli │ ├── vec_gen.ml │ ├── vec_int.mli │ ├── warnings.ml │ └── warnings.mli │ ├── js_parser │ ├── comment_attachment.ml │ ├── declaration_parser.ml │ ├── dune │ ├── enum_common.ml │ ├── enum_parser.ml │ ├── expression_parser.ml │ ├── file_key.ml │ ├── flow_LICENSE │ ├── flow_ast.ml │ ├── flow_ast_mapper.ml │ ├── flow_ast_utils.ml │ ├── flow_ast_utils.mli │ ├── flow_lexer.ml │ ├── flow_lexer.mli │ ├── flow_sedlexing.ml │ ├── flow_sedlexing.mli │ ├── js_id.ml │ ├── js_id.mli │ ├── js_id_unicode.ml │ ├── jsx_parser.ml │ ├── lex_env.ml │ ├── lex_result.ml │ ├── loc.ml │ ├── loc.mli │ ├── object_parser.ml │ ├── parse_error.ml │ ├── parser_common.ml │ ├── parser_env.ml │ ├── parser_env.mli │ ├── parser_flow.ml │ ├── pattern_cover.ml │ ├── pattern_parser.ml │ ├── primitive_deriving.ml │ ├── sedlex_LICENSE │ ├── statement_parser.ml │ ├── token.ml │ ├── type_parser.ml │ ├── wtf8.ml │ └── wtf8.mli │ ├── json │ ├── Json.ml │ └── dune │ ├── ml │ ├── annot.ml │ ├── ast_async.ml │ ├── ast_await.ml │ ├── ast_helper.ml │ ├── ast_helper.mli │ ├── ast_invariants.ml │ ├── ast_invariants.mli │ ├── ast_iterator.ml │ ├── ast_iterator.mli │ ├── ast_mapper.ml │ ├── ast_mapper.mli │ ├── ast_payload.ml │ ├── ast_payload.mli │ ├── ast_uncurried.ml │ ├── ast_uncurried_utils.ml │ ├── ast_untagged_variants.ml │ ├── asttypes.ml │ ├── bigint_utils.ml │ ├── bigint_utils.mli │ ├── bs_flow_ast_utils.ml │ ├── bs_flow_ast_utils.mli │ ├── btype.ml │ ├── btype.mli │ ├── builtin_attributes.ml │ ├── builtin_attributes.mli │ ├── ccomp.ml │ ├── ccomp.mli │ ├── classify_function.ml │ ├── classify_function.mli │ ├── clflags.ml │ ├── clflags.mli │ ├── cmi_format.ml │ ├── cmi_format.mli │ ├── cmt_format.ml │ ├── cmt_format.mli │ ├── code_frame.ml │ ├── consistbl.ml │ ├── consistbl.mli │ ├── ctype.ml │ ├── ctype.mli │ ├── datarepr.ml │ ├── datarepr.mli │ ├── delayed_checks.ml │ ├── delayed_checks.mli │ ├── depend.ml │ ├── depend.mli │ ├── docstrings.ml │ ├── docstrings.mli │ ├── dune │ ├── env.ml │ ├── env.mli │ ├── envaux.ml │ ├── envaux.mli │ ├── error_message_utils.ml │ ├── includeclass.ml │ ├── includeclass.mli │ ├── includecore.ml │ ├── includecore.mli │ ├── includemod.ml │ ├── includemod.mli │ ├── js_raw_info.ml │ ├── lambda.ml │ ├── lambda.mli │ ├── lexer.mli │ ├── lexer.mll │ ├── location.ml │ ├── location.mli │ ├── longident.ml │ ├── longident.mli │ ├── matching.ml │ ├── matching.mli │ ├── mtype.ml │ ├── mtype.mli │ ├── oprint.ml │ ├── oprint.mli │ ├── outcometree.ml │ ├── parmatch.ml │ ├── parmatch.mli │ ├── parse.ml │ ├── parse.mli │ ├── parser.ml │ ├── parser.mli │ ├── parser.mly │ ├── parsetree.ml │ ├── path.ml │ ├── path.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 │ ├── rec_check.ml │ ├── rec_check.mli │ ├── record_coercion.ml │ ├── record_type_spread.ml │ ├── rescript_cpp.ml │ ├── rescript_cpp.mli │ ├── stypes.ml │ ├── stypes.mli │ ├── subst.ml │ ├── subst.mli │ ├── switch.ml │ ├── switch.mli │ ├── syntaxerr.ml │ ├── syntaxerr.mli │ ├── tast_iterator.ml │ ├── tast_iterator.mli │ ├── tast_mapper.ml │ ├── tast_mapper.mli │ ├── tbl.ml │ ├── tbl.mli │ ├── terminfo.ml │ ├── terminfo.mli │ ├── transl_recmodule.ml │ ├── transl_recmodule.mli │ ├── translattribute.ml │ ├── translattribute.mli │ ├── translcore.ml │ ├── translcore.mli │ ├── translmod.ml │ ├── translmod.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 │ ├── variant_coercion.ml │ └── variant_type_spread.ml │ └── res_syntax │ ├── dune │ ├── jsx_common.ml │ ├── jsx_ppx.ml │ ├── jsx_ppx.mli │ ├── jsx_v4.ml │ ├── reactjs_jsx_v3.ml │ ├── res_ast_conversion.ml │ ├── res_ast_conversion.mli │ ├── res_ast_debugger.ml │ ├── res_ast_debugger.mli │ ├── res_cli.ml │ ├── res_comment.ml │ ├── res_comment.mli │ ├── res_comments_table.ml │ ├── res_core.ml │ ├── res_core.mli │ ├── res_diagnostics.ml │ ├── res_diagnostics.mli │ ├── res_doc.ml │ ├── res_doc.mli │ ├── res_driver.ml │ ├── res_driver.mli │ ├── res_driver_binary.ml │ ├── res_driver_binary.mli │ ├── res_driver_ml_parser.ml │ ├── res_driver_ml_parser.mli │ ├── res_grammar.ml │ ├── res_io.ml │ ├── res_io.mli │ ├── res_minibuffer.ml │ ├── res_minibuffer.mli │ ├── res_multi_printer.ml │ ├── res_multi_printer.mli │ ├── res_outcome_printer.ml │ ├── res_outcome_printer.mli │ ├── res_parens.ml │ ├── res_parens.mli │ ├── res_parser.ml │ ├── res_parser.mli │ ├── res_parsetree_viewer.ml │ ├── res_parsetree_viewer.mli │ ├── res_printer.ml │ ├── res_printer.mli │ ├── res_reporting.ml │ ├── res_scanner.ml │ ├── res_scanner.mli │ ├── res_string.ml │ ├── res_token.ml │ ├── res_uncurried.ml │ ├── res_utf8.ml │ └── res_utf8.mli ├── assets ├── switch-impl-intf-dark.svg └── switch-impl-intf-light.svg ├── client ├── package-lock.json ├── package.json ├── src │ ├── commands.ts │ ├── commands │ │ ├── code_analysis.ts │ │ ├── create_interface.ts │ │ ├── dump_debug.ts │ │ ├── dump_server_state.ts │ │ ├── open_compiled.ts │ │ ├── paste_as_rescript_json.ts │ │ ├── paste_as_rescript_jsx.ts │ │ ├── switch_impl_intf.ts │ │ └── transform-jsx.ts │ ├── extension.ts │ └── utils.ts └── tsconfig.json ├── dune-project ├── grammars ├── rescript.markdown.json └── rescript.tmLanguage.json ├── logo.png ├── package.json ├── rescript.configuration.json ├── scripts ├── find-runtime.ts ├── updateVersion.js └── verify-package.mjs ├── server ├── README.md ├── analysis_binaries │ └── README.md ├── config.md ├── package-lock.json ├── package.json ├── src │ ├── bsc-args │ │ ├── bsb.ts │ │ └── rewatch.ts │ ├── buildSchema.ts │ ├── cli.ts │ ├── codeActions.ts │ ├── config.ts │ ├── constants.ts │ ├── errorReporter.ts │ ├── find-runtime.ts │ ├── incrementalCompilation.ts │ ├── lookup.ts │ ├── projectFiles.ts │ ├── server.ts │ └── utils.ts └── tsconfig.json ├── snippets.json ├── tools.opam ├── tools ├── CHANGELOG.md ├── README.md ├── bin │ ├── dune │ ├── main.ml │ └── version.ml ├── binaries │ └── .gitkeep ├── npm │ ├── RescriptTools.res │ ├── Tools_Docgen.res │ ├── Tools_Docgen.resi │ ├── cli.js │ └── getBinaryPath.js ├── package-lock.json ├── package.json ├── rescript.json ├── src │ ├── dune │ └── tools.ml └── tests │ ├── Makefile │ ├── package-lock.json │ ├── package.json │ ├── rescript.json │ ├── src │ ├── DocExtraction2.res │ ├── DocExtraction2.resi │ ├── DocExtractionRes.res │ ├── ModC.res │ ├── ModC.resi │ └── expected │ │ ├── DocExtraction2.res.json │ │ ├── DocExtraction2.resi.json │ │ ├── DocExtractionRes.res.json │ │ ├── ModC.res.json │ │ └── ModC.resi.json │ └── test.sh └── tsconfig.json /.github/workflows/bump-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.github/workflows/bump-version.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.ocamlformat -------------------------------------------------------------------------------- /.ocamlformat-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.ocamlformat-ignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/.vscodeignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/README.md -------------------------------------------------------------------------------- /analysis.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis.opam -------------------------------------------------------------------------------- /analysis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/Makefile -------------------------------------------------------------------------------- /analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/README.md -------------------------------------------------------------------------------- /analysis/bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/bin/dune -------------------------------------------------------------------------------- /analysis/bin/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/bin/main.ml -------------------------------------------------------------------------------- /analysis/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/dune -------------------------------------------------------------------------------- /analysis/examples/example-project/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | .merlin -------------------------------------------------------------------------------- /analysis/examples/example-project/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/bsconfig.json -------------------------------------------------------------------------------- /analysis/examples/example-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/package.json -------------------------------------------------------------------------------- /analysis/examples/example-project/src/B.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/B.re -------------------------------------------------------------------------------- /analysis/examples/example-project/src/Embeded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/Embeded.md -------------------------------------------------------------------------------- /analysis/examples/example-project/src/Hello.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/Hello.res -------------------------------------------------------------------------------- /analysis/examples/example-project/src/Json.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/Json.res -------------------------------------------------------------------------------- /analysis/examples/example-project/src/More.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/More.res -------------------------------------------------------------------------------- /analysis/examples/example-project/src/More.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/More.resi -------------------------------------------------------------------------------- /analysis/examples/example-project/src/Other.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/Other.res -------------------------------------------------------------------------------- /analysis/examples/example-project/src/Serde.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/Serde.res -------------------------------------------------------------------------------- /analysis/examples/example-project/src/ZZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/src/ZZ.res -------------------------------------------------------------------------------- /analysis/examples/example-project/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/example-project/types.json -------------------------------------------------------------------------------- /analysis/examples/larger-project/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib -------------------------------------------------------------------------------- /analysis/examples/larger-project/.merlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/.merlin -------------------------------------------------------------------------------- /analysis/examples/larger-project/.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/bsconfig.json -------------------------------------------------------------------------------- /analysis/examples/larger-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/package.json -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadCodeImplementation.res: -------------------------------------------------------------------------------- 1 | module M: DeadCodeInterface.T = { 2 | let x = 42 3 | } 4 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadCodeInterface.res: -------------------------------------------------------------------------------- 1 | module type T = { 2 | let x: int 3 | } 4 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadExn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/DeadExn.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadExn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/DeadExn.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadExn.resi: -------------------------------------------------------------------------------- 1 | // empty 2 | exception Etoplevel 3 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadRT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/DeadRT.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadRT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/DeadRT.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadRT.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/DeadRT.resi -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/DeadTest.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadTest.res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadTestBlacklist.res: -------------------------------------------------------------------------------- 1 | let x = 34 2 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/DeadTestWithInterface.resi: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/FC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/FC.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/FC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/FC.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Hooks.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Hooks.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Hooks.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/ImmutableArray.res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/ImmutableArray.resi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/NestedModulesInSignature.res: -------------------------------------------------------------------------------- 1 | module Universe = { 2 | let theAnswer = 42 3 | } 4 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/NestedModulesInSignature.resi: -------------------------------------------------------------------------------- 1 | module Universe: { 2 | @genType 3 | let theAnswer: int 4 | } 5 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Newsyntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Newsyntax.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Newton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Newton.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Newton.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Newton.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Opaque.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Opaque.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Opaque.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Opaque.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/OptArg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/OptArg.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/OptArg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/OptArg.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/OptArg.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/OptArg.resi -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/P.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/P.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/P.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/P.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Records.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Records.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Records.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Shadow.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Shadow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Shadow.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/TestDeadExn.res: -------------------------------------------------------------------------------- 1 | Js.log(DeadExn.Etoplevel) 2 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/ToSuppress.res: -------------------------------------------------------------------------------- 1 | let toSuppress = 0 2 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Tuples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Tuples.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Tuples.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Tuples.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Types.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Types.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Types.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Unboxed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Unboxed.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Unboxed.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Unboxed.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Uncurried.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Uncurried.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Unison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Unison.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Unison.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Unison.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Variants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Variants.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/Variants.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/Variants.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/asttypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/asttypes.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/asttypes.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/asttypes.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/clflags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/clflags.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/clflags.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/clflags.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/config.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/config.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/config.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/exception/Exn.res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/exception/ExnA.res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/format.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/format.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/format.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/location.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/location.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/location.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/longident.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/longident.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/loop.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/loop.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/loop.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/misc.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/misc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/misc.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/nativeint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/nativeint.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/numbers.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/numbers.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/numbers.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/parsetree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/parsetree.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/printf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/printf.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/printf.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/printf.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/res_core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/res_core.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/res_core.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/res_core.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/res_doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/res_doc.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/res_doc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/res_doc.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/res_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/res_token.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/res_utf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/res_utf8.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/res_utf8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/res_utf8.res -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/syntaxerr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/syntaxerr.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/warnings.js -------------------------------------------------------------------------------- /analysis/examples/larger-project/src/warnings.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/larger-project/src/warnings.res -------------------------------------------------------------------------------- /analysis/examples/workspace-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/workspace-project/.gitignore -------------------------------------------------------------------------------- /analysis/examples/workspace-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/workspace-project/README.md -------------------------------------------------------------------------------- /analysis/examples/workspace-project/app/src/App.res: -------------------------------------------------------------------------------- 1 | let _ = Myplugin.Promise.resolve(Utils.printError("Oh no!")) 2 | -------------------------------------------------------------------------------- /analysis/examples/workspace-project/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/workspace-project/bsconfig.json -------------------------------------------------------------------------------- /analysis/examples/workspace-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/examples/workspace-project/package.json -------------------------------------------------------------------------------- /analysis/reanalyze/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/Makefile -------------------------------------------------------------------------------- /analysis/reanalyze/dune: -------------------------------------------------------------------------------- 1 | (dirs src) 2 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/.gitignore: -------------------------------------------------------------------------------- 1 | .merlin 2 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/deadcode/Makefile -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/deadcode/package.json -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/DeadCodeImplementation.res: -------------------------------------------------------------------------------- 1 | module M: DeadCodeInterface.T = { 2 | let x = 42 3 | } 4 | 5 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/DeadCodeInterface.res: -------------------------------------------------------------------------------- 1 | module type T = { 2 | let x: int 3 | } 4 | 5 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/DeadExn.resi: -------------------------------------------------------------------------------- 1 | // empty 2 | exception Etoplevel 3 | 4 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/DeadTestBlacklist.res: -------------------------------------------------------------------------------- 1 | let x = 34 2 | 3 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/DeadTestWithInterface.resi: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/FC.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/deadcode/src/FC.bs.js -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/FC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/deadcode/src/FC.res -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/InnerModuleTypes.res: -------------------------------------------------------------------------------- 1 | module I = { 2 | type t = Foo 3 | } 4 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/InnerModuleTypes.resi: -------------------------------------------------------------------------------- 1 | module I: { 2 | type t = Foo 3 | } 4 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/NestedModulesInSignature.res: -------------------------------------------------------------------------------- 1 | module Universe = { 2 | let theAnswer = 42 3 | } 4 | 5 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/NestedModulesInSignature.resi: -------------------------------------------------------------------------------- 1 | module Universe: { 2 | @genType 3 | let theAnswer: int 4 | } 5 | 6 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/TestDeadExn.res: -------------------------------------------------------------------------------- 1 | Js.log(DeadExn.Etoplevel) 2 | 3 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/TestInnedModuleTypes.res: -------------------------------------------------------------------------------- 1 | let _ = InnerModuleTypes.I.Foo 2 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/ToSuppress.res: -------------------------------------------------------------------------------- 1 | let toSuppress = 0 2 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/src/exception/ExnA.res: -------------------------------------------------------------------------------- 1 | let bar = () => ExnB.foo() 2 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/deadcode/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/deadcode/test.sh -------------------------------------------------------------------------------- /analysis/reanalyze/examples/termination/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib -------------------------------------------------------------------------------- /analysis/reanalyze/examples/termination/.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/reanalyze/examples/termination/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/termination/Makefile -------------------------------------------------------------------------------- /analysis/reanalyze/examples/termination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/termination/README.md -------------------------------------------------------------------------------- /analysis/reanalyze/examples/termination/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/examples/termination/test.sh -------------------------------------------------------------------------------- /analysis/reanalyze/src/Annotation.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Annotation.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Arnold.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Arnold.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Common.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/DeadCode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/DeadCode.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/DeadCommon.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/DeadCommon.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/DeadException.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/DeadException.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/DeadModules.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/DeadModules.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/DeadOptionalArgs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/DeadOptionalArgs.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/DeadType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/DeadType.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/DeadValue.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/DeadValue.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/EmitJson.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/EmitJson.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Exception.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Exception.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Exceptions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Exceptions.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Exn.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Exn.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Exn.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Exn.mli -------------------------------------------------------------------------------- /analysis/reanalyze/src/ExnLib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/ExnLib.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/FindSourceFile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/FindSourceFile.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Issues.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Issues.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Log_.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Log_.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/ModulePath.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/ModulePath.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Name.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Name.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Name.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Name.mli -------------------------------------------------------------------------------- /analysis/reanalyze/src/Paths.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Paths.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Reanalyze.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Reanalyze.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/RunConfig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/RunConfig.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/SideEffects.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/SideEffects.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Suppress.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Suppress.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/Version.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/Version.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/WriteDeadAnnotations.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/WriteDeadAnnotations.ml -------------------------------------------------------------------------------- /analysis/reanalyze/src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/reanalyze/src/dune -------------------------------------------------------------------------------- /analysis/src/BuildSystem.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/BuildSystem.ml -------------------------------------------------------------------------------- /analysis/src/Cache.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Cache.ml -------------------------------------------------------------------------------- /analysis/src/Cfg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Cfg.ml -------------------------------------------------------------------------------- /analysis/src/Cmt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Cmt.ml -------------------------------------------------------------------------------- /analysis/src/CodeActions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CodeActions.ml -------------------------------------------------------------------------------- /analysis/src/Codemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Codemod.ml -------------------------------------------------------------------------------- /analysis/src/Commands.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Commands.ml -------------------------------------------------------------------------------- /analysis/src/CompletionBackEnd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CompletionBackEnd.ml -------------------------------------------------------------------------------- /analysis/src/CompletionDecorators.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CompletionDecorators.ml -------------------------------------------------------------------------------- /analysis/src/CompletionExpressions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CompletionExpressions.ml -------------------------------------------------------------------------------- /analysis/src/CompletionFrontEnd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CompletionFrontEnd.ml -------------------------------------------------------------------------------- /analysis/src/CompletionJsx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CompletionJsx.ml -------------------------------------------------------------------------------- /analysis/src/CompletionPatterns.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CompletionPatterns.ml -------------------------------------------------------------------------------- /analysis/src/Completions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Completions.ml -------------------------------------------------------------------------------- /analysis/src/CreateInterface.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/CreateInterface.ml -------------------------------------------------------------------------------- /analysis/src/DceCommand.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/DceCommand.ml -------------------------------------------------------------------------------- /analysis/src/Debug.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Debug.ml -------------------------------------------------------------------------------- /analysis/src/Diagnostics.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Diagnostics.ml -------------------------------------------------------------------------------- /analysis/src/DocumentSymbol.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/DocumentSymbol.ml -------------------------------------------------------------------------------- /analysis/src/DotCompletionUtils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/DotCompletionUtils.ml -------------------------------------------------------------------------------- /analysis/src/DumpAst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/DumpAst.ml -------------------------------------------------------------------------------- /analysis/src/Files.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Files.ml -------------------------------------------------------------------------------- /analysis/src/FindFiles.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/FindFiles.ml -------------------------------------------------------------------------------- /analysis/src/Hint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Hint.ml -------------------------------------------------------------------------------- /analysis/src/Hover.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Hover.ml -------------------------------------------------------------------------------- /analysis/src/JsxHacks.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/JsxHacks.ml -------------------------------------------------------------------------------- /analysis/src/Loc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Loc.ml -------------------------------------------------------------------------------- /analysis/src/LocalTables.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/LocalTables.ml -------------------------------------------------------------------------------- /analysis/src/Log.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Log.ml -------------------------------------------------------------------------------- /analysis/src/Markdown.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Markdown.ml -------------------------------------------------------------------------------- /analysis/src/ModuleResolution.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/ModuleResolution.ml -------------------------------------------------------------------------------- /analysis/src/Packages.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Packages.ml -------------------------------------------------------------------------------- /analysis/src/PipeCompletionUtils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/PipeCompletionUtils.ml -------------------------------------------------------------------------------- /analysis/src/Pos.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Pos.ml -------------------------------------------------------------------------------- /analysis/src/PrintType.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/PrintType.ml -------------------------------------------------------------------------------- /analysis/src/ProcessAttributes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/ProcessAttributes.ml -------------------------------------------------------------------------------- /analysis/src/ProcessCmt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/ProcessCmt.ml -------------------------------------------------------------------------------- /analysis/src/ProcessExtra.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/ProcessExtra.ml -------------------------------------------------------------------------------- /analysis/src/Protocol.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Protocol.ml -------------------------------------------------------------------------------- /analysis/src/Range.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Range.ml -------------------------------------------------------------------------------- /analysis/src/References.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/References.ml -------------------------------------------------------------------------------- /analysis/src/ResolvePath.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/ResolvePath.ml -------------------------------------------------------------------------------- /analysis/src/Scope.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Scope.ml -------------------------------------------------------------------------------- /analysis/src/SemanticTokens.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/SemanticTokens.ml -------------------------------------------------------------------------------- /analysis/src/Shared.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Shared.ml -------------------------------------------------------------------------------- /analysis/src/SharedTypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/SharedTypes.ml -------------------------------------------------------------------------------- /analysis/src/SignatureHelp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/SignatureHelp.ml -------------------------------------------------------------------------------- /analysis/src/TypeUtils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/TypeUtils.ml -------------------------------------------------------------------------------- /analysis/src/Uri.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Uri.ml -------------------------------------------------------------------------------- /analysis/src/Uri.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Uri.mli -------------------------------------------------------------------------------- /analysis/src/Utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Utils.ml -------------------------------------------------------------------------------- /analysis/src/Xform.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/Xform.ml -------------------------------------------------------------------------------- /analysis/src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/src/dune -------------------------------------------------------------------------------- /analysis/tests-generic-jsx-transform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests-generic-jsx-transform/Makefile -------------------------------------------------------------------------------- /analysis/tests-generic-jsx-transform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests-generic-jsx-transform/package.json -------------------------------------------------------------------------------- /analysis/tests-generic-jsx-transform/src/expected/GenericJsx.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests-generic-jsx-transform/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests-generic-jsx-transform/test.sh -------------------------------------------------------------------------------- /analysis/tests-incremental-typechecking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests-incremental-typechecking/Makefile -------------------------------------------------------------------------------- /analysis/tests-incremental-typechecking/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests-incremental-typechecking/test.sh -------------------------------------------------------------------------------- /analysis/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/Makefile -------------------------------------------------------------------------------- /analysis/tests/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/bsconfig.json -------------------------------------------------------------------------------- /analysis/tests/not_compiled/Diagnostics.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/not_compiled/Diagnostics.res -------------------------------------------------------------------------------- /analysis/tests/not_compiled/DocTemplate.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/not_compiled/DocTemplate.res -------------------------------------------------------------------------------- /analysis/tests/not_compiled/DocTemplate.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/not_compiled/DocTemplate.resi -------------------------------------------------------------------------------- /analysis/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/package-lock.json -------------------------------------------------------------------------------- /analysis/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/package.json -------------------------------------------------------------------------------- /analysis/tests/src/Auto.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Auto.res -------------------------------------------------------------------------------- /analysis/tests/src/BrokenParserCases.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/BrokenParserCases.res -------------------------------------------------------------------------------- /analysis/tests/src/CodeLens.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CodeLens.res -------------------------------------------------------------------------------- /analysis/tests/src/Codemod.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Codemod.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletableComponent.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletableComponent.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletePrioritize1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletePrioritize1.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletePrioritize2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletePrioritize2.res -------------------------------------------------------------------------------- /analysis/tests/src/Completion.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Completion.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionAttributes.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionAttributes.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionDicts.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionDicts.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionExpressions.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionExpressions.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionFromModule.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionFromModule.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionFromModule2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionFromModule2.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionInferValues.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionInferValues.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionJsx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionJsx.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionJsxProps.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionJsxProps.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionObjects.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionObjects.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionPattern.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionPattern.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionPipeChain.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionPipeChain.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionPipeProperty.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionPipeProperty.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionPipeSubmodules.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionPipeSubmodules.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionResolve.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionResolve.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionSupport.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionSupport.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionSupport2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionSupport2.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionTypeAnnotation.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionTypeAnnotation.res -------------------------------------------------------------------------------- /analysis/tests/src/CompletionTypeT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CompletionTypeT.res -------------------------------------------------------------------------------- /analysis/tests/src/Component.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Component.res -------------------------------------------------------------------------------- /analysis/tests/src/Component.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Component.resi -------------------------------------------------------------------------------- /analysis/tests/src/CreateInterface.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/CreateInterface.res -------------------------------------------------------------------------------- /analysis/tests/src/Cross.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Cross.res -------------------------------------------------------------------------------- /analysis/tests/src/Dce.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Dce.res -------------------------------------------------------------------------------- /analysis/tests/src/Debug.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Debug.res -------------------------------------------------------------------------------- /analysis/tests/src/Definition.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Definition.res -------------------------------------------------------------------------------- /analysis/tests/src/DefinitionWithInterface.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/DefinitionWithInterface.res -------------------------------------------------------------------------------- /analysis/tests/src/DefinitionWithInterface.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/DefinitionWithInterface.resi -------------------------------------------------------------------------------- /analysis/tests/src/Destructuring.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Destructuring.res -------------------------------------------------------------------------------- /analysis/tests/src/Div.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Div.res -------------------------------------------------------------------------------- /analysis/tests/src/DocComments.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/DocComments.res -------------------------------------------------------------------------------- /analysis/tests/src/DocumentSymbol.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/DocumentSymbol.res -------------------------------------------------------------------------------- /analysis/tests/src/DotPipeCompletionSpec.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/DotPipeCompletionSpec.res -------------------------------------------------------------------------------- /analysis/tests/src/EnvCompletion.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/EnvCompletion.res -------------------------------------------------------------------------------- /analysis/tests/src/EnvCompletionOtherFile.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/EnvCompletionOtherFile.res -------------------------------------------------------------------------------- /analysis/tests/src/ExhaustiveSwitch.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/ExhaustiveSwitch.res -------------------------------------------------------------------------------- /analysis/tests/src/Firebase.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Firebase.res -------------------------------------------------------------------------------- /analysis/tests/src/Fragment.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Fragment.res -------------------------------------------------------------------------------- /analysis/tests/src/Highlight.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Highlight.res -------------------------------------------------------------------------------- /analysis/tests/src/Hover.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Hover.res -------------------------------------------------------------------------------- /analysis/tests/src/InlayHint.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/InlayHint.res -------------------------------------------------------------------------------- /analysis/tests/src/Jsx2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Jsx2.res -------------------------------------------------------------------------------- /analysis/tests/src/Jsx2.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Jsx2.resi -------------------------------------------------------------------------------- /analysis/tests/src/JsxV4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/JsxV4.res -------------------------------------------------------------------------------- /analysis/tests/src/LongIdentTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/LongIdentTest.res -------------------------------------------------------------------------------- /analysis/tests/src/ModuleStuff.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/ModuleStuff.res -------------------------------------------------------------------------------- /analysis/tests/src/Objects.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Objects.res -------------------------------------------------------------------------------- /analysis/tests/src/Patterns.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Patterns.res -------------------------------------------------------------------------------- /analysis/tests/src/PolyRec.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/PolyRec.res -------------------------------------------------------------------------------- /analysis/tests/src/QueryFile.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/QueryFile.res -------------------------------------------------------------------------------- /analysis/tests/src/RecModules.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/RecModules.res -------------------------------------------------------------------------------- /analysis/tests/src/RecordCompletion.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/RecordCompletion.res -------------------------------------------------------------------------------- /analysis/tests/src/RecoveryOnProp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/RecoveryOnProp.res -------------------------------------------------------------------------------- /analysis/tests/src/References.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/References.res -------------------------------------------------------------------------------- /analysis/tests/src/ReferencesWithInterface.res: -------------------------------------------------------------------------------- 1 | let x = 2 2 | // ^ref 3 | -------------------------------------------------------------------------------- /analysis/tests/src/ReferencesWithInterface.resi: -------------------------------------------------------------------------------- 1 | let x: int 2 | // ^ref 3 | -------------------------------------------------------------------------------- /analysis/tests/src/Rename.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Rename.res -------------------------------------------------------------------------------- /analysis/tests/src/RenameWithInterface.res: -------------------------------------------------------------------------------- 1 | let x = 2 2 | // ^ren y 3 | -------------------------------------------------------------------------------- /analysis/tests/src/RenameWithInterface.resi: -------------------------------------------------------------------------------- 1 | let x: int 2 | // ^ren y 3 | -------------------------------------------------------------------------------- /analysis/tests/src/Reprod.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Reprod.res -------------------------------------------------------------------------------- /analysis/tests/src/Rxjs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Rxjs.res -------------------------------------------------------------------------------- /analysis/tests/src/RxjsCompletion.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/RxjsCompletion.res -------------------------------------------------------------------------------- /analysis/tests/src/SchemaAssets.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/SchemaAssets.res -------------------------------------------------------------------------------- /analysis/tests/src/ShadowedBelt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/ShadowedBelt.res -------------------------------------------------------------------------------- /analysis/tests/src/SignatureHelp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/SignatureHelp.res -------------------------------------------------------------------------------- /analysis/tests/src/Support.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Support.res -------------------------------------------------------------------------------- /analysis/tests/src/TableclothMap.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/TableclothMap.res -------------------------------------------------------------------------------- /analysis/tests/src/TableclothMap.resi: -------------------------------------------------------------------------------- 1 | let add: int 2 | 3 | module Int: {} 4 | -------------------------------------------------------------------------------- /analysis/tests/src/TypeArgCtx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/TypeArgCtx.res -------------------------------------------------------------------------------- /analysis/tests/src/TypeAtPosCompletion.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/TypeAtPosCompletion.res -------------------------------------------------------------------------------- /analysis/tests/src/TypeDefinition.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/TypeDefinition.res -------------------------------------------------------------------------------- /analysis/tests/src/Xform.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/Xform.res -------------------------------------------------------------------------------- /analysis/tests/src/dce/DceTest.res: -------------------------------------------------------------------------------- 1 | let x = 12 2 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Auto.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Auto.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/CodeLens.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/CodeLens.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Codemod.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Codemod.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/CompletableComponent.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Completion.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Completion.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/CompletionSupport.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/CompletionSupport2.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Component.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Component.resi.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Cross.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Cross.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Dce.res.txt: -------------------------------------------------------------------------------- 1 | DCE src/Dce.res 2 | issues:1 3 | 4 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Debug.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Debug.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Definition.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Definition.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Div.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Div.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/EnvCompletionOtherFile.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Firebase.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Firebase.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Fragment.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Fragment.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Highlight.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Highlight.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Hover.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Hover.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/InlayHint.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/InlayHint.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Jsx2.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Jsx2.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Jsx2.resi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Jsx2.resi.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/JsxV4.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/JsxV4.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/ModuleStuff.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Objects.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Patterns.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Patterns.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/PolyRec.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/PolyRec.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/QueryFile.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/RecModules.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/RecModules.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/References.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/References.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Rename.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Rename.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Reprod.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Reprod.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Rxjs.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/SchemaAssets.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/ShadowedBelt.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/Support.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/TableclothMap.res.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/TableclothMap.resi.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/expected/TypeArgCtx.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/TypeArgCtx.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/expected/Xform.res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/expected/Xform.res.txt -------------------------------------------------------------------------------- /analysis/tests/src/inner/ComponentInner.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/inner/ComponentInner.res -------------------------------------------------------------------------------- /analysis/tests/src/inner/ComponentInner.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/inner/ComponentInner.resi -------------------------------------------------------------------------------- /analysis/tests/src/inner/ReferencesInner.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/inner/ReferencesInner.res -------------------------------------------------------------------------------- /analysis/tests/src/inner/ReferencesInner.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/src/inner/ReferencesInner.resi -------------------------------------------------------------------------------- /analysis/tests/src/test.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/src/tst.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/tests/test.sh -------------------------------------------------------------------------------- /analysis/vendor/dune: -------------------------------------------------------------------------------- 1 | (dirs ext ml res_syntax json js_parser) 2 | -------------------------------------------------------------------------------- /analysis/vendor/ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/README.md -------------------------------------------------------------------------------- /analysis/vendor/ext/bs_hash_stubs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/bs_hash_stubs.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/bsb_db.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/bsb_db.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/bsb_db.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/bsb_db.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/bsc_args.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/bsc_args.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/bsc_args.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/bsc_args.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/bsc_warnings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/bsc_warnings.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/config.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/config.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/config.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/dune -------------------------------------------------------------------------------- /analysis/vendor/ext/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/encoding.md -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_array.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_array.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_array.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_basic_hash_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_basic_hash_stubs.c -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_buffer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_buffer.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_buffer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_buffer.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_bytes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_bytes.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_bytes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_bytes.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_char.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_char.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_char.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_char.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_cmp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_cmp.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_cmp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_cmp.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_color.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_color.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_color.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_color.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_digest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_digest.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_digest.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_digest.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_file_extensions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_file_extensions.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_filename.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_filename.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_filename.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_filename.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_fmt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_fmt.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_format.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_format.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_ident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_ident.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_ident.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_int.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_int.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_int.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_int.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_io.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_io.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_io.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_io.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_js_file_kind.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_js_file_kind.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_js_regex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_js_regex.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_js_regex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_js_regex.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_json.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_json.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_json.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_json.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_json_noloc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_json_noloc.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_json_noloc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_json_noloc.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_json_parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_json_parse.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_json_parse.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_json_parse.mll -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_json_types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_json_types.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_list.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_list.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_list.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_list.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_marshal.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_marshal.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_marshal.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_marshal.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_module_system.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_module_system.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_modulename.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_modulename.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_modulename.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_modulename.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_namespace.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_namespace.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_namespace.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_namespace.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_namespace_encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_namespace_encode.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_namespace_encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_namespace_encode.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_obj.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_obj.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_obj.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_obj.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_option.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_option.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_option.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_path.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_path.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_pervasives.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_pervasives.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_pervasives.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_pervasives.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_position.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_position.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_position.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_position.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_pp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_pp.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_pp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_pp.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_pp_scope.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_pp_scope.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_pp_scope.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_pp_scope.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_ref.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_ref.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_ref.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_ref.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_scc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_scc.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_scc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_scc.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_spec.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_spec.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_spec.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_spec.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_string.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_string.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_string.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_string.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_string_array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_string_array.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_string_array.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_string_array.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_sys.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_sys.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_sys.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_sys.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_topsort.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_topsort.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_topsort.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_topsort.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_utf8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_utf8.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_utf8.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_utf8.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_util.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ext_util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ext_util.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash.cppo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash.cppo.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/hash.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_gen.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_ident.mli: -------------------------------------------------------------------------------- 1 | include Hash_gen.S with type key = Ident.t 2 | -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_int.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_int.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set.cppo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set.cppo.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set_gen.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set_ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set_ident.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set_ident_mask.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set_ident_mask.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set_ident_mask.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set_ident_mask.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set_int.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set_int.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set_poly.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set_poly.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_set_string.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_set_string.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/hash_string.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/hash_string.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ident.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ident.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/identifiable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/identifiable.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/identifiable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/identifiable.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/int_vec_util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/int_vec_util.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/int_vec_util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/int_vec_util.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/int_vec_vec.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/int_vec_vec.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/int_vec_vec.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/int_vec_vec.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/js_reserved_map.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/js_reserved_map.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/js_reserved_map.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/js_reserved_map.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/js_runtime_modules.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/js_runtime_modules.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/literals.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/literals.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/map.cppo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/map.cppo.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/map_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/map_gen.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/map_gen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/map_gen.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/map_ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/map_ident.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/map_int.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/map_int.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/map_string.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/map_string.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/misc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/misc.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/misc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/misc.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/ordered_hash_map.cppo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ordered_hash_map.cppo.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/ordered_hash_map_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/ordered_hash_map_gen.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/set.cppo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/set.cppo.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/set_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/set_gen.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/set_gen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/set_gen.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/set_ident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/set_ident.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/set_int.mli: -------------------------------------------------------------------------------- 1 | include Set_gen.S with type elt = int 2 | -------------------------------------------------------------------------------- /analysis/vendor/ext/set_string.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/set_string.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/union_find.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/union_find.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/union_find.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/union_find.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/vec.cppo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/vec.cppo.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/vec.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/vec.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/vec_gen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/vec_gen.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/vec_int.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/vec_int.mli -------------------------------------------------------------------------------- /analysis/vendor/ext/warnings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/warnings.ml -------------------------------------------------------------------------------- /analysis/vendor/ext/warnings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ext/warnings.mli -------------------------------------------------------------------------------- /analysis/vendor/js_parser/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/dune -------------------------------------------------------------------------------- /analysis/vendor/js_parser/enum_common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/enum_common.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/enum_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/enum_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/expression_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/expression_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/file_key.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/file_key.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_LICENSE -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_ast.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_ast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_ast_mapper.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_ast_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_ast_utils.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_ast_utils.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_ast_utils.mli -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_lexer.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_lexer.mli -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_sedlexing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_sedlexing.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/flow_sedlexing.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/flow_sedlexing.mli -------------------------------------------------------------------------------- /analysis/vendor/js_parser/js_id.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/js_id.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/js_id.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/js_id.mli -------------------------------------------------------------------------------- /analysis/vendor/js_parser/js_id_unicode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/js_id_unicode.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/jsx_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/jsx_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/lex_env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/lex_env.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/lex_result.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/lex_result.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/loc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/loc.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/loc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/loc.mli -------------------------------------------------------------------------------- /analysis/vendor/js_parser/object_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/object_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/parse_error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/parse_error.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/parser_common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/parser_common.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/parser_env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/parser_env.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/parser_env.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/parser_env.mli -------------------------------------------------------------------------------- /analysis/vendor/js_parser/parser_flow.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/parser_flow.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/pattern_cover.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/pattern_cover.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/pattern_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/pattern_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/sedlex_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/sedlex_LICENSE -------------------------------------------------------------------------------- /analysis/vendor/js_parser/statement_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/statement_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/token.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/token.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/type_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/type_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/wtf8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/wtf8.ml -------------------------------------------------------------------------------- /analysis/vendor/js_parser/wtf8.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/js_parser/wtf8.mli -------------------------------------------------------------------------------- /analysis/vendor/json/Json.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/json/Json.ml -------------------------------------------------------------------------------- /analysis/vendor/json/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/json/dune -------------------------------------------------------------------------------- /analysis/vendor/ml/annot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/annot.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_async.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_async.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_await.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_await.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_helper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_helper.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_helper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_helper.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_invariants.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_invariants.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_invariants.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_invariants.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_iterator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_iterator.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_iterator.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_iterator.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_mapper.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_mapper.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_payload.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_payload.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_payload.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_payload.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_uncurried.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_uncurried.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_uncurried_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_uncurried_utils.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ast_untagged_variants.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ast_untagged_variants.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/asttypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/asttypes.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/bigint_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/bigint_utils.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/bigint_utils.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/bigint_utils.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/bs_flow_ast_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/bs_flow_ast_utils.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/bs_flow_ast_utils.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/bs_flow_ast_utils.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/btype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/btype.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/btype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/btype.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/builtin_attributes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/builtin_attributes.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/builtin_attributes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/builtin_attributes.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/ccomp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ccomp.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ccomp.mli: -------------------------------------------------------------------------------- 1 | val command : string -> int 2 | -------------------------------------------------------------------------------- /analysis/vendor/ml/classify_function.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/classify_function.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/classify_function.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/classify_function.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/clflags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/clflags.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/clflags.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/clflags.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/cmi_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/cmi_format.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/cmi_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/cmi_format.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/cmt_format.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/cmt_format.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/cmt_format.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/cmt_format.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/code_frame.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/code_frame.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/consistbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/consistbl.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/consistbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/consistbl.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/ctype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ctype.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/ctype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/ctype.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/datarepr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/datarepr.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/datarepr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/datarepr.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/delayed_checks.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/delayed_checks.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/delayed_checks.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/delayed_checks.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/depend.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/depend.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/depend.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/depend.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/docstrings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/docstrings.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/docstrings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/docstrings.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/dune -------------------------------------------------------------------------------- /analysis/vendor/ml/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/env.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/env.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/env.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/envaux.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/envaux.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/envaux.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/envaux.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/error_message_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/error_message_utils.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/includeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/includeclass.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/includeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/includeclass.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/includecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/includecore.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/includecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/includecore.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/includemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/includemod.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/includemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/includemod.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/js_raw_info.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/js_raw_info.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/lambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/lambda.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/lambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/lambda.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/lexer.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/lexer.mll -------------------------------------------------------------------------------- /analysis/vendor/ml/location.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/location.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/location.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/location.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/longident.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/longident.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/longident.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/longident.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/matching.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/matching.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/matching.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/matching.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/mtype.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/mtype.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/mtype.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/mtype.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/oprint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/oprint.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/oprint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/oprint.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/outcometree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/outcometree.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/parmatch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parmatch.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/parmatch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parmatch.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parse.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parse.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parser.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/parser.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parser.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parser.mly -------------------------------------------------------------------------------- /analysis/vendor/ml/parsetree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/parsetree.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/path.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/path.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/pprintast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/pprintast.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/pprintast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/pprintast.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/predef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/predef.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/predef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/predef.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/primitive.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/primitive.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/primitive.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/primitive.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/printast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printast.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/printast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printast.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/printlambda.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printlambda.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/printlambda.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printlambda.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/printtyp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printtyp.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/printtyp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printtyp.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/printtyped.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printtyped.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/printtyped.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/printtyped.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/rec_check.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/rec_check.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/rec_check.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/rec_check.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/record_coercion.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/record_coercion.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/record_type_spread.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/record_type_spread.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/rescript_cpp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/rescript_cpp.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/rescript_cpp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/rescript_cpp.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/stypes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/stypes.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/stypes.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/stypes.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/subst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/subst.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/subst.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/subst.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/switch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/switch.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/switch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/switch.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/syntaxerr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/syntaxerr.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/syntaxerr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/syntaxerr.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/tast_iterator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/tast_iterator.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/tast_iterator.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/tast_iterator.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/tast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/tast_mapper.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/tast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/tast_mapper.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/tbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/tbl.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/tbl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/tbl.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/terminfo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/terminfo.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/terminfo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/terminfo.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/transl_recmodule.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/transl_recmodule.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/transl_recmodule.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/transl_recmodule.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/translattribute.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/translattribute.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/translattribute.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/translattribute.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/translcore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/translcore.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/translcore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/translcore.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/translmod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/translmod.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/translmod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/translmod.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typeclass.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typeclass.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typeclass.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typeclass.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typecore.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typecore.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typecore.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typecore.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typedecl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedecl.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typedecl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedecl.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typedtree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedtree.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typedtree.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedtree.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typedtreeIter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedtreeIter.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typedtreeIter.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedtreeIter.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typedtreeMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedtreeMap.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typedtreeMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typedtreeMap.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typemod.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typemod.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typemod.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typemod.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typeopt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typeopt.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typeopt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typeopt.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/types.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/types.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/types.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/typetexp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typetexp.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/typetexp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/typetexp.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/untypeast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/untypeast.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/untypeast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/untypeast.mli -------------------------------------------------------------------------------- /analysis/vendor/ml/variant_coercion.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/variant_coercion.ml -------------------------------------------------------------------------------- /analysis/vendor/ml/variant_type_spread.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/ml/variant_type_spread.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/dune -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/jsx_common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/jsx_common.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/jsx_ppx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/jsx_ppx.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/jsx_ppx.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/jsx_ppx.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/jsx_v4.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/jsx_v4.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/reactjs_jsx_v3.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/reactjs_jsx_v3.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_ast_debugger.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_ast_debugger.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_cli.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_cli.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_comment.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_comment.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_comment.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_comment.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_core.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_core.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_core.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_core.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_diagnostics.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_diagnostics.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_diagnostics.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_diagnostics.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_doc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_doc.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_doc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_doc.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_driver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_driver.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_driver.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_driver.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_grammar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_grammar.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_io.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_io.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_io.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_io.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_minibuffer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_minibuffer.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_minibuffer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_minibuffer.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_parens.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_parens.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_parens.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_parens.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_parser.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_parser.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_parser.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_printer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_printer.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_printer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_printer.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_reporting.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_reporting.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_scanner.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_scanner.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_scanner.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_scanner.mli -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_string.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_string.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_token.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_token.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_uncurried.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_uncurried.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_utf8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_utf8.ml -------------------------------------------------------------------------------- /analysis/vendor/res_syntax/res_utf8.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/analysis/vendor/res_syntax/res_utf8.mli -------------------------------------------------------------------------------- /assets/switch-impl-intf-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/assets/switch-impl-intf-dark.svg -------------------------------------------------------------------------------- /assets/switch-impl-intf-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/assets/switch-impl-intf-light.svg -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands.ts -------------------------------------------------------------------------------- /client/src/commands/code_analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/code_analysis.ts -------------------------------------------------------------------------------- /client/src/commands/create_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/create_interface.ts -------------------------------------------------------------------------------- /client/src/commands/dump_debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/dump_debug.ts -------------------------------------------------------------------------------- /client/src/commands/dump_server_state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/dump_server_state.ts -------------------------------------------------------------------------------- /client/src/commands/open_compiled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/open_compiled.ts -------------------------------------------------------------------------------- /client/src/commands/paste_as_rescript_json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/paste_as_rescript_json.ts -------------------------------------------------------------------------------- /client/src/commands/paste_as_rescript_jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/paste_as_rescript_jsx.ts -------------------------------------------------------------------------------- /client/src/commands/switch_impl_intf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/switch_impl_intf.ts -------------------------------------------------------------------------------- /client/src/commands/transform-jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/commands/transform-jsx.ts -------------------------------------------------------------------------------- /client/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/extension.ts -------------------------------------------------------------------------------- /client/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/src/utils.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/dune-project -------------------------------------------------------------------------------- /grammars/rescript.markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/grammars/rescript.markdown.json -------------------------------------------------------------------------------- /grammars/rescript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/grammars/rescript.tmLanguage.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/package.json -------------------------------------------------------------------------------- /rescript.configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/rescript.configuration.json -------------------------------------------------------------------------------- /scripts/find-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/scripts/find-runtime.ts -------------------------------------------------------------------------------- /scripts/updateVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/scripts/updateVersion.js -------------------------------------------------------------------------------- /scripts/verify-package.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/scripts/verify-package.mjs -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/README.md -------------------------------------------------------------------------------- /server/analysis_binaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/analysis_binaries/README.md -------------------------------------------------------------------------------- /server/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/config.md -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/bsc-args/bsb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/bsc-args/bsb.ts -------------------------------------------------------------------------------- /server/src/bsc-args/rewatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/bsc-args/rewatch.ts -------------------------------------------------------------------------------- /server/src/buildSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/buildSchema.ts -------------------------------------------------------------------------------- /server/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/cli.ts -------------------------------------------------------------------------------- /server/src/codeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/codeActions.ts -------------------------------------------------------------------------------- /server/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/config.ts -------------------------------------------------------------------------------- /server/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/constants.ts -------------------------------------------------------------------------------- /server/src/errorReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/errorReporter.ts -------------------------------------------------------------------------------- /server/src/find-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/find-runtime.ts -------------------------------------------------------------------------------- /server/src/incrementalCompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/incrementalCompilation.ts -------------------------------------------------------------------------------- /server/src/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/lookup.ts -------------------------------------------------------------------------------- /server/src/projectFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/projectFiles.ts -------------------------------------------------------------------------------- /server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/server.ts -------------------------------------------------------------------------------- /server/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/src/utils.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/snippets.json -------------------------------------------------------------------------------- /tools.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools.opam -------------------------------------------------------------------------------- /tools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/CHANGELOG.md -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/bin/dune -------------------------------------------------------------------------------- /tools/bin/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/bin/main.ml -------------------------------------------------------------------------------- /tools/bin/version.ml: -------------------------------------------------------------------------------- 1 | let version = "0.6.6" 2 | -------------------------------------------------------------------------------- /tools/binaries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/npm/RescriptTools.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/npm/RescriptTools.res -------------------------------------------------------------------------------- /tools/npm/Tools_Docgen.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/npm/Tools_Docgen.res -------------------------------------------------------------------------------- /tools/npm/Tools_Docgen.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/npm/Tools_Docgen.resi -------------------------------------------------------------------------------- /tools/npm/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/npm/cli.js -------------------------------------------------------------------------------- /tools/npm/getBinaryPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/npm/getBinaryPath.js -------------------------------------------------------------------------------- /tools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/package-lock.json -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/package.json -------------------------------------------------------------------------------- /tools/rescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/rescript.json -------------------------------------------------------------------------------- /tools/src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/src/dune -------------------------------------------------------------------------------- /tools/src/tools.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/src/tools.ml -------------------------------------------------------------------------------- /tools/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/Makefile -------------------------------------------------------------------------------- /tools/tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/package-lock.json -------------------------------------------------------------------------------- /tools/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/package.json -------------------------------------------------------------------------------- /tools/tests/rescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/rescript.json -------------------------------------------------------------------------------- /tools/tests/src/DocExtraction2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/src/DocExtraction2.res -------------------------------------------------------------------------------- /tools/tests/src/DocExtraction2.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/src/DocExtraction2.resi -------------------------------------------------------------------------------- /tools/tests/src/DocExtractionRes.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/src/DocExtractionRes.res -------------------------------------------------------------------------------- /tools/tests/src/ModC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/src/ModC.res -------------------------------------------------------------------------------- /tools/tests/src/ModC.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/src/ModC.resi -------------------------------------------------------------------------------- /tools/tests/src/expected/ModC.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/src/expected/ModC.res.json -------------------------------------------------------------------------------- /tools/tests/src/expected/ModC.resi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/src/expected/ModC.resi.json -------------------------------------------------------------------------------- /tools/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tools/tests/test.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-lang/rescript-vscode/HEAD/tsconfig.json --------------------------------------------------------------------------------