├── .config └── dotnet-tools.json ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── scripts │ ├── install_dart.sh │ ├── install_dsm.sh │ └── zsh_dotnet_completion.sh ├── .editorconfig ├── .fantomasignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── build.yml │ ├── commands.yml │ └── publish-pypi.yml ├── .gitignore ├── .husky ├── pre-commit └── task-runner.json ├── .markdownlint.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Fable.Standalone.sln ├── Fable.sln ├── LICENSE ├── NuGet.Config ├── README.md ├── Settings.FSharpLint ├── fable_logo.png ├── global.json ├── lib └── fcs │ ├── FSharp.Compiler.Service.deps.json │ ├── FSharp.Compiler.Service.dll │ ├── FSharp.Compiler.Service.xml │ ├── FSharp.Core.dll │ ├── FSharp.Core.xml │ ├── FSharp.DependencyManager.Nuget.dll │ ├── FSharp.DependencyManager.Nuget.xml │ └── README.md ├── local-packages ├── Buildalyzer.8.0.0-fable-001.nupkg ├── Buildalyzer.8.0.0-fable-001.snupkg ├── Buildalyzer.Logger.8.0.0-fable-001.nupkg ├── Buildalyzer.Logger.8.0.0-fable-001.snupkg ├── Buildalyzer.Workspaces.8.0.0-fable-001.nupkg └── Buildalyzer.Workspaces.8.0.0-fable-001.snupkg ├── package.json ├── pyproject.toml ├── src ├── Directory.Build.props ├── Directory.Build.targets ├── Fable.AST │ ├── CHANGELOG.md │ ├── Common.fs │ ├── Fable.AST.fsproj │ ├── Fable.fs │ └── Plugins.fs ├── Fable.Analyzers │ ├── Fable.Analyzers.fsproj │ └── StdOutAnalyzer.fs ├── Fable.Build │ ├── CompilerJs.fs │ ├── Fable.Build.fsproj │ ├── FableLibrary │ │ ├── Core.fs │ │ ├── Dart.fs │ │ ├── JavaScript.fs │ │ ├── Python.fs │ │ ├── Rust.fs │ │ └── TypeScript.fs │ ├── FcsRepo.fs │ ├── GithubRelease.fs │ ├── Main.fs │ ├── Package.fs │ ├── Publish.fs │ ├── Quicktest │ │ ├── Core.fs │ │ ├── Dart.fs │ │ ├── JavaScript.fs │ │ ├── Python.fs │ │ ├── Rust.fs │ │ └── TypeScript.fs │ ├── SimpleExec.Extensions.fs │ ├── Standalone.fs │ ├── Test │ │ ├── CompilerJs.fs │ │ ├── Dart.fs │ │ ├── Integration.fs │ │ ├── JavaScript.fs │ │ ├── Python.fs │ │ ├── Rust.fs │ │ ├── Standalone.fs │ │ └── TypeScript.fs │ ├── Utils.fs │ ├── Utils │ │ └── LastVersionFinder.fs │ ├── WorkerJs.fs │ └── Workspace.fs ├── Fable.Cli │ ├── BuildalyzerCrackerResolver.fs │ ├── CHANGELOG.md │ ├── Contributors.fs │ ├── CustomLogging.fs │ ├── Entry.fs │ ├── Fable.Cli.fsproj │ ├── FileWatchers.fs │ ├── FileWatchers.fsi │ ├── Main.fs │ ├── Pipeline.fs │ ├── Printers.fs │ ├── Properties │ │ └── launchSettings.json │ └── README.md ├── Fable.Compiler │ ├── CHANGELOG.md │ ├── Fable.Compiler.fsproj │ ├── File.fs │ ├── Globbing.fs │ ├── Globbing.fsi │ ├── Library.fs │ ├── Library.fsi │ ├── MSBuildCrackerResolver.fs │ ├── ProjectCracker.fs │ ├── ProjectCracker.fsi │ ├── Util.fs │ └── Util.fsi ├── Fable.Core │ ├── AssemblyInfo.fs │ ├── CHANGELOG.md │ ├── Fable.Core.Dart.fs │ ├── Fable.Core.Extensions.fs │ ├── Fable.Core.JS.fs │ ├── Fable.Core.JsInterop.fs │ ├── Fable.Core.PhpInterop.fs │ ├── Fable.Core.Py.fs │ ├── Fable.Core.PyInterop.fs │ ├── Fable.Core.Rust.fs │ ├── Fable.Core.RustInterop.fs │ ├── Fable.Core.Types.fs │ ├── Fable.Core.Util.fs │ ├── Fable.Core.fsproj │ └── README.md ├── Fable.PublishUtils │ ├── CHANGELOG.md │ ├── Fable.PublishUtils.fsproj │ ├── PublishUtils.fs │ └── README.md ├── Fable.Transforms │ ├── BabelPrinter.fs │ ├── Dart │ │ ├── Dart.fs │ │ ├── DartPrinter.fs │ │ ├── Fable2Dart.fs │ │ └── Replacements.fs │ ├── FSharp2Fable.Util.fs │ ├── FSharp2Fable.fs │ ├── FSharp2Fable.fsi │ ├── Fable.Transforms.fsproj │ ├── Fable2Babel.fs │ ├── FableTransforms.fs │ ├── FableTransforms.fsi │ ├── Global │ │ ├── Babel.fs │ │ ├── Compiler.fs │ │ ├── Fable.Core.fs │ │ ├── Metadata.fs │ │ ├── Naming.fs │ │ └── Prelude.fs │ ├── MonadicTrampoline.fs │ ├── OverloadSuffix.fs │ ├── Php │ │ ├── Fable2Php.fs │ │ ├── Php.fs │ │ ├── PhpPrinter.fs │ │ └── README.md │ ├── Printer.fs │ ├── Python │ │ ├── Fable2Python.Annotation.fs │ │ ├── Fable2Python.Reflection.fs │ │ ├── Fable2Python.Transforms.fs │ │ ├── Fable2Python.Types.fs │ │ ├── Fable2Python.Util.fs │ │ ├── Prelude.fs │ │ ├── Python.AST.fs │ │ ├── PythonCompiler.fs │ │ ├── PythonPrinter.fs │ │ ├── README.md │ │ └── Replacements.fs │ ├── README.md │ ├── Replacements.Api.fs │ ├── Replacements.Util.fs │ ├── Replacements.fs │ ├── ReplacementsInject.fs │ ├── Rust │ │ ├── AST │ │ │ ├── Other │ │ │ │ ├── Rust.AST.Printer.fs │ │ │ │ └── Rust.AST.Visitor.fs │ │ │ ├── Rust.AST.Adapters.fs │ │ │ ├── Rust.AST.Helpers.fs │ │ │ ├── Rust.AST.Impl.fs │ │ │ ├── Rust.AST.Parser.fs │ │ │ ├── Rust.AST.Pretty.fs │ │ │ ├── Rust.AST.Spans.fs │ │ │ ├── Rust.AST.State.fs │ │ │ ├── Rust.AST.Stubs.fs │ │ │ ├── Rust.AST.Symbols.fs │ │ │ ├── Rust.AST.Types.fs │ │ │ ├── Rust.AST.fsproj │ │ │ └── Tests │ │ │ │ ├── Program.fs │ │ │ │ ├── Rust.AST.Tests.fsproj │ │ │ │ ├── Sample.AST.fs │ │ │ │ └── Tests.fs │ │ ├── Fable2Rust.fs │ │ ├── Replacements.fs │ │ └── RustPrinter.fs │ ├── State.fs │ └── Transforms.Util.fs ├── fable-compiler-js │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Platform.fs │ │ ├── ProjectParser.fs │ │ ├── app.fs │ │ ├── fable-compiler-js.fsproj │ │ └── util.js │ └── test │ │ └── test_script.fsx ├── fable-library-dart │ ├── .gitignore │ ├── Array.fs │ ├── Choice.fs │ ├── Date.dart │ ├── FSharp.Core.fs │ ├── Fable.Library.Dart.fsproj │ ├── Global.fs │ ├── List.fs │ ├── Map.fs │ ├── Option.fs │ ├── Range.fs │ ├── RegExp.dart │ ├── Result.fs │ ├── Seq.fs │ ├── Seq2.fs │ ├── Set.fs │ ├── String.dart │ ├── System.Collections.Generic.fs │ ├── System.Text.fs │ ├── System.fs │ ├── TimeSpan.dart │ ├── Types.dart │ ├── Util.dart │ ├── analysis_options.yaml │ ├── pubspec.lock │ └── pubspec.yaml ├── fable-library-php │ ├── Array.php │ ├── Double.php │ ├── FSharp.Core.php │ ├── List.php │ ├── Map.php │ ├── Option.php │ ├── Random.php │ ├── Range.php │ ├── Seq.php │ ├── Seq2.php │ ├── Serialization.php │ ├── Set.php │ ├── String.php │ └── Util.php ├── fable-library-py │ ├── .flake8 │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── fable_library │ │ ├── Array.fs │ │ ├── Async.fs │ │ ├── AsyncBuilder.fs │ │ ├── Fable.Library.Python.fsproj │ │ ├── List.fs │ │ ├── Native.fs │ │ ├── Timer.fs │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── array_.py │ │ ├── async_.py │ │ ├── async_builder.py │ │ ├── big_int.py │ │ ├── bit_converter.py │ │ ├── boolean.py │ │ ├── char.py │ │ ├── choice.pyi │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── _core.pyi │ │ │ ├── array.pyi │ │ │ ├── datetime_offset.pyi │ │ │ ├── floats.pyi │ │ │ ├── ints.pyi │ │ │ ├── option.pyi │ │ │ ├── strings.pyi │ │ │ └── types.pyi │ │ ├── date.py │ │ ├── date_offset.py │ │ ├── decimal_.py │ │ ├── diagnostics.py │ │ ├── double.py │ │ ├── encoding.py │ │ ├── event.py │ │ ├── file.py │ │ ├── floats.py │ │ ├── guid.py │ │ ├── int32.py │ │ ├── long.py │ │ ├── mailbox_processor.py │ │ ├── map_util.py │ │ ├── numeric.py │ │ ├── observable.py │ │ ├── option.py │ │ ├── path.py │ │ ├── py.typed │ │ ├── reflection.py │ │ ├── reg_exp.py │ │ ├── resize_array.py │ │ ├── singleton_local_time_zone.py │ │ ├── string_.py │ │ ├── task.py │ │ ├── task_builder.py │ │ ├── thread.py │ │ ├── time_span.py │ │ ├── types.py │ │ ├── uri.py │ │ └── util.py │ ├── py.typed │ ├── pyproject.toml │ ├── src │ │ ├── array.rs │ │ ├── datetime_offset.rs │ │ ├── floats.rs │ │ ├── ints.rs │ │ ├── lib.rs │ │ ├── native_array.rs │ │ ├── options.rs │ │ ├── strings.rs │ │ ├── types.rs │ │ └── util.rs │ ├── tests-benchmark │ │ ├── README.md │ │ ├── conftest.py │ │ ├── test_bench_array.py │ │ ├── test_bench_floats.py │ │ └── test_bench_ints.py │ ├── tests │ │ ├── test_array.py │ │ ├── test_array_create.py │ │ ├── test_float_math.py │ │ ├── test_floats.py │ │ └── test_ints.py │ └── uv.lock ├── fable-library-rust │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── Array.fs │ │ ├── Async.rs │ │ ├── BigInt.rs │ │ ├── BitConverter.rs │ │ ├── Char.rs │ │ ├── Choice.fs │ │ ├── Convert.rs │ │ ├── DateOnly.rs │ │ ├── DateTime.rs │ │ ├── DateTimeOffset.rs │ │ ├── Decimal.rs │ │ ├── Encoding.rs │ │ ├── Exception.rs │ │ ├── FSharp.Collections.fs │ │ ├── FSharp.Control.fs │ │ ├── FSharp.Core.fs │ │ ├── Fable.Library.Rust.fsproj │ │ ├── FuncType.rs │ │ ├── Global.fs │ │ ├── Guid.rs │ │ ├── HashMap.rs │ │ ├── HashSet.rs │ │ ├── Interfaces.fs │ │ ├── Interop.rs │ │ ├── Lazy.rs │ │ ├── List.fs │ │ ├── LrcPtr.rs │ │ ├── Map.fs │ │ ├── Mutable.rs │ │ ├── Native.rs │ │ ├── NativeArray.rs │ │ ├── Numeric.rs │ │ ├── Option.fs │ │ ├── Range.fs │ │ ├── Reflection.rs │ │ ├── RegExp.rs │ │ ├── Result.fs │ │ ├── Seq.fs │ │ ├── Set.fs │ │ ├── String.rs │ │ ├── System.Collections.Generic.fs │ │ ├── System.Text.fs │ │ ├── System.Threading.fs │ │ ├── System.fs │ │ ├── TimeOnly.rs │ │ ├── TimeSpan.rs │ │ ├── Util.fs │ │ ├── lib.fs │ │ └── print_no_std.rs │ └── vendored │ │ └── startup │ │ ├── .cargo-checksum.json │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── LICENSE-ZLIB │ │ ├── README.md │ │ ├── scripts │ │ ├── test.sh │ │ └── test_panic_afterbuild.sh │ │ └── src │ │ └── lib.rs ├── fable-library-ts │ ├── Array.fs │ ├── Async.ts │ ├── AsyncBuilder.ts │ ├── BigInt.fs │ ├── BigInt.ts │ ├── BigInt │ │ ├── n.fs │ │ ├── n.fsi │ │ ├── q.fs │ │ ├── q.fsi │ │ ├── z.fs │ │ └── z.fsi │ ├── BitConverter.ts │ ├── Boolean.ts │ ├── CHANGELOG.md │ ├── Char.ts │ ├── Choice.fs │ ├── CollectionUtil.ts │ ├── ConditionalWeakTable.ts │ ├── Date.ts │ ├── DateOffset.ts │ ├── DateOnly.ts │ ├── Decimal.ts │ ├── Double.ts │ ├── Encoding.ts │ ├── Event.ts │ ├── FSharp.Collections.fs │ ├── FSharp.Core.CompilerServices.fs │ ├── FSharp.Core.fs │ ├── Fable.Library.TypeScript.fsproj │ ├── Global.fs │ ├── Guid.ts │ ├── Int32.ts │ ├── List.fs │ ├── Long.ts │ ├── MailboxProcessor.ts │ ├── Map.fs │ ├── MapUtil.ts │ ├── MutableMap.fs │ ├── MutableSet.fs │ ├── Native.fs │ ├── Numeric.ts │ ├── Observable.ts │ ├── Option.ts │ ├── README.md │ ├── Random.fs │ ├── Range.fs │ ├── Reflection.ts │ ├── RegExp.ts │ ├── Result.fs │ ├── Seq.fs │ ├── Seq2.fs │ ├── Set.fs │ ├── String.ts │ ├── System.Collections.Generic.fs │ ├── System.Text.fs │ ├── System.fs │ ├── TimeOnly.ts │ ├── TimeSpan.ts │ ├── Timer.ts │ ├── Types.ts │ ├── Unicode.13.0.0.ts │ ├── Uri.ts │ ├── Util.ts │ ├── lib │ │ ├── big.d.ts │ │ └── big.js │ ├── package.json │ ├── ts │ │ └── tsconfig.json │ └── tsconfig.json ├── fable-metadata │ ├── CHANGELOG.md │ ├── README.md │ ├── index.js │ ├── lib │ │ ├── Browser.Blob.dll │ │ ├── Browser.Dom.dll │ │ ├── Browser.Event.dll │ │ ├── Browser.Gamepad.dll │ │ ├── Browser.WebGL.dll │ │ ├── Browser.WebStorage.dll │ │ ├── FSharp.Core.dll │ │ ├── Fable.Core.dll │ │ ├── Fable.Repl.Lib.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Console.dll │ │ ├── System.Core.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.WebClient.dll │ │ ├── System.Numerics.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.TypeExtensions.dll │ │ ├── System.Reflection.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.dll │ │ ├── mscorlib.dll │ │ └── netstandard.dll │ ├── package-lock.json │ └── package.json ├── fable-standalone │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Fable.Standalone.fsproj │ │ ├── Interfaces.fs │ │ ├── Lexer.fs │ │ ├── Main.fs │ │ └── Worker │ │ │ ├── Shared.fs │ │ │ ├── Worker.fs │ │ │ ├── Worker.fsproj │ │ │ └── util.js │ ├── test │ │ ├── bench-compiler │ │ │ ├── Cargo.toml │ │ │ ├── Platform.fs │ │ │ ├── ProjectParser.fs │ │ │ ├── app.fs │ │ │ ├── bench-compiler.fsproj │ │ │ ├── main.mjs │ │ │ ├── package.json │ │ │ ├── rd.xml │ │ │ ├── tsconfig.json │ │ │ └── util.js │ │ └── bench │ │ │ ├── Platform.fs │ │ │ ├── app.fs │ │ │ ├── bench.fsproj │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── test_script_10k.fsx │ │ │ ├── test_script_50k.fsx │ │ │ └── transform.js │ └── worker.config.js ├── fcs-fable │ ├── FSStrings.fs │ ├── Fable.Core.fs │ ├── SR.fs │ ├── System.Collections.Concurrent.fs │ ├── System.Collections.Generic.fs │ ├── System.Collections.Immutable.fs │ ├── System.IO.fs │ ├── System.fs │ ├── TcImports_shim.fs │ ├── ast_print.fs │ ├── codegen │ │ ├── FSComp.fs │ │ ├── FSIstrings.fs │ │ ├── codegen.fsproj │ │ ├── fssrgen.fsx │ │ ├── fssrgen.targets │ │ ├── illex.fs │ │ ├── illex.fsi │ │ ├── ilpars.fs │ │ ├── ilpars.fsi │ │ ├── lex.fs │ │ ├── lex.fsi │ │ ├── pars.fs │ │ ├── pars.fsi │ │ ├── pplex.fs │ │ ├── pplex.fsi │ │ ├── pppars.fs │ │ └── pppars.fsi │ ├── fcs-fable.fsproj │ ├── service_slim.fs │ ├── src │ │ └── Compiler │ │ │ ├── AbstractIL │ │ │ ├── il.fs │ │ │ ├── il.fsi │ │ │ ├── ilascii.fs │ │ │ ├── ilascii.fsi │ │ │ ├── ilbinary.fs │ │ │ ├── ilbinary.fsi │ │ │ ├── illex.fsl │ │ │ ├── ilmorph.fs │ │ │ ├── ilmorph.fsi │ │ │ ├── ilnativeres.fs │ │ │ ├── ilnativeres.fsi │ │ │ ├── ilpars.fsy │ │ │ ├── ilprint.fs │ │ │ ├── ilprint.fsi │ │ │ ├── ilread.fs │ │ │ ├── ilread.fsi │ │ │ ├── ilreflect.fs │ │ │ ├── ilreflect.fsi │ │ │ ├── ilsign.fs │ │ │ ├── ilsign.fsi │ │ │ ├── ilsupp.fs │ │ │ ├── ilsupp.fsi │ │ │ ├── ilwrite.fs │ │ │ ├── ilwrite.fsi │ │ │ ├── ilwritepdb.fs │ │ │ ├── ilwritepdb.fsi │ │ │ ├── ilx.fs │ │ │ └── ilx.fsi │ │ │ ├── Checking │ │ │ ├── AccessibilityLogic.fs │ │ │ ├── AccessibilityLogic.fsi │ │ │ ├── AttributeChecking.fs │ │ │ ├── AttributeChecking.fsi │ │ │ ├── AugmentWithHashCompare.fs │ │ │ ├── AugmentWithHashCompare.fsi │ │ │ ├── CheckBasics.fs │ │ │ ├── CheckBasics.fsi │ │ │ ├── CheckDeclarations.fs │ │ │ ├── CheckDeclarations.fsi │ │ │ ├── CheckFormatStrings.fs │ │ │ ├── CheckFormatStrings.fsi │ │ │ ├── CheckIncrementalClasses.fs │ │ │ ├── CheckIncrementalClasses.fsi │ │ │ ├── CheckPatterns.fs │ │ │ ├── CheckPatterns.fsi │ │ │ ├── CheckRecordSyntaxHelpers.fs │ │ │ ├── CheckRecordSyntaxHelpers.fsi │ │ │ ├── ConstraintSolver.fs │ │ │ ├── ConstraintSolver.fsi │ │ │ ├── Expressions │ │ │ │ ├── CheckArrayOrListComputedExpressions.fs │ │ │ │ ├── CheckComputationExpressions.fs │ │ │ │ ├── CheckComputationExpressions.fsi │ │ │ │ ├── CheckExpressions.fs │ │ │ │ ├── CheckExpressions.fsi │ │ │ │ ├── CheckExpressionsOps.fs │ │ │ │ └── CheckSequenceExpressions.fs │ │ │ ├── FindUnsolved.fs │ │ │ ├── FindUnsolved.fsi │ │ │ ├── InfoReader.fs │ │ │ ├── InfoReader.fsi │ │ │ ├── MethodCalls.fs │ │ │ ├── MethodCalls.fsi │ │ │ ├── MethodOverrides.fs │ │ │ ├── MethodOverrides.fsi │ │ │ ├── NameResolution.fs │ │ │ ├── NameResolution.fsi │ │ │ ├── NicePrint.fs │ │ │ ├── NicePrint.fsi │ │ │ ├── PatternMatchCompilation.fs │ │ │ ├── PatternMatchCompilation.fsi │ │ │ ├── PostInferenceChecks.fs │ │ │ ├── PostInferenceChecks.fsi │ │ │ ├── QuotationTranslator.fs │ │ │ ├── QuotationTranslator.fsi │ │ │ ├── SignatureConformance.fs │ │ │ ├── SignatureConformance.fsi │ │ │ ├── SignatureHash.fs │ │ │ ├── SignatureHash.fsi │ │ │ ├── TailCallChecks.fs │ │ │ ├── TailCallChecks.fsi │ │ │ ├── TypeHierarchy.fs │ │ │ ├── TypeHierarchy.fsi │ │ │ ├── TypeRelations.fs │ │ │ ├── TypeRelations.fsi │ │ │ ├── import.fs │ │ │ ├── import.fsi │ │ │ ├── infos.fs │ │ │ └── infos.fsi │ │ │ ├── CodeGen │ │ │ ├── EraseClosures.fs │ │ │ ├── EraseClosures.fsi │ │ │ ├── EraseUnions.fs │ │ │ ├── EraseUnions.fsi │ │ │ ├── IlxGen.fs │ │ │ ├── IlxGen.fsi │ │ │ ├── IlxGenSupport.fs │ │ │ └── IlxGenSupport.fsi │ │ │ ├── DependencyManager │ │ │ ├── AssemblyResolveHandler.fs │ │ │ ├── AssemblyResolveHandler.fsi │ │ │ ├── DependencyProvider.fs │ │ │ ├── DependencyProvider.fsi │ │ │ ├── NativeDllResolveHandler.fs │ │ │ ├── NativeDllResolveHandler.fsi │ │ │ └── xlf │ │ │ │ ├── DependencyManager.txt.cs.xlf │ │ │ │ ├── DependencyManager.txt.de.xlf │ │ │ │ ├── DependencyManager.txt.es.xlf │ │ │ │ ├── DependencyManager.txt.fr.xlf │ │ │ │ ├── DependencyManager.txt.it.xlf │ │ │ │ ├── DependencyManager.txt.ja.xlf │ │ │ │ ├── DependencyManager.txt.ko.xlf │ │ │ │ ├── DependencyManager.txt.pl.xlf │ │ │ │ ├── DependencyManager.txt.pt-BR.xlf │ │ │ │ ├── DependencyManager.txt.ru.xlf │ │ │ │ ├── DependencyManager.txt.tr.xlf │ │ │ │ ├── DependencyManager.txt.zh-Hans.xlf │ │ │ │ └── DependencyManager.txt.zh-Hant.xlf │ │ │ ├── Directory.Build.props │ │ │ ├── Driver │ │ │ ├── BinaryResourceFormats.fs │ │ │ ├── BinaryResourceFormats.fsi │ │ │ ├── CompilerConfig.fs │ │ │ ├── CompilerConfig.fsi │ │ │ ├── CompilerDiagnostics.fs │ │ │ ├── CompilerDiagnostics.fsi │ │ │ ├── CompilerImports.fs │ │ │ ├── CompilerImports.fsi │ │ │ ├── CompilerOptions.fs │ │ │ ├── CompilerOptions.fsi │ │ │ ├── CreateILModule.fs │ │ │ ├── CreateILModule.fsi │ │ │ ├── FxResolver.fs │ │ │ ├── FxResolver.fsi │ │ │ ├── GraphChecking │ │ │ │ ├── Continuation.fs │ │ │ │ ├── Continuation.fsi │ │ │ │ ├── DependencyResolution.fs │ │ │ │ ├── DependencyResolution.fsi │ │ │ │ ├── Docs.md │ │ │ │ ├── FileContentMapping.fs │ │ │ │ ├── FileContentMapping.fsi │ │ │ │ ├── Graph.fs │ │ │ │ ├── Graph.fsi │ │ │ │ ├── GraphProcessing.fs │ │ │ │ ├── GraphProcessing.fsi │ │ │ │ ├── TrieMapping.fs │ │ │ │ ├── TrieMapping.fsi │ │ │ │ ├── Types.fs │ │ │ │ └── Types.fsi │ │ │ ├── OptimizeInputs.fs │ │ │ ├── OptimizeInputs.fsi │ │ │ ├── ParseAndCheckInputs.fs │ │ │ ├── ParseAndCheckInputs.fsi │ │ │ ├── ScriptClosure.fs │ │ │ ├── ScriptClosure.fsi │ │ │ ├── StaticLinking.fs │ │ │ ├── StaticLinking.fsi │ │ │ ├── XmlDocFileWriter.fs │ │ │ ├── XmlDocFileWriter.fsi │ │ │ ├── fsc.fs │ │ │ ├── fsc.fsi │ │ │ ├── parallel-optimization.drawio.svg │ │ │ └── parallel-optimization.md │ │ │ ├── FSComp.txt │ │ │ ├── FSCompCheck.fsx │ │ │ ├── FSStrings.resx │ │ │ ├── FSharp.Compiler.Service.fsproj │ │ │ ├── FSharp.Compiler.Service.nuspec │ │ │ ├── Facilities │ │ │ ├── AsyncMemoize.fs │ │ │ ├── AsyncMemoize.fsi │ │ │ ├── BuildGraph.fs │ │ │ ├── BuildGraph.fsi │ │ │ ├── CompilerLocation.fs │ │ │ ├── CompilerLocation.fsi │ │ │ ├── DiagnosticOptions.fs │ │ │ ├── DiagnosticOptions.fsi │ │ │ ├── DiagnosticResolutionHints.fs │ │ │ ├── DiagnosticResolutionHints.fsi │ │ │ ├── DiagnosticsLogger.fs │ │ │ ├── DiagnosticsLogger.fsi │ │ │ ├── Hashing.fs │ │ │ ├── Hashing.fsi │ │ │ ├── LanguageFeatures.fs │ │ │ ├── LanguageFeatures.fsi │ │ │ ├── ReferenceResolver.fs │ │ │ ├── ReferenceResolver.fsi │ │ │ ├── SimulatedMSBuildReferenceResolver.fs │ │ │ ├── SimulatedMSBuildReferenceResolver.fsi │ │ │ ├── TextLayoutRender.fs │ │ │ ├── TextLayoutRender.fsi │ │ │ ├── UtilsStrings.txt │ │ │ ├── prim-lexing.fs │ │ │ ├── prim-lexing.fsi │ │ │ ├── prim-parsing.fs │ │ │ ├── prim-parsing.fsi │ │ │ └── xlf │ │ │ │ ├── UtilsStrings.txt.cs.xlf │ │ │ │ ├── UtilsStrings.txt.de.xlf │ │ │ │ ├── UtilsStrings.txt.es.xlf │ │ │ │ ├── UtilsStrings.txt.fr.xlf │ │ │ │ ├── UtilsStrings.txt.it.xlf │ │ │ │ ├── UtilsStrings.txt.ja.xlf │ │ │ │ ├── UtilsStrings.txt.ko.xlf │ │ │ │ ├── UtilsStrings.txt.pl.xlf │ │ │ │ ├── UtilsStrings.txt.pt-BR.xlf │ │ │ │ ├── UtilsStrings.txt.ru.xlf │ │ │ │ ├── UtilsStrings.txt.tr.xlf │ │ │ │ ├── UtilsStrings.txt.zh-Hans.xlf │ │ │ │ └── UtilsStrings.txt.zh-Hant.xlf │ │ │ ├── Interactive │ │ │ ├── ControlledExecution.fs │ │ │ ├── FSIstrings.txt │ │ │ ├── FSharpInteractiveServer.fs │ │ │ ├── FSharpInteractiveServer.fsi │ │ │ ├── fsi.fs │ │ │ ├── fsi.fsi │ │ │ ├── fsihelp.fs │ │ │ ├── fsihelp.fsi │ │ │ └── xlf │ │ │ │ ├── FSIstrings.txt.cs.xlf │ │ │ │ ├── FSIstrings.txt.de.xlf │ │ │ │ ├── FSIstrings.txt.es.xlf │ │ │ │ ├── FSIstrings.txt.fr.xlf │ │ │ │ ├── FSIstrings.txt.it.xlf │ │ │ │ ├── FSIstrings.txt.ja.xlf │ │ │ │ ├── FSIstrings.txt.ko.xlf │ │ │ │ ├── FSIstrings.txt.pl.xlf │ │ │ │ ├── FSIstrings.txt.pt-BR.xlf │ │ │ │ ├── FSIstrings.txt.ru.xlf │ │ │ │ ├── FSIstrings.txt.tr.xlf │ │ │ │ ├── FSIstrings.txt.zh-Hans.xlf │ │ │ │ └── FSIstrings.txt.zh-Hant.xlf │ │ │ ├── Legacy │ │ │ └── LegacyHostedCompilerForTesting.fs │ │ │ ├── Optimize │ │ │ ├── DetupleArgs.fs │ │ │ ├── DetupleArgs.fsi │ │ │ ├── InnerLambdasToTopLevelFuncs.fs │ │ │ ├── InnerLambdasToTopLevelFuncs.fsi │ │ │ ├── LowerCalls.fs │ │ │ ├── LowerCalls.fsi │ │ │ ├── LowerComputedCollections.fs │ │ │ ├── LowerComputedCollections.fsi │ │ │ ├── LowerLocalMutables.fs │ │ │ ├── LowerLocalMutables.fsi │ │ │ ├── LowerSequences.fs │ │ │ ├── LowerSequences.fsi │ │ │ ├── LowerStateMachines.fs │ │ │ ├── LowerStateMachines.fsi │ │ │ ├── Optimizer.fs │ │ │ └── Optimizer.fsi │ │ │ ├── Service │ │ │ ├── BackgroundCompiler.fs │ │ │ ├── BackgroundCompiler.fsi │ │ │ ├── ExternalSymbol.fs │ │ │ ├── ExternalSymbol.fsi │ │ │ ├── FSharpCheckerResults.fs │ │ │ ├── FSharpCheckerResults.fsi │ │ │ ├── FSharpParseFileResults.fs │ │ │ ├── FSharpParseFileResults.fsi │ │ │ ├── FSharpProjectSnapshot.fs │ │ │ ├── FSharpSource.fs │ │ │ ├── FSharpSource.fsi │ │ │ ├── FSharpWorkspace.fs │ │ │ ├── FSharpWorkspaceQuery.fs │ │ │ ├── FSharpWorkspaceState.fs │ │ │ ├── IncrementalBuild.fs │ │ │ ├── IncrementalBuild.fsi │ │ │ ├── ItemKey.fs │ │ │ ├── ItemKey.fsi │ │ │ ├── QuickParse.fs │ │ │ ├── QuickParse.fsi │ │ │ ├── SemanticClassification.fs │ │ │ ├── SemanticClassification.fsi │ │ │ ├── SemanticClassificationKey.fs │ │ │ ├── SemanticClassificationKey.fsi │ │ │ ├── ServiceAnalysis.fs │ │ │ ├── ServiceAnalysis.fsi │ │ │ ├── ServiceAssemblyContent.fs │ │ │ ├── ServiceAssemblyContent.fsi │ │ │ ├── ServiceCompilerDiagnostics.fs │ │ │ ├── ServiceCompilerDiagnostics.fsi │ │ │ ├── ServiceConstants.fs │ │ │ ├── ServiceDeclarationLists.fs │ │ │ ├── ServiceDeclarationLists.fsi │ │ │ ├── ServiceErrorResolutionHints.fs │ │ │ ├── ServiceErrorResolutionHints.fsi │ │ │ ├── ServiceInterfaceStubGenerator.fs │ │ │ ├── ServiceInterfaceStubGenerator.fsi │ │ │ ├── ServiceLexing.fs │ │ │ ├── ServiceLexing.fsi │ │ │ ├── ServiceNavigation.fs │ │ │ ├── ServiceNavigation.fsi │ │ │ ├── ServiceParamInfoLocations.fs │ │ │ ├── ServiceParamInfoLocations.fsi │ │ │ ├── ServiceParseTreeWalk.fs │ │ │ ├── ServiceParseTreeWalk.fsi │ │ │ ├── ServiceParsedInputOps.fs │ │ │ ├── ServiceParsedInputOps.fsi │ │ │ ├── ServiceStructure.fs │ │ │ ├── ServiceStructure.fsi │ │ │ ├── ServiceUntypedParse.fsi │ │ │ ├── ServiceXmlDocParser.fs │ │ │ ├── ServiceXmlDocParser.fsi │ │ │ ├── SynExpr.fs │ │ │ ├── SynExpr.fsi │ │ │ ├── SynPat.fs │ │ │ ├── SynPat.fsi │ │ │ ├── TransparentCompiler.fs │ │ │ ├── TransparentCompiler.fsi │ │ │ ├── service.fs │ │ │ └── service.fsi │ │ │ ├── Symbols │ │ │ ├── Exprs.fs │ │ │ ├── Exprs.fsi │ │ │ ├── FSharpDiagnostic.fs │ │ │ ├── FSharpDiagnostic.fsi │ │ │ ├── SymbolHelpers.fs │ │ │ ├── SymbolHelpers.fsi │ │ │ ├── SymbolPatterns.fs │ │ │ ├── SymbolPatterns.fsi │ │ │ ├── Symbols.fs │ │ │ └── Symbols.fsi │ │ │ ├── SyntaxTree │ │ │ ├── LexFilter.fs │ │ │ ├── LexFilter.fsi │ │ │ ├── LexHelpers.fs │ │ │ ├── LexHelpers.fsi │ │ │ ├── LexerStore.fs │ │ │ ├── LexerStore.fsi │ │ │ ├── ParseHelpers.fs │ │ │ ├── ParseHelpers.fsi │ │ │ ├── PrettyNaming.fs │ │ │ ├── PrettyNaming.fsi │ │ │ ├── SyntaxTree.fs │ │ │ ├── SyntaxTree.fsi │ │ │ ├── SyntaxTreeOps.fs │ │ │ ├── SyntaxTreeOps.fsi │ │ │ ├── SyntaxTrivia.fs │ │ │ ├── SyntaxTrivia.fsi │ │ │ ├── UnicodeLexing.fs │ │ │ ├── UnicodeLexing.fsi │ │ │ ├── WarnScopes.fs │ │ │ ├── WarnScopes.fsi │ │ │ ├── XmlDoc.fs │ │ │ └── XmlDoc.fsi │ │ │ ├── TypedTree │ │ │ ├── CompilerGlobalState.fs │ │ │ ├── CompilerGlobalState.fsi │ │ │ ├── QuotationPickler.fs │ │ │ ├── QuotationPickler.fsi │ │ │ ├── TcGlobals.fs │ │ │ ├── TcGlobals.fsi │ │ │ ├── TypeProviders.fs │ │ │ ├── TypeProviders.fsi │ │ │ ├── TypedTree.fs │ │ │ ├── TypedTree.fsi │ │ │ ├── TypedTreeBasics.fs │ │ │ ├── TypedTreeBasics.fsi │ │ │ ├── TypedTreeOps.fs │ │ │ ├── TypedTreeOps.fsi │ │ │ ├── TypedTreePickle.fs │ │ │ ├── TypedTreePickle.fsi │ │ │ ├── UpdatePrettyTyparNames.fs │ │ │ ├── UpdatePrettyTyparNames.fsi │ │ │ ├── tainted.fs │ │ │ └── tainted.fsi │ │ │ ├── Utilities │ │ │ ├── Activity.fs │ │ │ ├── Activity.fsi │ │ │ ├── Caches.fs │ │ │ ├── Caches.fsi │ │ │ ├── Cancellable.fs │ │ │ ├── Cancellable.fsi │ │ │ ├── DependencyGraph.fs │ │ │ ├── EditDistance.fs │ │ │ ├── EditDistance.fsi │ │ │ ├── FileSystem.fs │ │ │ ├── FileSystem.fsi │ │ │ ├── HashMultiMap.fs │ │ │ ├── HashMultiMap.fsi │ │ │ ├── ImmutableArray.fs │ │ │ ├── ImmutableArray.fsi │ │ │ ├── InternalCollections.fs │ │ │ ├── InternalCollections.fsi │ │ │ ├── LruCache.fs │ │ │ ├── LruCache.fsi │ │ │ ├── NullnessShims.fs │ │ │ ├── PathMap.fs │ │ │ ├── PathMap.fsi │ │ │ ├── QueueList.fs │ │ │ ├── QueueList.fsi │ │ │ ├── ReadOnlySpan.fs │ │ │ ├── ReadOnlySpan.fsi │ │ │ ├── ResizeArray.fs │ │ │ ├── ResizeArray.fsi │ │ │ ├── RidHelpers.fs │ │ │ ├── TaggedCollections.fs │ │ │ ├── TaggedCollections.fsi │ │ │ ├── TypeHashing.fs │ │ │ ├── XmlAdapters.fs │ │ │ ├── XmlAdapters.fsi │ │ │ ├── ildiag.fs │ │ │ ├── ildiag.fsi │ │ │ ├── illib.fs │ │ │ ├── illib.fsi │ │ │ ├── lib.fs │ │ │ ├── lib.fsi │ │ │ ├── range.fs │ │ │ ├── range.fsi │ │ │ ├── rational.fs │ │ │ ├── rational.fsi │ │ │ ├── sformat.fs │ │ │ ├── sformat.fsi │ │ │ ├── sr.fs │ │ │ ├── sr.fsi │ │ │ ├── zmap.fs │ │ │ ├── zmap.fsi │ │ │ ├── zset.fs │ │ │ └── zset.fsi │ │ │ ├── default.win32manifest │ │ │ ├── lex.fsl │ │ │ ├── logo.png │ │ │ ├── pars.fsy │ │ │ ├── pplex.fsl │ │ │ ├── pppars.fsy │ │ │ └── xlf │ │ │ ├── FSComp.txt.cs.xlf │ │ │ ├── FSComp.txt.de.xlf │ │ │ ├── FSComp.txt.es.xlf │ │ │ ├── FSComp.txt.fr.xlf │ │ │ ├── FSComp.txt.it.xlf │ │ │ ├── FSComp.txt.ja.xlf │ │ │ ├── FSComp.txt.ko.xlf │ │ │ ├── FSComp.txt.pl.xlf │ │ │ ├── FSComp.txt.pt-BR.xlf │ │ │ ├── FSComp.txt.ru.xlf │ │ │ ├── FSComp.txt.tr.xlf │ │ │ ├── FSComp.txt.zh-Hans.xlf │ │ │ ├── FSComp.txt.zh-Hant.xlf │ │ │ ├── FSStrings.cs.xlf │ │ │ ├── FSStrings.de.xlf │ │ │ ├── FSStrings.es.xlf │ │ │ ├── FSStrings.fr.xlf │ │ │ ├── FSStrings.it.xlf │ │ │ ├── FSStrings.ja.xlf │ │ │ ├── FSStrings.ko.xlf │ │ │ ├── FSStrings.pl.xlf │ │ │ ├── FSStrings.pt-BR.xlf │ │ │ ├── FSStrings.ru.xlf │ │ │ ├── FSStrings.tr.xlf │ │ │ ├── FSStrings.zh-Hans.xlf │ │ │ └── FSStrings.zh-Hant.xlf │ └── test │ │ ├── .gitignore │ │ ├── Metadata.fs │ │ ├── Platform.fs │ │ ├── ProjectParser.fs │ │ ├── bench │ │ ├── bench.fs │ │ └── fcs-fable-bench.fsproj │ │ ├── fcs-fable-test.fsproj │ │ ├── nuget.config │ │ ├── package.json │ │ ├── test.fs │ │ └── test_script.fsx ├── quicktest-dart │ ├── .gitignore │ ├── QuickTest.fs │ ├── Quicktest.Dart.fsproj │ ├── analysis_options.yaml │ ├── pubspec.lock │ └── pubspec.yaml ├── quicktest-py │ └── quicktest.fsx ├── quicktest-rust │ ├── Cargo.toml │ ├── Quicktest.Rust.fsproj │ └── src │ │ └── main.fs ├── quicktest │ ├── QuickTest.fs │ ├── QuickTest.fsproj │ ├── README.md │ └── tsconfig.json └── tools │ ├── ASTViewer │ ├── ASTViewer.fs │ └── ASTViewer.fsproj │ ├── InjectProcessor │ ├── InjectProcessor.fs │ └── InjectProcessor.fsproj │ ├── README.md │ ├── coverage │ └── package.json │ ├── source-maps │ └── package.json │ └── test-all.sh ├── tests ├── Compiler │ └── TestProject │ │ └── Program.fs ├── Dart │ ├── .gitignore │ ├── analysis_options.yaml │ ├── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── src │ │ ├── ArithmeticTests.fs │ │ ├── ArrayTests.fs │ │ ├── ComparisonTests.fs │ │ ├── CustomOperatorTests.fs │ │ ├── DateTimeTests.fs │ │ ├── DictionaryTests.fs │ │ ├── EnumTests.fs │ │ ├── EnumerableTests.fs │ │ ├── Fable.Tests.Dart.fsproj │ │ ├── HashSetTests.fs │ │ ├── ListTests.fs │ │ ├── MapTests.fs │ │ ├── MiscTests.fs │ │ ├── NullnessTests.fs │ │ ├── OptionTests.fs │ │ ├── RecordTests.fs │ │ ├── RegexTests.fs │ │ ├── ResizeArrayTests.fs │ │ ├── ResultTests.fs │ │ ├── SeqExpressionTests.fs │ │ ├── SeqTests.fs │ │ ├── SetTests.fs │ │ ├── StringTests.fs │ │ ├── SudokuTests.fs │ │ ├── TailCallTests.fs │ │ ├── Tests.Util.fs │ │ ├── TimeSpanTests.fs │ │ ├── TupleTests.fs │ │ ├── TypeTests.fs │ │ └── UnionTests.fs ├── Integration │ ├── Compiler │ │ ├── AnonRecordInInterfaceTests.fs │ │ ├── CompilerHelpersTests.fs │ │ ├── CompilerMessagesTests.fs │ │ ├── Fable.Tests.Compiler.fsproj │ │ ├── Main.fs │ │ ├── TestProject │ │ │ ├── .gitignore │ │ │ └── TestProject.fsproj │ │ └── Util │ │ │ └── Compiler.fs │ ├── Integration │ │ ├── CliTests.fs │ │ ├── CompilationTests.fs │ │ ├── Fable.Tests.Integration.fsproj │ │ ├── FileWatcherTests.fs │ │ ├── Main.fs │ │ └── data │ │ │ ├── eraseAttribute │ │ │ ├── ErasedProperty.fs │ │ │ ├── ErasedProperty.jsx.expected │ │ │ ├── ErasedTypeWithProperty.fs │ │ │ ├── ErasedTypeWithProperty.jsx.expected │ │ │ ├── Members.fs │ │ │ ├── Members.jsx.expected │ │ │ └── eraseAttribute.fsproj │ │ │ ├── import │ │ │ ├── PrivateMutableImport.fs │ │ │ ├── PrivateMutableImport.jsx.expected │ │ │ └── import.fsproj │ │ │ ├── jsxListOptimisation │ │ │ ├── Components.fs │ │ │ ├── Components.jsx.expected │ │ │ └── jsxListOptimisation.fsproj │ │ │ └── signatureHidesFunction │ │ │ ├── HideType.fs │ │ │ ├── HideType.fsi │ │ │ ├── HideType.jsx.expected │ │ │ ├── Library.fs │ │ │ ├── Library.fsi │ │ │ ├── Library.jsx.expected │ │ │ └── signatureHidesFunction.fsproj │ └── ProjectConfigs │ │ ├── ConsoleApp │ │ ├── Fable.Tests.ConsoleApp.fsproj │ │ └── Program.fs │ │ ├── CustomConfiguration │ │ ├── Fable.Tests.DefineConstants.CustomConfiguration.fsproj │ │ └── Main.fs │ │ ├── DebugWithExtraDefines │ │ ├── Fable.Tests.DefineConstants.DebugWithExtraDefines.fsproj │ │ └── Main.fs │ │ └── ReleaseNoExtraDefines │ │ ├── Fable.Tests.DefineConstants.ReleaseNoExtraDefines.fsproj │ │ └── Main.fs ├── Js │ ├── Adaptive │ │ ├── AdaptiveTests.fs │ │ ├── Fable.Tests.Adaptive.fsproj │ │ └── Main.fs │ ├── DllRef │ │ ├── Fable.Tests.DllRef.fsproj │ │ ├── Lib.fs │ │ ├── Lib2.fs │ │ ├── Util │ │ │ └── Util.fs │ │ ├── js1 │ │ │ └── lib.js │ │ ├── js2 │ │ │ └── lib.js │ │ └── numbers.js │ ├── Main │ │ ├── ApplicativeTests.fs │ │ ├── ArithmeticTests.fs │ │ ├── ArrayTests.fs │ │ ├── AsyncTests.fs │ │ ├── CharTests.fs │ │ ├── ComparisonTests.fs │ │ ├── ConditionalWeakTableTests.fs │ │ ├── ConvertTests.fs │ │ ├── CustomOperatorsTests.fs │ │ ├── DateOnlyTests.fs │ │ ├── DateTimeOffsetTests.fs │ │ ├── DateTimeTests.fs │ │ ├── DictionaryTests.fs │ │ ├── DllRef │ │ │ └── Lib2.fs │ │ ├── ElmishParserTests.fs │ │ ├── EnumTests.fs │ │ ├── EnumerableTests.fs │ │ ├── EventTests.fs │ │ ├── Fable.Tests.fsproj │ │ ├── Global.fs │ │ ├── Globs │ │ │ └── GlobTest.fs │ │ ├── HashSetTests.fs │ │ ├── ImportTests.fs │ │ ├── JsInteropTests.fs │ │ ├── ListCollectorTests.fs │ │ ├── ListTests.fs │ │ ├── Main.fs │ │ ├── MapTests.fs │ │ ├── MiscTests.fs │ │ ├── MiscTestsHelper.fs │ │ ├── NestedAndRecursivePatternTests.fs │ │ ├── NullnessTests.fs │ │ ├── ObservableTests.fs │ │ ├── OptionTests.fs │ │ ├── QueueTests.fs │ │ ├── RecordTypeTests.fs │ │ ├── ReflectionTests.fs │ │ ├── RegexTests.fs │ │ ├── ResizeArrayTests.fs │ │ ├── ResultTests.fs │ │ ├── SeqExpressionTests.fs │ │ ├── SeqTests.fs │ │ ├── SetTests.fs │ │ ├── StackTests.fs │ │ ├── StringTests.fs │ │ ├── SudokuTest.fs │ │ ├── TailCallTests.fs │ │ ├── TimeOnlyTests.fs │ │ ├── TimeSpanTests.fs │ │ ├── TupleTypeTests.fs │ │ ├── TypeTests.fs │ │ ├── UnionTypeTests.fs │ │ ├── UriTests.fs │ │ ├── Util │ │ │ ├── Aether.fs │ │ │ ├── Thoth.Json.Decode.fs │ │ │ ├── Util.Testing.fs │ │ │ ├── Util.fs │ │ │ ├── Util2.fs │ │ │ ├── Util3.fs │ │ │ ├── UtilTests.fs │ │ │ └── b.fs │ │ └── js │ │ │ ├── 1foo.js │ │ │ ├── nullness.js │ │ │ └── polyfill.js │ └── Project With Spaces │ │ ├── Fable.Tests.Spaces.fsproj │ │ └── Util │ │ ├── Util.fs │ │ ├── Util.fsi │ │ └── b.fs ├── Php │ ├── Fable.Tests.Php.fsproj │ ├── Main.fs │ ├── TestAsync.fs │ ├── TestFn.fs │ ├── TestList.fs │ ├── TestLoops.fs │ ├── TestMath.fs │ ├── TestOption.fs │ ├── TestRecordType.fs │ ├── TestSeq.fs │ ├── TestSet.fs │ ├── TestString.fs │ ├── TestSudoku.fs │ ├── TestUnionType.fs │ └── Util.fs ├── Python │ ├── Fable.Tests.Python.fsproj │ ├── Main.fs │ ├── Misc │ │ ├── Aether.fs │ │ ├── Util2.fs │ │ └── Util3.fs │ ├── MiscTestsHelper.fs │ ├── TestAnonRecords.fs │ ├── TestApplicative.fs │ ├── TestArithmetic.fs │ ├── TestArray.fs │ ├── TestAsync.fs │ ├── TestChar.fs │ ├── TestComparison.fs │ ├── TestConvert.fs │ ├── TestCustomOperators.fs │ ├── TestDateTime.fs │ ├── TestDateTimeOffset.fs │ ├── TestDependencyImport.fs │ ├── TestDictionary.fs │ ├── TestEnum.fs │ ├── TestEnumerable.fs │ ├── TestEvent.fs │ ├── TestFn.fs │ ├── TestGuid.fs │ ├── TestList.fs │ ├── TestLoops.fs │ ├── TestMap.fs │ ├── TestMisc.fs │ ├── TestNonRegression.fs │ ├── TestNullness.fs │ ├── TestObservable.fs │ ├── TestOption.fs │ ├── TestPyInterop.fs │ ├── TestQueue.fs │ ├── TestRecordType.fs │ ├── TestReflection.fs │ ├── TestRegex.fs │ ├── TestResizeArray.fs │ ├── TestResult.fs │ ├── TestSeq.fs │ ├── TestSeqExpression.fs │ ├── TestSet.fs │ ├── TestStack.fs │ ├── TestString.fs │ ├── TestSudoku.fs │ ├── TestSystemIO.fs │ ├── TestTailCall.fs │ ├── TestTask.fs │ ├── TestTimeSpan.fs │ ├── TestTupleType.fs │ ├── TestType.fs │ ├── TestUnionType.fs │ ├── TestUri.fs │ ├── Util.fs │ └── py │ │ ├── __init__.py │ │ ├── more_native_code.py │ │ ├── native_code.py │ │ └── nullness.py ├── React │ ├── Counter.fs │ ├── Fable.Tests.React.fsproj │ ├── SpreadSheet.fs │ ├── __tests__ │ │ ├── JSX_API.fs │ │ ├── React.fs │ │ └── __snapshots__ │ │ │ ├── JSX_API.fs.js.snap │ │ │ └── React.fs.js.snap │ ├── babel.config.js │ ├── package-lock.json │ └── package.json ├── Rust │ ├── Cargo.toml │ ├── Fable.Tests.Rust.fsproj │ └── tests │ │ ├── common │ │ ├── Aether.fs │ │ ├── Imports.fs │ │ ├── Util.fs │ │ ├── Util2.fs │ │ └── Util3.fs │ │ └── src │ │ ├── AnonRecordTests.fs │ │ ├── ApplicativeTests.fs │ │ ├── ArithmeticTests.fs │ │ ├── ArrayTests.fs │ │ ├── AsyncTests.fs │ │ ├── ByRefTests.fs │ │ ├── CharTests.fs │ │ ├── ClassTests.fs │ │ ├── ClosureTests.fs │ │ ├── ComparisonTests.fs │ │ ├── ControlFlowTests.fs │ │ ├── ConvertTests.fs │ │ ├── CustomOperatorTests.fs │ │ ├── DateOnlyTests.fs │ │ ├── DateTimeOffsetTests.fs │ │ ├── DateTimeTests.fs │ │ ├── DictionaryTests.fs │ │ ├── ElmishParserTests.fs │ │ ├── EnumTests.fs │ │ ├── EnumerableTests.fs │ │ ├── EventTests.fs │ │ ├── ExtInteropTests.rs │ │ ├── GuidTests.fs │ │ ├── HashSetTests.fs │ │ ├── ImportTests.fs │ │ ├── InterfaceTests.fs │ │ ├── InteropTests.fs │ │ ├── ListTests.fs │ │ ├── MapTests.fs │ │ ├── MiscTests.fs │ │ ├── MiscTests2.fs │ │ ├── NBodyTests.fs │ │ ├── NullnessTests.fs │ │ ├── ObservableTests.fs │ │ ├── OptionTests.fs │ │ ├── QueueTests.fs │ │ ├── RecordTests.fs │ │ ├── ReflectionTests.fs │ │ ├── RegexTests.fs │ │ ├── ResizeArrayTests.fs │ │ ├── ResultTests.fs │ │ ├── SeqExpressionTests.fs │ │ ├── SeqTests.fs │ │ ├── SetTests.fs │ │ ├── StackTests.fs │ │ ├── StringTests.fs │ │ ├── SudokuTest.fs │ │ ├── TailCallTests.fs │ │ ├── TaskTests.fs │ │ ├── TimeOnlyTests.fs │ │ ├── TimeSpanTests.fs │ │ ├── TupleTests.fs │ │ ├── TypeTests.fs │ │ ├── UnionTests.fs │ │ ├── UriTests.fs │ │ └── main.fs └── TypeScript │ ├── Fable.Tests.TypeScript.fsproj │ ├── LiteTsInteropTests.fs │ ├── Main.fs │ └── tsconfig.json ├── tests_external ├── Fable.Tests.External.fsproj ├── Util3.fs ├── Util4.fs └── bar.js └── uv.lock /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/scripts/install_dart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.devcontainer/scripts/install_dart.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/install_dsm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.devcontainer/scripts/install_dsm.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/zsh_dotnet_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.devcontainer/scripts/zsh_dotnet_completion.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fantomasignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.fantomasignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.github/workflows/commands.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/task-runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.husky/task-runner.json -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Fable.Standalone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/Fable.Standalone.sln -------------------------------------------------------------------------------- /Fable.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/Fable.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/README.md -------------------------------------------------------------------------------- /Settings.FSharpLint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/Settings.FSharpLint -------------------------------------------------------------------------------- /fable_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/fable_logo.png -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/global.json -------------------------------------------------------------------------------- /lib/fcs/FSharp.Compiler.Service.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/FSharp.Compiler.Service.deps.json -------------------------------------------------------------------------------- /lib/fcs/FSharp.Compiler.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/FSharp.Compiler.Service.dll -------------------------------------------------------------------------------- /lib/fcs/FSharp.Compiler.Service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/FSharp.Compiler.Service.xml -------------------------------------------------------------------------------- /lib/fcs/FSharp.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/FSharp.Core.dll -------------------------------------------------------------------------------- /lib/fcs/FSharp.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/FSharp.Core.xml -------------------------------------------------------------------------------- /lib/fcs/FSharp.DependencyManager.Nuget.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/FSharp.DependencyManager.Nuget.dll -------------------------------------------------------------------------------- /lib/fcs/FSharp.DependencyManager.Nuget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/FSharp.DependencyManager.Nuget.xml -------------------------------------------------------------------------------- /lib/fcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/lib/fcs/README.md -------------------------------------------------------------------------------- /local-packages/Buildalyzer.8.0.0-fable-001.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/local-packages/Buildalyzer.8.0.0-fable-001.nupkg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Fable.AST/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.AST/CHANGELOG.md -------------------------------------------------------------------------------- /src/Fable.AST/Common.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.AST/Common.fs -------------------------------------------------------------------------------- /src/Fable.AST/Fable.AST.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.AST/Fable.AST.fsproj -------------------------------------------------------------------------------- /src/Fable.AST/Fable.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.AST/Fable.fs -------------------------------------------------------------------------------- /src/Fable.AST/Plugins.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.AST/Plugins.fs -------------------------------------------------------------------------------- /src/Fable.Analyzers/Fable.Analyzers.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Analyzers/Fable.Analyzers.fsproj -------------------------------------------------------------------------------- /src/Fable.Analyzers/StdOutAnalyzer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Analyzers/StdOutAnalyzer.fs -------------------------------------------------------------------------------- /src/Fable.Build/CompilerJs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/CompilerJs.fs -------------------------------------------------------------------------------- /src/Fable.Build/Fable.Build.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Fable.Build.fsproj -------------------------------------------------------------------------------- /src/Fable.Build/FableLibrary/Core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/FableLibrary/Core.fs -------------------------------------------------------------------------------- /src/Fable.Build/FableLibrary/Dart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/FableLibrary/Dart.fs -------------------------------------------------------------------------------- /src/Fable.Build/FableLibrary/JavaScript.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/FableLibrary/JavaScript.fs -------------------------------------------------------------------------------- /src/Fable.Build/FableLibrary/Python.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/FableLibrary/Python.fs -------------------------------------------------------------------------------- /src/Fable.Build/FableLibrary/Rust.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/FableLibrary/Rust.fs -------------------------------------------------------------------------------- /src/Fable.Build/FableLibrary/TypeScript.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/FableLibrary/TypeScript.fs -------------------------------------------------------------------------------- /src/Fable.Build/FcsRepo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/FcsRepo.fs -------------------------------------------------------------------------------- /src/Fable.Build/GithubRelease.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/GithubRelease.fs -------------------------------------------------------------------------------- /src/Fable.Build/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Main.fs -------------------------------------------------------------------------------- /src/Fable.Build/Package.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Package.fs -------------------------------------------------------------------------------- /src/Fable.Build/Publish.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Publish.fs -------------------------------------------------------------------------------- /src/Fable.Build/Quicktest/Core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Quicktest/Core.fs -------------------------------------------------------------------------------- /src/Fable.Build/Quicktest/Dart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Quicktest/Dart.fs -------------------------------------------------------------------------------- /src/Fable.Build/Quicktest/JavaScript.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Quicktest/JavaScript.fs -------------------------------------------------------------------------------- /src/Fable.Build/Quicktest/Python.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Quicktest/Python.fs -------------------------------------------------------------------------------- /src/Fable.Build/Quicktest/Rust.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Quicktest/Rust.fs -------------------------------------------------------------------------------- /src/Fable.Build/Quicktest/TypeScript.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Quicktest/TypeScript.fs -------------------------------------------------------------------------------- /src/Fable.Build/SimpleExec.Extensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/SimpleExec.Extensions.fs -------------------------------------------------------------------------------- /src/Fable.Build/Standalone.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Standalone.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/CompilerJs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/CompilerJs.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/Dart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/Dart.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/Integration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/Integration.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/JavaScript.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/JavaScript.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/Python.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/Python.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/Rust.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/Rust.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/Standalone.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/Standalone.fs -------------------------------------------------------------------------------- /src/Fable.Build/Test/TypeScript.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Test/TypeScript.fs -------------------------------------------------------------------------------- /src/Fable.Build/Utils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Utils.fs -------------------------------------------------------------------------------- /src/Fable.Build/Utils/LastVersionFinder.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Utils/LastVersionFinder.fs -------------------------------------------------------------------------------- /src/Fable.Build/WorkerJs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/WorkerJs.fs -------------------------------------------------------------------------------- /src/Fable.Build/Workspace.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Build/Workspace.fs -------------------------------------------------------------------------------- /src/Fable.Cli/BuildalyzerCrackerResolver.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/BuildalyzerCrackerResolver.fs -------------------------------------------------------------------------------- /src/Fable.Cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/CHANGELOG.md -------------------------------------------------------------------------------- /src/Fable.Cli/Contributors.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/Contributors.fs -------------------------------------------------------------------------------- /src/Fable.Cli/CustomLogging.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/CustomLogging.fs -------------------------------------------------------------------------------- /src/Fable.Cli/Entry.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/Entry.fs -------------------------------------------------------------------------------- /src/Fable.Cli/Fable.Cli.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/Fable.Cli.fsproj -------------------------------------------------------------------------------- /src/Fable.Cli/FileWatchers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/FileWatchers.fs -------------------------------------------------------------------------------- /src/Fable.Cli/FileWatchers.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/FileWatchers.fsi -------------------------------------------------------------------------------- /src/Fable.Cli/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/Main.fs -------------------------------------------------------------------------------- /src/Fable.Cli/Pipeline.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/Pipeline.fs -------------------------------------------------------------------------------- /src/Fable.Cli/Printers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/Printers.fs -------------------------------------------------------------------------------- /src/Fable.Cli/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Fable.Cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Cli/README.md -------------------------------------------------------------------------------- /src/Fable.Compiler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/CHANGELOG.md -------------------------------------------------------------------------------- /src/Fable.Compiler/Fable.Compiler.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/Fable.Compiler.fsproj -------------------------------------------------------------------------------- /src/Fable.Compiler/File.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/File.fs -------------------------------------------------------------------------------- /src/Fable.Compiler/Globbing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/Globbing.fs -------------------------------------------------------------------------------- /src/Fable.Compiler/Globbing.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/Globbing.fsi -------------------------------------------------------------------------------- /src/Fable.Compiler/Library.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/Library.fs -------------------------------------------------------------------------------- /src/Fable.Compiler/Library.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/Library.fsi -------------------------------------------------------------------------------- /src/Fable.Compiler/MSBuildCrackerResolver.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/MSBuildCrackerResolver.fs -------------------------------------------------------------------------------- /src/Fable.Compiler/ProjectCracker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/ProjectCracker.fs -------------------------------------------------------------------------------- /src/Fable.Compiler/ProjectCracker.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/ProjectCracker.fsi -------------------------------------------------------------------------------- /src/Fable.Compiler/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/Util.fs -------------------------------------------------------------------------------- /src/Fable.Compiler/Util.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Compiler/Util.fsi -------------------------------------------------------------------------------- /src/Fable.Core/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Fable.Core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/CHANGELOG.md -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.Dart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.Dart.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.Extensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.Extensions.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.JS.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.JS.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.JsInterop.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.JsInterop.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.PhpInterop.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.PhpInterop.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.Py.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.Py.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.PyInterop.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.PyInterop.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.Rust.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.Rust.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.RustInterop.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.RustInterop.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.Types.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.Util.fs -------------------------------------------------------------------------------- /src/Fable.Core/Fable.Core.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/Fable.Core.fsproj -------------------------------------------------------------------------------- /src/Fable.Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Core/README.md -------------------------------------------------------------------------------- /src/Fable.PublishUtils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.PublishUtils/CHANGELOG.md -------------------------------------------------------------------------------- /src/Fable.PublishUtils/Fable.PublishUtils.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.PublishUtils/Fable.PublishUtils.fsproj -------------------------------------------------------------------------------- /src/Fable.PublishUtils/PublishUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.PublishUtils/PublishUtils.fs -------------------------------------------------------------------------------- /src/Fable.PublishUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.PublishUtils/README.md -------------------------------------------------------------------------------- /src/Fable.Transforms/BabelPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/BabelPrinter.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Dart/Dart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Dart/Dart.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Dart/DartPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Dart/DartPrinter.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Dart/Fable2Dart.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Dart/Fable2Dart.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Dart/Replacements.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Dart/Replacements.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/FSharp2Fable.Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/FSharp2Fable.Util.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/FSharp2Fable.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/FSharp2Fable.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/FSharp2Fable.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/FSharp2Fable.fsi -------------------------------------------------------------------------------- /src/Fable.Transforms/Fable.Transforms.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Fable.Transforms.fsproj -------------------------------------------------------------------------------- /src/Fable.Transforms/Fable2Babel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Fable2Babel.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/FableTransforms.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/FableTransforms.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/FableTransforms.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/FableTransforms.fsi -------------------------------------------------------------------------------- /src/Fable.Transforms/Global/Babel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Global/Babel.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Global/Compiler.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Global/Compiler.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Global/Fable.Core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Global/Fable.Core.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Global/Metadata.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Global/Metadata.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Global/Naming.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Global/Naming.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Global/Prelude.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Global/Prelude.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/MonadicTrampoline.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/MonadicTrampoline.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/OverloadSuffix.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/OverloadSuffix.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Php/Fable2Php.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Php/Fable2Php.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Php/Php.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Php/Php.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Php/PhpPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Php/PhpPrinter.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Php/README.md -------------------------------------------------------------------------------- /src/Fable.Transforms/Printer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Printer.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Python/Fable2Python.Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Python/Fable2Python.Util.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Python/Prelude.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Python/Prelude.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Python/Python.AST.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Python/Python.AST.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Python/PythonCompiler.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Python/PythonCompiler.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Python/PythonPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Python/PythonPrinter.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Python/README.md -------------------------------------------------------------------------------- /src/Fable.Transforms/Python/Replacements.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Python/Replacements.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/README.md -------------------------------------------------------------------------------- /src/Fable.Transforms/Replacements.Api.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Replacements.Api.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Replacements.Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Replacements.Util.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Replacements.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Replacements.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/ReplacementsInject.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/ReplacementsInject.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.Impl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.Impl.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.Parser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.Parser.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.Pretty.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.Pretty.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.Spans.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.Spans.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.State.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.State.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.Stubs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.Stubs.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.Types.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Rust.AST.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Rust.AST.fsproj -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Tests/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Tests/Program.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/AST/Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/AST/Tests/Tests.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/Fable2Rust.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/Fable2Rust.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/Replacements.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/Replacements.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Rust/RustPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Rust/RustPrinter.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/State.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/State.fs -------------------------------------------------------------------------------- /src/Fable.Transforms/Transforms.Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/Fable.Transforms/Transforms.Util.fs -------------------------------------------------------------------------------- /src/fable-compiler-js/.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | dist/ 3 | out/ -------------------------------------------------------------------------------- /src/fable-compiler-js/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/.npmignore -------------------------------------------------------------------------------- /src/fable-compiler-js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/CHANGELOG.md -------------------------------------------------------------------------------- /src/fable-compiler-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/README.md -------------------------------------------------------------------------------- /src/fable-compiler-js/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import "./dist/app.min.js"; 3 | -------------------------------------------------------------------------------- /src/fable-compiler-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/package-lock.json -------------------------------------------------------------------------------- /src/fable-compiler-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/package.json -------------------------------------------------------------------------------- /src/fable-compiler-js/src/Platform.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/src/Platform.fs -------------------------------------------------------------------------------- /src/fable-compiler-js/src/ProjectParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/src/ProjectParser.fs -------------------------------------------------------------------------------- /src/fable-compiler-js/src/app.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/src/app.fs -------------------------------------------------------------------------------- /src/fable-compiler-js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/src/util.js -------------------------------------------------------------------------------- /src/fable-compiler-js/test/test_script.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-compiler-js/test/test_script.fsx -------------------------------------------------------------------------------- /src/fable-library-dart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/.gitignore -------------------------------------------------------------------------------- /src/fable-library-dart/Array.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Array.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Choice.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Choice.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Date.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Date.dart -------------------------------------------------------------------------------- /src/fable-library-dart/FSharp.Core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/FSharp.Core.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Fable.Library.Dart.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Fable.Library.Dart.fsproj -------------------------------------------------------------------------------- /src/fable-library-dart/Global.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Global.fs -------------------------------------------------------------------------------- /src/fable-library-dart/List.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/List.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Map.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Map.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Option.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Option.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Range.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Range.fs -------------------------------------------------------------------------------- /src/fable-library-dart/RegExp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/RegExp.dart -------------------------------------------------------------------------------- /src/fable-library-dart/Result.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Result.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Seq.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Seq.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Seq2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Seq2.fs -------------------------------------------------------------------------------- /src/fable-library-dart/Set.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Set.fs -------------------------------------------------------------------------------- /src/fable-library-dart/String.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/String.dart -------------------------------------------------------------------------------- /src/fable-library-dart/System.Text.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/System.Text.fs -------------------------------------------------------------------------------- /src/fable-library-dart/System.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/System.fs -------------------------------------------------------------------------------- /src/fable-library-dart/TimeSpan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/TimeSpan.dart -------------------------------------------------------------------------------- /src/fable-library-dart/Types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Types.dart -------------------------------------------------------------------------------- /src/fable-library-dart/Util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/Util.dart -------------------------------------------------------------------------------- /src/fable-library-dart/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/analysis_options.yaml -------------------------------------------------------------------------------- /src/fable-library-dart/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/pubspec.lock -------------------------------------------------------------------------------- /src/fable-library-dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-dart/pubspec.yaml -------------------------------------------------------------------------------- /src/fable-library-php/Array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Array.php -------------------------------------------------------------------------------- /src/fable-library-php/Double.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Double.php -------------------------------------------------------------------------------- /src/fable-library-php/FSharp.Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/FSharp.Core.php -------------------------------------------------------------------------------- /src/fable-library-php/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/List.php -------------------------------------------------------------------------------- /src/fable-library-php/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Map.php -------------------------------------------------------------------------------- /src/fable-library-php/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Option.php -------------------------------------------------------------------------------- /src/fable-library-php/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Random.php -------------------------------------------------------------------------------- /src/fable-library-php/Range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Range.php -------------------------------------------------------------------------------- /src/fable-library-php/Seq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Seq.php -------------------------------------------------------------------------------- /src/fable-library-php/Seq2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Seq2.php -------------------------------------------------------------------------------- /src/fable-library-php/Serialization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Serialization.php -------------------------------------------------------------------------------- /src/fable-library-php/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Set.php -------------------------------------------------------------------------------- /src/fable-library-php/String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/String.php -------------------------------------------------------------------------------- /src/fable-library-php/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-php/Util.php -------------------------------------------------------------------------------- /src/fable-library-py/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/.flake8 -------------------------------------------------------------------------------- /src/fable-library-py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/.gitignore -------------------------------------------------------------------------------- /src/fable-library-py/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/Cargo.lock -------------------------------------------------------------------------------- /src/fable-library-py/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/Cargo.toml -------------------------------------------------------------------------------- /src/fable-library-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/README.md -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/Array.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/Array.fs -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/Async.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/Async.fs -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/List.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/List.fs -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/Native.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/Native.fs -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/Timer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/Timer.fs -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/__init__.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.0" 2 | -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/array_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/array_.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/async_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/async_.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/big_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/big_int.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/boolean.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/char.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/choice.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/choice.pyi -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/core/ints.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/core/ints.pyi -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/date.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/decimal_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/decimal_.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/double.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/double.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/encoding.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/event.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/file.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/floats.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/guid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/guid.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/int32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/int32.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/long.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/map_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/map_util.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/numeric.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/observable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/observable.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/option.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/path.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 compliance 2 | -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/reflection.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/reg_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/reg_exp.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/string_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/string_.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/task.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/thread.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/time_span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/time_span.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/types.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/uri.py -------------------------------------------------------------------------------- /src/fable-library-py/fable_library/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/fable_library/util.py -------------------------------------------------------------------------------- /src/fable-library-py/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/py.typed -------------------------------------------------------------------------------- /src/fable-library-py/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/pyproject.toml -------------------------------------------------------------------------------- /src/fable-library-py/src/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/array.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/datetime_offset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/datetime_offset.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/floats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/floats.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/ints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/ints.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/lib.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/native_array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/native_array.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/options.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/strings.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/types.rs -------------------------------------------------------------------------------- /src/fable-library-py/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/src/util.rs -------------------------------------------------------------------------------- /src/fable-library-py/tests-benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/tests-benchmark/README.md -------------------------------------------------------------------------------- /src/fable-library-py/tests-benchmark/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/tests-benchmark/conftest.py -------------------------------------------------------------------------------- /src/fable-library-py/tests/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/tests/test_array.py -------------------------------------------------------------------------------- /src/fable-library-py/tests/test_array_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/tests/test_array_create.py -------------------------------------------------------------------------------- /src/fable-library-py/tests/test_float_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/tests/test_float_math.py -------------------------------------------------------------------------------- /src/fable-library-py/tests/test_floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/tests/test_floats.py -------------------------------------------------------------------------------- /src/fable-library-py/tests/test_ints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/tests/test_ints.py -------------------------------------------------------------------------------- /src/fable-library-py/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-py/uv.lock -------------------------------------------------------------------------------- /src/fable-library-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/Cargo.toml -------------------------------------------------------------------------------- /src/fable-library-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/README.md -------------------------------------------------------------------------------- /src/fable-library-rust/src/Array.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Array.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Async.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/BigInt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/BigInt.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/BitConverter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/BitConverter.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Char.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Choice.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Choice.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Convert.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/DateOnly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/DateOnly.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/DateTime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/DateTime.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/DateTimeOffset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/DateTimeOffset.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Decimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Decimal.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Encoding.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Exception.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Exception.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/FSharp.Collections.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/FSharp.Collections.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/FSharp.Control.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/FSharp.Control.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/FSharp.Core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/FSharp.Core.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/FuncType.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/FuncType.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Global.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Global.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Guid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Guid.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/HashMap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/HashMap.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/HashSet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/HashSet.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Interfaces.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Interfaces.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Interop.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Lazy.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/List.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/List.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/LrcPtr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/LrcPtr.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Map.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Map.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Mutable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Mutable.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Native.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Native.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/NativeArray.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/NativeArray.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Numeric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Numeric.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Option.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Option.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Range.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Range.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Reflection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Reflection.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/RegExp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/RegExp.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Result.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Result.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Seq.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Seq.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Set.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Set.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/String.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/String.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/System.Text.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/System.Text.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/System.Threading.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/System.Threading.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/System.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/System.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/TimeOnly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/TimeOnly.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/TimeSpan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/TimeSpan.rs -------------------------------------------------------------------------------- /src/fable-library-rust/src/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/Util.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/lib.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/lib.fs -------------------------------------------------------------------------------- /src/fable-library-rust/src/print_no_std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-rust/src/print_no_std.rs -------------------------------------------------------------------------------- /src/fable-library-ts/Array.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Array.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Async.ts -------------------------------------------------------------------------------- /src/fable-library-ts/AsyncBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/AsyncBuilder.ts -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt.fs -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt.ts -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt/n.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt/n.fs -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt/n.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt/n.fsi -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt/q.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt/q.fs -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt/q.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt/q.fsi -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt/z.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt/z.fs -------------------------------------------------------------------------------- /src/fable-library-ts/BigInt/z.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BigInt/z.fsi -------------------------------------------------------------------------------- /src/fable-library-ts/BitConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/BitConverter.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Boolean.ts -------------------------------------------------------------------------------- /src/fable-library-ts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/CHANGELOG.md -------------------------------------------------------------------------------- /src/fable-library-ts/Char.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Char.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Choice.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Choice.fs -------------------------------------------------------------------------------- /src/fable-library-ts/CollectionUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/CollectionUtil.ts -------------------------------------------------------------------------------- /src/fable-library-ts/ConditionalWeakTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/ConditionalWeakTable.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Date.ts -------------------------------------------------------------------------------- /src/fable-library-ts/DateOffset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/DateOffset.ts -------------------------------------------------------------------------------- /src/fable-library-ts/DateOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/DateOnly.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Decimal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Decimal.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Double.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Double.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Encoding.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Event.ts -------------------------------------------------------------------------------- /src/fable-library-ts/FSharp.Collections.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/FSharp.Collections.fs -------------------------------------------------------------------------------- /src/fable-library-ts/FSharp.Core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/FSharp.Core.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Global.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Global.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Guid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Guid.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Int32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Int32.ts -------------------------------------------------------------------------------- /src/fable-library-ts/List.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/List.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Long.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Long.ts -------------------------------------------------------------------------------- /src/fable-library-ts/MailboxProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/MailboxProcessor.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Map.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Map.fs -------------------------------------------------------------------------------- /src/fable-library-ts/MapUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/MapUtil.ts -------------------------------------------------------------------------------- /src/fable-library-ts/MutableMap.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/MutableMap.fs -------------------------------------------------------------------------------- /src/fable-library-ts/MutableSet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/MutableSet.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Native.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Native.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Numeric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Numeric.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Observable.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Option.ts -------------------------------------------------------------------------------- /src/fable-library-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/README.md -------------------------------------------------------------------------------- /src/fable-library-ts/Random.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Random.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Range.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Range.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Reflection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Reflection.ts -------------------------------------------------------------------------------- /src/fable-library-ts/RegExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/RegExp.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Result.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Result.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Seq.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Seq.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Seq2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Seq2.fs -------------------------------------------------------------------------------- /src/fable-library-ts/Set.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Set.fs -------------------------------------------------------------------------------- /src/fable-library-ts/String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/String.ts -------------------------------------------------------------------------------- /src/fable-library-ts/System.Text.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/System.Text.fs -------------------------------------------------------------------------------- /src/fable-library-ts/System.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/System.fs -------------------------------------------------------------------------------- /src/fable-library-ts/TimeOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/TimeOnly.ts -------------------------------------------------------------------------------- /src/fable-library-ts/TimeSpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/TimeSpan.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Timer.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Types.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Unicode.13.0.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Unicode.13.0.0.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Uri.ts -------------------------------------------------------------------------------- /src/fable-library-ts/Util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/Util.ts -------------------------------------------------------------------------------- /src/fable-library-ts/lib/big.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/lib/big.d.ts -------------------------------------------------------------------------------- /src/fable-library-ts/lib/big.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/lib/big.js -------------------------------------------------------------------------------- /src/fable-library-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/package.json -------------------------------------------------------------------------------- /src/fable-library-ts/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/ts/tsconfig.json -------------------------------------------------------------------------------- /src/fable-library-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-library-ts/tsconfig.json -------------------------------------------------------------------------------- /src/fable-metadata/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/CHANGELOG.md -------------------------------------------------------------------------------- /src/fable-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/README.md -------------------------------------------------------------------------------- /src/fable-metadata/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/index.js -------------------------------------------------------------------------------- /src/fable-metadata/lib/Browser.Blob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Browser.Blob.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/Browser.Dom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Browser.Dom.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/Browser.Event.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Browser.Event.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/Browser.Gamepad.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Browser.Gamepad.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/Browser.WebGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Browser.WebGL.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/Browser.WebStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Browser.WebStorage.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/FSharp.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/FSharp.Core.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/Fable.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Fable.Core.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/Fable.Repl.Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/Fable.Repl.Lib.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Collections.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.ComponentModel.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Console.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Core.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Globalization.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.IO.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Net.Requests.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Net.WebClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Net.WebClient.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Numerics.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Reflection.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Runtime.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Text.Encoding.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.Threading.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.ValueTuple.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/System.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/mscorlib.dll -------------------------------------------------------------------------------- /src/fable-metadata/lib/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/lib/netstandard.dll -------------------------------------------------------------------------------- /src/fable-metadata/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/package-lock.json -------------------------------------------------------------------------------- /src/fable-metadata/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-metadata/package.json -------------------------------------------------------------------------------- /src/fable-standalone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/.gitignore -------------------------------------------------------------------------------- /src/fable-standalone/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/.npmignore -------------------------------------------------------------------------------- /src/fable-standalone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/CHANGELOG.md -------------------------------------------------------------------------------- /src/fable-standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/README.md -------------------------------------------------------------------------------- /src/fable-standalone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/package-lock.json -------------------------------------------------------------------------------- /src/fable-standalone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/package.json -------------------------------------------------------------------------------- /src/fable-standalone/src/Fable.Standalone.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Fable.Standalone.fsproj -------------------------------------------------------------------------------- /src/fable-standalone/src/Interfaces.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Interfaces.fs -------------------------------------------------------------------------------- /src/fable-standalone/src/Lexer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Lexer.fs -------------------------------------------------------------------------------- /src/fable-standalone/src/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Main.fs -------------------------------------------------------------------------------- /src/fable-standalone/src/Worker/Shared.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Worker/Shared.fs -------------------------------------------------------------------------------- /src/fable-standalone/src/Worker/Worker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Worker/Worker.fs -------------------------------------------------------------------------------- /src/fable-standalone/src/Worker/Worker.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Worker/Worker.fsproj -------------------------------------------------------------------------------- /src/fable-standalone/src/Worker/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/src/Worker/util.js -------------------------------------------------------------------------------- /src/fable-standalone/test/bench-compiler/app.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench-compiler/app.fs -------------------------------------------------------------------------------- /src/fable-standalone/test/bench-compiler/rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench-compiler/rd.xml -------------------------------------------------------------------------------- /src/fable-standalone/test/bench-compiler/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench-compiler/util.js -------------------------------------------------------------------------------- /src/fable-standalone/test/bench/Platform.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench/Platform.fs -------------------------------------------------------------------------------- /src/fable-standalone/test/bench/app.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench/app.fs -------------------------------------------------------------------------------- /src/fable-standalone/test/bench/bench.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench/bench.fsproj -------------------------------------------------------------------------------- /src/fable-standalone/test/bench/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /src/fable-standalone/test/bench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench/package.json -------------------------------------------------------------------------------- /src/fable-standalone/test/bench/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/test/bench/transform.js -------------------------------------------------------------------------------- /src/fable-standalone/worker.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fable-standalone/worker.config.js -------------------------------------------------------------------------------- /src/fcs-fable/FSStrings.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/FSStrings.fs -------------------------------------------------------------------------------- /src/fcs-fable/Fable.Core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/Fable.Core.fs -------------------------------------------------------------------------------- /src/fcs-fable/SR.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/SR.fs -------------------------------------------------------------------------------- /src/fcs-fable/System.Collections.Concurrent.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/System.Collections.Concurrent.fs -------------------------------------------------------------------------------- /src/fcs-fable/System.Collections.Generic.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/System.Collections.Generic.fs -------------------------------------------------------------------------------- /src/fcs-fable/System.Collections.Immutable.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/System.Collections.Immutable.fs -------------------------------------------------------------------------------- /src/fcs-fable/System.IO.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/System.IO.fs -------------------------------------------------------------------------------- /src/fcs-fable/System.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/System.fs -------------------------------------------------------------------------------- /src/fcs-fable/TcImports_shim.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/TcImports_shim.fs -------------------------------------------------------------------------------- /src/fcs-fable/ast_print.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/ast_print.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/FSComp.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/FSComp.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/FSIstrings.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/FSIstrings.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/codegen.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/codegen.fsproj -------------------------------------------------------------------------------- /src/fcs-fable/codegen/fssrgen.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/fssrgen.fsx -------------------------------------------------------------------------------- /src/fcs-fable/codegen/fssrgen.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/fssrgen.targets -------------------------------------------------------------------------------- /src/fcs-fable/codegen/illex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/illex.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/illex.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/illex.fsi -------------------------------------------------------------------------------- /src/fcs-fable/codegen/ilpars.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/ilpars.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/ilpars.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/ilpars.fsi -------------------------------------------------------------------------------- /src/fcs-fable/codegen/lex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/lex.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/lex.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/lex.fsi -------------------------------------------------------------------------------- /src/fcs-fable/codegen/pars.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/pars.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/pars.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/pars.fsi -------------------------------------------------------------------------------- /src/fcs-fable/codegen/pplex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/pplex.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/pplex.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/pplex.fsi -------------------------------------------------------------------------------- /src/fcs-fable/codegen/pppars.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/pppars.fs -------------------------------------------------------------------------------- /src/fcs-fable/codegen/pppars.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/codegen/pppars.fsi -------------------------------------------------------------------------------- /src/fcs-fable/fcs-fable.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/fcs-fable.fsproj -------------------------------------------------------------------------------- /src/fcs-fable/service_slim.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/service_slim.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/AbstractIL/il.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/AbstractIL/il.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/AbstractIL/il.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/AbstractIL/il.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/AbstractIL/ilascii.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/AbstractIL/ilascii.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/AbstractIL/ilx.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/AbstractIL/ilx.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/AbstractIL/ilx.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/AbstractIL/ilx.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Checking/import.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Checking/import.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Checking/import.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Checking/import.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Checking/infos.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Checking/infos.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Checking/infos.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Checking/infos.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/CodeGen/IlxGen.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/CodeGen/IlxGen.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/CodeGen/IlxGen.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/CodeGen/IlxGen.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Driver/fsc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Driver/fsc.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Driver/fsc.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Driver/fsc.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/FSComp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/FSComp.txt -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/FSCompCheck.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/FSCompCheck.fsx -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/FSStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/FSStrings.resx -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Interactive/fsi.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Interactive/fsi.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Interactive/fsi.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Interactive/fsi.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/ItemKey.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/ItemKey.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/ItemKey.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/ItemKey.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/SynExpr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/SynExpr.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/SynExpr.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/SynExpr.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/SynPat.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/SynPat.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/SynPat.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/SynPat.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/service.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/service.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Service/service.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Service/service.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Symbols/Exprs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Symbols/Exprs.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Symbols/Exprs.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Symbols/Exprs.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Symbols/Symbols.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Symbols/Symbols.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Symbols/Symbols.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Symbols/Symbols.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/Caches.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/Caches.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/ildiag.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/ildiag.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/illib.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/illib.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/illib.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/illib.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/lib.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/lib.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/lib.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/lib.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/range.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/range.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/range.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/range.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/sr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/sr.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/sr.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/sr.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/zmap.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/zmap.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/zmap.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/zmap.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/zset.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/zset.fs -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/Utilities/zset.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/Utilities/zset.fsi -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/lex.fsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/lex.fsl -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/logo.png -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/pars.fsy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/pars.fsy -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/pplex.fsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/pplex.fsl -------------------------------------------------------------------------------- /src/fcs-fable/src/Compiler/pppars.fsy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/src/Compiler/pppars.fsy -------------------------------------------------------------------------------- /src/fcs-fable/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/.gitignore -------------------------------------------------------------------------------- /src/fcs-fable/test/Metadata.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/Metadata.fs -------------------------------------------------------------------------------- /src/fcs-fable/test/Platform.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/Platform.fs -------------------------------------------------------------------------------- /src/fcs-fable/test/ProjectParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/ProjectParser.fs -------------------------------------------------------------------------------- /src/fcs-fable/test/bench/bench.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/bench/bench.fs -------------------------------------------------------------------------------- /src/fcs-fable/test/fcs-fable-test.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/fcs-fable-test.fsproj -------------------------------------------------------------------------------- /src/fcs-fable/test/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/nuget.config -------------------------------------------------------------------------------- /src/fcs-fable/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/package.json -------------------------------------------------------------------------------- /src/fcs-fable/test/test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/test.fs -------------------------------------------------------------------------------- /src/fcs-fable/test/test_script.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/fcs-fable/test/test_script.fsx -------------------------------------------------------------------------------- /src/quicktest-dart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-dart/.gitignore -------------------------------------------------------------------------------- /src/quicktest-dart/QuickTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-dart/QuickTest.fs -------------------------------------------------------------------------------- /src/quicktest-dart/Quicktest.Dart.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-dart/Quicktest.Dart.fsproj -------------------------------------------------------------------------------- /src/quicktest-dart/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-dart/analysis_options.yaml -------------------------------------------------------------------------------- /src/quicktest-dart/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-dart/pubspec.lock -------------------------------------------------------------------------------- /src/quicktest-dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-dart/pubspec.yaml -------------------------------------------------------------------------------- /src/quicktest-py/quicktest.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-py/quicktest.fsx -------------------------------------------------------------------------------- /src/quicktest-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-rust/Cargo.toml -------------------------------------------------------------------------------- /src/quicktest-rust/Quicktest.Rust.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-rust/Quicktest.Rust.fsproj -------------------------------------------------------------------------------- /src/quicktest-rust/src/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest-rust/src/main.fs -------------------------------------------------------------------------------- /src/quicktest/QuickTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest/QuickTest.fs -------------------------------------------------------------------------------- /src/quicktest/QuickTest.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest/QuickTest.fsproj -------------------------------------------------------------------------------- /src/quicktest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest/README.md -------------------------------------------------------------------------------- /src/quicktest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/quicktest/tsconfig.json -------------------------------------------------------------------------------- /src/tools/ASTViewer/ASTViewer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/tools/ASTViewer/ASTViewer.fs -------------------------------------------------------------------------------- /src/tools/ASTViewer/ASTViewer.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/tools/ASTViewer/ASTViewer.fsproj -------------------------------------------------------------------------------- /src/tools/InjectProcessor/InjectProcessor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/tools/InjectProcessor/InjectProcessor.fs -------------------------------------------------------------------------------- /src/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/tools/README.md -------------------------------------------------------------------------------- /src/tools/coverage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/tools/coverage/package.json -------------------------------------------------------------------------------- /src/tools/source-maps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/tools/source-maps/package.json -------------------------------------------------------------------------------- /src/tools/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/src/tools/test-all.sh -------------------------------------------------------------------------------- /tests/Compiler/TestProject/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Compiler/TestProject/Program.fs -------------------------------------------------------------------------------- /tests/Dart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/.gitignore -------------------------------------------------------------------------------- /tests/Dart/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/analysis_options.yaml -------------------------------------------------------------------------------- /tests/Dart/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/main.dart -------------------------------------------------------------------------------- /tests/Dart/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/pubspec.lock -------------------------------------------------------------------------------- /tests/Dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/pubspec.yaml -------------------------------------------------------------------------------- /tests/Dart/src/ArithmeticTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/ArithmeticTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/ArrayTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/ArrayTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/ComparisonTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/ComparisonTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/CustomOperatorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/CustomOperatorTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/DateTimeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/DateTimeTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/DictionaryTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/DictionaryTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/EnumTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/EnumTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/EnumerableTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/EnumerableTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/Fable.Tests.Dart.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/Fable.Tests.Dart.fsproj -------------------------------------------------------------------------------- /tests/Dart/src/HashSetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/HashSetTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/ListTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/ListTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/MapTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/MapTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/MiscTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/MiscTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/NullnessTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/NullnessTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/OptionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/OptionTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/RecordTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/RecordTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/RegexTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/RegexTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/ResizeArrayTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/ResizeArrayTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/ResultTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/ResultTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/SeqExpressionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/SeqExpressionTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/SeqTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/SeqTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/SetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/SetTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/StringTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/StringTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/SudokuTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/SudokuTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/TailCallTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/TailCallTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/Tests.Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/Tests.Util.fs -------------------------------------------------------------------------------- /tests/Dart/src/TimeSpanTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/TimeSpanTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/TupleTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/TupleTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/TypeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/TypeTests.fs -------------------------------------------------------------------------------- /tests/Dart/src/UnionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Dart/src/UnionTests.fs -------------------------------------------------------------------------------- /tests/Integration/Compiler/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Integration/Compiler/Main.fs -------------------------------------------------------------------------------- /tests/Integration/Compiler/TestProject/.gitignore: -------------------------------------------------------------------------------- 1 | Program.fs -------------------------------------------------------------------------------- /tests/Integration/Compiler/Util/Compiler.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Integration/Compiler/Util/Compiler.fs -------------------------------------------------------------------------------- /tests/Integration/Integration/CliTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Integration/Integration/CliTests.fs -------------------------------------------------------------------------------- /tests/Integration/Integration/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Integration/Integration/Main.fs -------------------------------------------------------------------------------- /tests/Integration/Integration/data/eraseAttribute/ErasedTypeWithProperty.jsx.expected: -------------------------------------------------------------------------------- 1 | 2 | export const a = 0; 3 | 4 | -------------------------------------------------------------------------------- /tests/Integration/Integration/data/signatureHidesFunction/Library.fsi: -------------------------------------------------------------------------------- 1 | module Lib 2 | 3 | val f: b:int -> int -------------------------------------------------------------------------------- /tests/Js/Adaptive/AdaptiveTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Adaptive/AdaptiveTests.fs -------------------------------------------------------------------------------- /tests/Js/Adaptive/Fable.Tests.Adaptive.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Adaptive/Fable.Tests.Adaptive.fsproj -------------------------------------------------------------------------------- /tests/Js/Adaptive/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Adaptive/Main.fs -------------------------------------------------------------------------------- /tests/Js/DllRef/Fable.Tests.DllRef.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/DllRef/Fable.Tests.DllRef.fsproj -------------------------------------------------------------------------------- /tests/Js/DllRef/Lib.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/DllRef/Lib.fs -------------------------------------------------------------------------------- /tests/Js/DllRef/Lib2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/DllRef/Lib2.fs -------------------------------------------------------------------------------- /tests/Js/DllRef/Util/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/DllRef/Util/Util.fs -------------------------------------------------------------------------------- /tests/Js/DllRef/js1/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/DllRef/js1/lib.js -------------------------------------------------------------------------------- /tests/Js/DllRef/js2/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/DllRef/js2/lib.js -------------------------------------------------------------------------------- /tests/Js/DllRef/numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/DllRef/numbers.js -------------------------------------------------------------------------------- /tests/Js/Main/ApplicativeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ApplicativeTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ArithmeticTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ArithmeticTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ArrayTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ArrayTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/AsyncTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/AsyncTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/CharTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/CharTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ComparisonTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ComparisonTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ConditionalWeakTableTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ConditionalWeakTableTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ConvertTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ConvertTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/CustomOperatorsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/CustomOperatorsTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/DateOnlyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/DateOnlyTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/DateTimeOffsetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/DateTimeOffsetTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/DateTimeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/DateTimeTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/DictionaryTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/DictionaryTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/DllRef/Lib2.fs: -------------------------------------------------------------------------------- 1 | module Fable.Tests.DllRef2.Lib2 2 | 3 | let value = 20 -------------------------------------------------------------------------------- /tests/Js/Main/ElmishParserTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ElmishParserTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/EnumTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/EnumTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/EnumerableTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/EnumerableTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/EventTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/EventTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/Fable.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Fable.Tests.fsproj -------------------------------------------------------------------------------- /tests/Js/Main/Global.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Global.fs -------------------------------------------------------------------------------- /tests/Js/Main/Globs/GlobTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Globs/GlobTest.fs -------------------------------------------------------------------------------- /tests/Js/Main/HashSetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/HashSetTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ImportTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ImportTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/JsInteropTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/JsInteropTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ListCollectorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ListCollectorTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ListTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ListTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Main.fs -------------------------------------------------------------------------------- /tests/Js/Main/MapTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/MapTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/MiscTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/MiscTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/MiscTestsHelper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/MiscTestsHelper.fs -------------------------------------------------------------------------------- /tests/Js/Main/NullnessTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/NullnessTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ObservableTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ObservableTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/OptionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/OptionTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/QueueTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/QueueTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/RecordTypeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/RecordTypeTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ReflectionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ReflectionTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/RegexTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/RegexTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ResizeArrayTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ResizeArrayTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/ResultTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/ResultTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/SeqExpressionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/SeqExpressionTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/SeqTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/SeqTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/SetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/SetTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/StackTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/StackTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/StringTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/StringTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/SudokuTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/SudokuTest.fs -------------------------------------------------------------------------------- /tests/Js/Main/TailCallTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/TailCallTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/TimeOnlyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/TimeOnlyTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/TimeSpanTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/TimeSpanTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/TupleTypeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/TupleTypeTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/TypeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/TypeTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/UnionTypeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/UnionTypeTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/UriTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/UriTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/Aether.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/Aether.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/Thoth.Json.Decode.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/Thoth.Json.Decode.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/Util.Testing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/Util.Testing.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/Util.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/Util2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/Util2.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/Util3.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/Util3.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/UtilTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/UtilTests.fs -------------------------------------------------------------------------------- /tests/Js/Main/Util/b.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/Util/b.fs -------------------------------------------------------------------------------- /tests/Js/Main/js/1foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/js/1foo.js -------------------------------------------------------------------------------- /tests/Js/Main/js/nullness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/js/nullness.js -------------------------------------------------------------------------------- /tests/Js/Main/js/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Main/js/polyfill.js -------------------------------------------------------------------------------- /tests/Js/Project With Spaces/Util/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Project With Spaces/Util/Util.fs -------------------------------------------------------------------------------- /tests/Js/Project With Spaces/Util/Util.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Project With Spaces/Util/Util.fsi -------------------------------------------------------------------------------- /tests/Js/Project With Spaces/Util/b.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Js/Project With Spaces/Util/b.fs -------------------------------------------------------------------------------- /tests/Php/Fable.Tests.Php.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/Fable.Tests.Php.fsproj -------------------------------------------------------------------------------- /tests/Php/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/Main.fs -------------------------------------------------------------------------------- /tests/Php/TestAsync.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestAsync.fs -------------------------------------------------------------------------------- /tests/Php/TestFn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestFn.fs -------------------------------------------------------------------------------- /tests/Php/TestList.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestList.fs -------------------------------------------------------------------------------- /tests/Php/TestLoops.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestLoops.fs -------------------------------------------------------------------------------- /tests/Php/TestMath.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestMath.fs -------------------------------------------------------------------------------- /tests/Php/TestOption.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestOption.fs -------------------------------------------------------------------------------- /tests/Php/TestRecordType.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestRecordType.fs -------------------------------------------------------------------------------- /tests/Php/TestSeq.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestSeq.fs -------------------------------------------------------------------------------- /tests/Php/TestSet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestSet.fs -------------------------------------------------------------------------------- /tests/Php/TestString.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestString.fs -------------------------------------------------------------------------------- /tests/Php/TestSudoku.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestSudoku.fs -------------------------------------------------------------------------------- /tests/Php/TestUnionType.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/TestUnionType.fs -------------------------------------------------------------------------------- /tests/Php/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Php/Util.fs -------------------------------------------------------------------------------- /tests/Python/Fable.Tests.Python.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/Fable.Tests.Python.fsproj -------------------------------------------------------------------------------- /tests/Python/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/Main.fs -------------------------------------------------------------------------------- /tests/Python/Misc/Aether.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/Misc/Aether.fs -------------------------------------------------------------------------------- /tests/Python/Misc/Util2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/Misc/Util2.fs -------------------------------------------------------------------------------- /tests/Python/Misc/Util3.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/Misc/Util3.fs -------------------------------------------------------------------------------- /tests/Python/MiscTestsHelper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/MiscTestsHelper.fs -------------------------------------------------------------------------------- /tests/Python/TestAnonRecords.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestAnonRecords.fs -------------------------------------------------------------------------------- /tests/Python/TestApplicative.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestApplicative.fs -------------------------------------------------------------------------------- /tests/Python/TestArithmetic.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestArithmetic.fs -------------------------------------------------------------------------------- /tests/Python/TestArray.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestArray.fs -------------------------------------------------------------------------------- /tests/Python/TestAsync.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestAsync.fs -------------------------------------------------------------------------------- /tests/Python/TestChar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestChar.fs -------------------------------------------------------------------------------- /tests/Python/TestComparison.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestComparison.fs -------------------------------------------------------------------------------- /tests/Python/TestConvert.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestConvert.fs -------------------------------------------------------------------------------- /tests/Python/TestCustomOperators.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestCustomOperators.fs -------------------------------------------------------------------------------- /tests/Python/TestDateTime.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestDateTime.fs -------------------------------------------------------------------------------- /tests/Python/TestDateTimeOffset.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestDateTimeOffset.fs -------------------------------------------------------------------------------- /tests/Python/TestDependencyImport.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestDependencyImport.fs -------------------------------------------------------------------------------- /tests/Python/TestDictionary.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestDictionary.fs -------------------------------------------------------------------------------- /tests/Python/TestEnum.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestEnum.fs -------------------------------------------------------------------------------- /tests/Python/TestEnumerable.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestEnumerable.fs -------------------------------------------------------------------------------- /tests/Python/TestEvent.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestEvent.fs -------------------------------------------------------------------------------- /tests/Python/TestFn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestFn.fs -------------------------------------------------------------------------------- /tests/Python/TestGuid.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestGuid.fs -------------------------------------------------------------------------------- /tests/Python/TestList.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestList.fs -------------------------------------------------------------------------------- /tests/Python/TestLoops.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestLoops.fs -------------------------------------------------------------------------------- /tests/Python/TestMap.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestMap.fs -------------------------------------------------------------------------------- /tests/Python/TestMisc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestMisc.fs -------------------------------------------------------------------------------- /tests/Python/TestNonRegression.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestNonRegression.fs -------------------------------------------------------------------------------- /tests/Python/TestNullness.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestNullness.fs -------------------------------------------------------------------------------- /tests/Python/TestObservable.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestObservable.fs -------------------------------------------------------------------------------- /tests/Python/TestOption.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestOption.fs -------------------------------------------------------------------------------- /tests/Python/TestPyInterop.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestPyInterop.fs -------------------------------------------------------------------------------- /tests/Python/TestQueue.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestQueue.fs -------------------------------------------------------------------------------- /tests/Python/TestRecordType.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestRecordType.fs -------------------------------------------------------------------------------- /tests/Python/TestReflection.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestReflection.fs -------------------------------------------------------------------------------- /tests/Python/TestRegex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestRegex.fs -------------------------------------------------------------------------------- /tests/Python/TestResizeArray.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestResizeArray.fs -------------------------------------------------------------------------------- /tests/Python/TestResult.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestResult.fs -------------------------------------------------------------------------------- /tests/Python/TestSeq.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestSeq.fs -------------------------------------------------------------------------------- /tests/Python/TestSeqExpression.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestSeqExpression.fs -------------------------------------------------------------------------------- /tests/Python/TestSet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestSet.fs -------------------------------------------------------------------------------- /tests/Python/TestStack.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestStack.fs -------------------------------------------------------------------------------- /tests/Python/TestString.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestString.fs -------------------------------------------------------------------------------- /tests/Python/TestSudoku.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestSudoku.fs -------------------------------------------------------------------------------- /tests/Python/TestSystemIO.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestSystemIO.fs -------------------------------------------------------------------------------- /tests/Python/TestTailCall.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestTailCall.fs -------------------------------------------------------------------------------- /tests/Python/TestTask.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestTask.fs -------------------------------------------------------------------------------- /tests/Python/TestTimeSpan.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestTimeSpan.fs -------------------------------------------------------------------------------- /tests/Python/TestTupleType.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestTupleType.fs -------------------------------------------------------------------------------- /tests/Python/TestType.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestType.fs -------------------------------------------------------------------------------- /tests/Python/TestUnionType.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestUnionType.fs -------------------------------------------------------------------------------- /tests/Python/TestUri.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/TestUri.fs -------------------------------------------------------------------------------- /tests/Python/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/Util.fs -------------------------------------------------------------------------------- /tests/Python/py/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the py directory a Python package 2 | -------------------------------------------------------------------------------- /tests/Python/py/more_native_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/py/more_native_code.py -------------------------------------------------------------------------------- /tests/Python/py/native_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/py/native_code.py -------------------------------------------------------------------------------- /tests/Python/py/nullness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Python/py/nullness.py -------------------------------------------------------------------------------- /tests/React/Counter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/Counter.fs -------------------------------------------------------------------------------- /tests/React/Fable.Tests.React.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/Fable.Tests.React.fsproj -------------------------------------------------------------------------------- /tests/React/SpreadSheet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/SpreadSheet.fs -------------------------------------------------------------------------------- /tests/React/__tests__/JSX_API.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/__tests__/JSX_API.fs -------------------------------------------------------------------------------- /tests/React/__tests__/React.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/__tests__/React.fs -------------------------------------------------------------------------------- /tests/React/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/babel.config.js -------------------------------------------------------------------------------- /tests/React/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/package-lock.json -------------------------------------------------------------------------------- /tests/React/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/React/package.json -------------------------------------------------------------------------------- /tests/Rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/Cargo.toml -------------------------------------------------------------------------------- /tests/Rust/Fable.Tests.Rust.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/Fable.Tests.Rust.fsproj -------------------------------------------------------------------------------- /tests/Rust/tests/common/Aether.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/common/Aether.fs -------------------------------------------------------------------------------- /tests/Rust/tests/common/Imports.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/common/Imports.fs -------------------------------------------------------------------------------- /tests/Rust/tests/common/Util.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/common/Util.fs -------------------------------------------------------------------------------- /tests/Rust/tests/common/Util2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/common/Util2.fs -------------------------------------------------------------------------------- /tests/Rust/tests/common/Util3.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/common/Util3.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/AnonRecordTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/AnonRecordTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ApplicativeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ApplicativeTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ArithmeticTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ArithmeticTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ArrayTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ArrayTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/AsyncTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/AsyncTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ByRefTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ByRefTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/CharTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/CharTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ClassTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ClassTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ClosureTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ClosureTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ComparisonTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ComparisonTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ControlFlowTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ControlFlowTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ConvertTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ConvertTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/CustomOperatorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/CustomOperatorTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/DateOnlyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/DateOnlyTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/DateTimeOffsetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/DateTimeOffsetTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/DateTimeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/DateTimeTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/DictionaryTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/DictionaryTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ElmishParserTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ElmishParserTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/EnumTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/EnumTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/EnumerableTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/EnumerableTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/EventTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/EventTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ExtInteropTests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ExtInteropTests.rs -------------------------------------------------------------------------------- /tests/Rust/tests/src/GuidTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/GuidTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/HashSetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/HashSetTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ImportTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ImportTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/InterfaceTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/InterfaceTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/InteropTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/InteropTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ListTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ListTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/MapTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/MapTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/MiscTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/MiscTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/MiscTests2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/MiscTests2.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/NBodyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/NBodyTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/NullnessTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/NullnessTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ObservableTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ObservableTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/OptionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/OptionTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/QueueTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/QueueTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/RecordTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/RecordTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ReflectionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ReflectionTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/RegexTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/RegexTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ResizeArrayTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ResizeArrayTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/ResultTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/ResultTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/SeqExpressionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/SeqExpressionTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/SeqTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/SeqTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/SetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/SetTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/StackTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/StackTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/StringTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/StringTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/SudokuTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/SudokuTest.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/TailCallTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/TailCallTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/TaskTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/TaskTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/TimeOnlyTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/TimeOnlyTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/TimeSpanTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/TimeSpanTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/TupleTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/TupleTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/TypeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/TypeTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/UnionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/UnionTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/UriTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/UriTests.fs -------------------------------------------------------------------------------- /tests/Rust/tests/src/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/Rust/tests/src/main.fs -------------------------------------------------------------------------------- /tests/TypeScript/Fable.Tests.TypeScript.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/TypeScript/Fable.Tests.TypeScript.fsproj -------------------------------------------------------------------------------- /tests/TypeScript/LiteTsInteropTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/TypeScript/LiteTsInteropTests.fs -------------------------------------------------------------------------------- /tests/TypeScript/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/TypeScript/Main.fs -------------------------------------------------------------------------------- /tests/TypeScript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests/TypeScript/tsconfig.json -------------------------------------------------------------------------------- /tests_external/Fable.Tests.External.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests_external/Fable.Tests.External.fsproj -------------------------------------------------------------------------------- /tests_external/Util3.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests_external/Util3.fs -------------------------------------------------------------------------------- /tests_external/Util4.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests_external/Util4.fs -------------------------------------------------------------------------------- /tests_external/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/tests_external/bar.js -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fable-compiler/Fable/HEAD/uv.lock --------------------------------------------------------------------------------