├── .config └── dotnet-tools.json ├── .gitattributes ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .paket └── Paket.Restore.targets ├── FSharpApiSearch.sln ├── LICENSE.txt ├── README.md ├── RELEASE_NOTES.md ├── paket.dependencies ├── paket.lock ├── src ├── FSharpApiSearch.Console │ ├── App.config │ ├── Args.fs │ ├── AssemblyInfo.fs │ ├── CommandLine.fs │ ├── FSharpApiSearch.Console.fsproj │ ├── Program.fs │ ├── paket.references │ └── paket.template ├── FSharpApiSearch.Database │ ├── App.config │ ├── AssemblyInfo.fs │ ├── FSharpApiSearch.Database.fsproj │ ├── Program.fs │ └── paket.references └── FSharpApiSearch │ ├── AssemblyInfo.fs │ ├── Attributes.fs │ ├── Database │ ├── ApiLoader.fs │ ├── AssemblyLoader.fs │ ├── CompilerOptimization.fs │ ├── ComputationExpressionLoader.fs │ ├── Database.fs │ └── Hack.fs │ ├── Engine │ ├── ContextInitializer.fs │ ├── Engine.fs │ ├── EngineDebug.fs │ ├── EngineStrategy.fs │ ├── EngineTypes.fs │ ├── Matchers │ │ ├── ActivePatternMatcher.fs │ │ ├── CSharpFilter.fs │ │ ├── ComputationExpressionMatcher.fs │ │ ├── ConstraintSolver.fs │ │ ├── LowTypeMatcher.fs │ │ ├── NameMatcher.fs │ │ ├── NameOrSignatureMatcher.fs │ │ ├── NonPublicFilter.fs │ │ ├── SignatureMatcher.fs │ │ ├── TypeHierarchy.fs │ │ └── TypeNameEquality.fs │ └── QueryInitializer.fs │ ├── FSharpApiSearch.fsproj │ ├── FSharpApiSearchClient.fs │ ├── Misc.fs │ ├── Print │ ├── CSharpFormat.fs │ ├── FSharpFormat.fs │ ├── HtmlPrintHelper.fs │ ├── PrintTypes.fs │ ├── Printer.fs │ ├── QueryPrinter.fs │ └── StringPrinter.fs │ ├── QueryParser.fs │ ├── Types.fs │ ├── paket.references │ ├── paket.template │ └── prim-types-members.fsx └── tests ├── CSharpLoadTestAssembly ├── ByRef.cs ├── CSharpLoadTestAssembly.csproj ├── Class.cs ├── Delegate.cs ├── ExtensionMember.cs ├── Interface.cs ├── NestedClass.cs ├── Operators.cs ├── OptinalParameters.cs ├── ParamArray.cs ├── Properties │ └── AssemblyInfo.cs ├── Tuples.cs ├── TypeConstraints.cs └── paket.references ├── FSharpApiSearch.Tests ├── ApiLoaderTest.fs ├── ComputationExpressionMatcherTest.fs ├── DatabaseTest.fs ├── EngineTest.fs ├── FSharpApiSearch.Tests.fsproj ├── FSharpApiSearchClientTest.fs ├── FSharpCompilerServiceTest.fs ├── HtmlPrintHelperTest.fs ├── PrinterTest.fs ├── Program.fs ├── QueryParserTest.fs ├── QueryPrinterTest.fs ├── TestAssemblies.fs ├── TestHelper.fs ├── TypesTest.fs └── paket.references ├── FSharpApiSearch.Trace ├── App.config ├── AssemblyInfo.fs ├── FSharpApiSearch.Trace.fsproj ├── Program.fs └── paket.references ├── LoadTestAssembly ├── AccessPath.fs ├── AssemblyInfo.fs ├── Class.fs ├── CompiledNames.fs ├── ComputationExpression.fs ├── Delegate.fs ├── FSharp41.fs ├── FullTypeDefinition.fs ├── InternalModule.fs ├── InternalSignature.fs ├── InternalSignature.fsi ├── LoadTestAssembly.fsproj ├── Operators.fs ├── OptionalParameters.fs ├── OtherTypes.fs ├── ParamArray.fs ├── PrivateModule.fs ├── PublicModule.fs ├── TypeAbbreviations.fs ├── TypeConstraints.fs ├── TypeExtensions.fs ├── XmlDoc.fs └── paket.references ├── PerformanceTest ├── App.config ├── AssemblyInfo.fs ├── PerformanceTest.fsproj ├── Program.fs └── paket.references ├── Profiling ├── App.config ├── AssemblyInfo.fs ├── Profiling.fsproj ├── Program.fs └── paket.references ├── ProfilingLinkGenerator ├── App.config ├── AssemblyInfo.fs ├── ProfilingLinkGenerator.fsproj ├── Program.fs └── paket.references ├── SearchTestAssembly ├── AssemblyInfo.fs ├── SearchTestAssembly.fsproj ├── TestModule.fs └── paket.references ├── TestApiBrowserLink.fsx ├── TestFParsecLink.fsx ├── TestFSharpLinkExistence.fsx └── TestModuleFSharp.fsx /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /FSharpApiSearch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/FSharpApiSearch.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/paket.lock -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/App.config -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/Args.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/Args.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/CommandLine.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/CommandLine.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/FSharpApiSearch.Console.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/FSharpApiSearch.Console.fsproj -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/Program.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/paket.references -------------------------------------------------------------------------------- /src/FSharpApiSearch.Console/paket.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Console/paket.template -------------------------------------------------------------------------------- /src/FSharpApiSearch.Database/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Database/App.config -------------------------------------------------------------------------------- /src/FSharpApiSearch.Database/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Database/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch.Database/FSharpApiSearch.Database.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Database/FSharpApiSearch.Database.fsproj -------------------------------------------------------------------------------- /src/FSharpApiSearch.Database/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Database/Program.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch.Database/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch.Database/paket.references -------------------------------------------------------------------------------- /src/FSharpApiSearch/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Attributes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Attributes.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Database/ApiLoader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Database/ApiLoader.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Database/AssemblyLoader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Database/AssemblyLoader.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Database/CompilerOptimization.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Database/CompilerOptimization.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Database/ComputationExpressionLoader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Database/ComputationExpressionLoader.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Database/Database.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Database/Database.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Database/Hack.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Database/Hack.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/ContextInitializer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/ContextInitializer.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Engine.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Engine.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/EngineDebug.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/EngineDebug.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/EngineStrategy.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/EngineStrategy.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/EngineTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/EngineTypes.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/ActivePatternMatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/ActivePatternMatcher.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/CSharpFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/CSharpFilter.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/ComputationExpressionMatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/ComputationExpressionMatcher.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/ConstraintSolver.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/ConstraintSolver.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/LowTypeMatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/LowTypeMatcher.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/NameMatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/NameMatcher.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/NameOrSignatureMatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/NameOrSignatureMatcher.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/NonPublicFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/NonPublicFilter.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/SignatureMatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/SignatureMatcher.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/TypeHierarchy.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/TypeHierarchy.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/Matchers/TypeNameEquality.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/Matchers/TypeNameEquality.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Engine/QueryInitializer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Engine/QueryInitializer.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/FSharpApiSearch.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/FSharpApiSearch.fsproj -------------------------------------------------------------------------------- /src/FSharpApiSearch/FSharpApiSearchClient.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/FSharpApiSearchClient.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Misc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Misc.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Print/CSharpFormat.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Print/CSharpFormat.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Print/FSharpFormat.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Print/FSharpFormat.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Print/HtmlPrintHelper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Print/HtmlPrintHelper.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Print/PrintTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Print/PrintTypes.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Print/Printer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Print/Printer.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Print/QueryPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Print/QueryPrinter.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Print/StringPrinter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Print/StringPrinter.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/QueryParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/QueryParser.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/Types.fs -------------------------------------------------------------------------------- /src/FSharpApiSearch/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/paket.references -------------------------------------------------------------------------------- /src/FSharpApiSearch/paket.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/paket.template -------------------------------------------------------------------------------- /src/FSharpApiSearch/prim-types-members.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/src/FSharpApiSearch/prim-types-members.fsx -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/ByRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/ByRef.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/CSharpLoadTestAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/CSharpLoadTestAssembly.csproj -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/Class.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/Delegate.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/ExtensionMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/ExtensionMember.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/Interface.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/NestedClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/NestedClass.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/Operators.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/OptinalParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/OptinalParameters.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/ParamArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/ParamArray.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/Tuples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/Tuples.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/TypeConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/CSharpLoadTestAssembly/TypeConstraints.cs -------------------------------------------------------------------------------- /tests/CSharpLoadTestAssembly/paket.references: -------------------------------------------------------------------------------- 1 | group App 2 | System.ValueTuple 3 | FSharp.Core 4 | -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/ApiLoaderTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/ApiLoaderTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/ComputationExpressionMatcherTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/ComputationExpressionMatcherTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/DatabaseTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/DatabaseTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/EngineTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/EngineTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/FSharpApiSearch.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/FSharpApiSearch.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/FSharpApiSearchClientTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/FSharpApiSearchClientTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/FSharpCompilerServiceTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/FSharpCompilerServiceTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/HtmlPrintHelperTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/HtmlPrintHelperTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/PrinterTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/PrinterTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/Program.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/QueryParserTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/QueryParserTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/QueryPrinterTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/QueryPrinterTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/TestAssemblies.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/TestAssemblies.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/TestHelper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/TestHelper.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/TypesTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/TypesTest.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Tests/paket.references -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Trace/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Trace/App.config -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Trace/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Trace/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Trace/FSharpApiSearch.Trace.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Trace/FSharpApiSearch.Trace.fsproj -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Trace/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Trace/Program.fs -------------------------------------------------------------------------------- /tests/FSharpApiSearch.Trace/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/FSharpApiSearch.Trace/paket.references -------------------------------------------------------------------------------- /tests/LoadTestAssembly/AccessPath.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/AccessPath.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/Class.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/Class.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/CompiledNames.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/CompiledNames.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/ComputationExpression.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/ComputationExpression.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/Delegate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/Delegate.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/FSharp41.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/FSharp41.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/FullTypeDefinition.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/FullTypeDefinition.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/InternalModule.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/InternalModule.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/InternalSignature.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/InternalSignature.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/InternalSignature.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/InternalSignature.fsi -------------------------------------------------------------------------------- /tests/LoadTestAssembly/LoadTestAssembly.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/LoadTestAssembly.fsproj -------------------------------------------------------------------------------- /tests/LoadTestAssembly/Operators.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/Operators.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/OptionalParameters.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/OptionalParameters.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/OtherTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/OtherTypes.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/ParamArray.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/ParamArray.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/PrivateModule.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/PrivateModule.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/PublicModule.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/PublicModule.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/TypeAbbreviations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/TypeAbbreviations.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/TypeConstraints.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/TypeConstraints.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/TypeExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/TypeExtensions.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/XmlDoc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/LoadTestAssembly/XmlDoc.fs -------------------------------------------------------------------------------- /tests/LoadTestAssembly/paket.references: -------------------------------------------------------------------------------- 1 | group App 2 | FSharp.Core 3 | System.ValueTuple -------------------------------------------------------------------------------- /tests/PerformanceTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/PerformanceTest/App.config -------------------------------------------------------------------------------- /tests/PerformanceTest/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/PerformanceTest/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/PerformanceTest/PerformanceTest.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/PerformanceTest/PerformanceTest.fsproj -------------------------------------------------------------------------------- /tests/PerformanceTest/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/PerformanceTest/Program.fs -------------------------------------------------------------------------------- /tests/PerformanceTest/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/PerformanceTest/paket.references -------------------------------------------------------------------------------- /tests/Profiling/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/Profiling/App.config -------------------------------------------------------------------------------- /tests/Profiling/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/Profiling/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/Profiling/Profiling.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/Profiling/Profiling.fsproj -------------------------------------------------------------------------------- /tests/Profiling/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/Profiling/Program.fs -------------------------------------------------------------------------------- /tests/Profiling/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/Profiling/paket.references -------------------------------------------------------------------------------- /tests/ProfilingLinkGenerator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/ProfilingLinkGenerator/App.config -------------------------------------------------------------------------------- /tests/ProfilingLinkGenerator/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/ProfilingLinkGenerator/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/ProfilingLinkGenerator/ProfilingLinkGenerator.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/ProfilingLinkGenerator/ProfilingLinkGenerator.fsproj -------------------------------------------------------------------------------- /tests/ProfilingLinkGenerator/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/ProfilingLinkGenerator/Program.fs -------------------------------------------------------------------------------- /tests/ProfilingLinkGenerator/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/ProfilingLinkGenerator/paket.references -------------------------------------------------------------------------------- /tests/SearchTestAssembly/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/SearchTestAssembly/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/SearchTestAssembly/SearchTestAssembly.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/SearchTestAssembly/SearchTestAssembly.fsproj -------------------------------------------------------------------------------- /tests/SearchTestAssembly/TestModule.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/SearchTestAssembly/TestModule.fs -------------------------------------------------------------------------------- /tests/SearchTestAssembly/paket.references: -------------------------------------------------------------------------------- 1 | group App 2 | FSharp.Core -------------------------------------------------------------------------------- /tests/TestApiBrowserLink.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/TestApiBrowserLink.fsx -------------------------------------------------------------------------------- /tests/TestFParsecLink.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/TestFParsecLink.fsx -------------------------------------------------------------------------------- /tests/TestFSharpLinkExistence.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/TestFSharpLinkExistence.fsx -------------------------------------------------------------------------------- /tests/TestModuleFSharp.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafuu/FSharpApiSearch/HEAD/tests/TestModuleFSharp.fsx --------------------------------------------------------------------------------