├── .gitattributes ├── .gitignore ├── .paket ├── Paket.Restore.targets ├── paket.exe ├── paket.exe.config └── paket.targets ├── .travis.yml ├── FSharp.Editing.sln ├── FSharp.Editing.userprefs ├── LICENSE.txt ├── README.md ├── RELEASE_NOTES.md ├── appveyor.yml ├── global.json ├── paket.dependencies ├── paket.lock ├── scripts ├── GenNetcore.fsx └── XLinq.fsx ├── src ├── FSharp.Editing.Client │ ├── Client.fs │ ├── FSharp.Editing.Client.fsproj │ ├── Scripts │ │ ├── Script.fsx │ │ ├── load-project-debug.fsx │ │ ├── load-project-release.fsx │ │ ├── load-references-debug.fsx │ │ └── load-references-release.fsx │ └── paket.references ├── FSharp.Editing.Core │ ├── AssemblyContentProvider.fs │ ├── CodeAnalysisExtensions.fs │ ├── CompilerLocationUtils.fs │ ├── Constants.fs │ ├── Extensions.fs │ ├── FSharp.Editing.Core.fsproj │ ├── IdentifierUtils.fs │ ├── Lexer.fs │ ├── Logging.fs │ ├── Pervasive.fs │ ├── ProjectFileInfo.fs │ ├── QuickParse.fs │ ├── Text.fs │ ├── TypedAstUtils.fs │ ├── UntypedAstUtils.fs │ ├── Utils.fs │ └── paket.references ├── FSharp.Editing.Messages │ ├── AssemblyInfo.fs │ ├── FSharp.Editing.Messages.fsproj │ ├── Messages.fs │ ├── Scripts │ │ ├── Script1.fsx │ │ ├── load-project-debug.fsx │ │ ├── load-project-release.fsx │ │ ├── load-references-debug.fsx │ │ └── load-references-release.fsx │ ├── Serialization.fs │ ├── Utils.fs │ └── paket.references ├── FSharp.Editing.ProjectInspector │ ├── FSharp.Editing.ProjectInspector.fsproj │ ├── ProfectFileInfo.fs │ ├── Program.fs │ └── paket.references ├── FSharp.Editing.Server │ ├── AssemblyInfo.fs │ ├── Context.fs │ ├── FSharp.Editing.Server.fsproj │ ├── Program.fs │ ├── ProjectSystem.fs │ ├── Service.fs │ ├── Utilites.fs │ └── paket.references ├── FSharp.Editing │ ├── AssemblyInfo.fs │ ├── CodeGeneration │ │ ├── CodeGeneration.fs │ │ ├── IndentedTextWriter.fs │ │ ├── InterfaceStubGenerator.fs │ │ ├── OpenDeclarationsGetter.fs │ │ ├── RecordStubGenerator.fs │ │ ├── SignatureGenerator.fs │ │ ├── UnionPatternMatchCaseGenerator.fs │ │ └── siggenv2.fs │ ├── Coloring │ │ ├── DepthParser.fs │ │ ├── DocumentHighlights.fs │ │ ├── HighlightUsageInFile.fs │ │ ├── OpenDeclarationsGetter.fs │ │ ├── PrintfSpecifiersUsageGetter.fs │ │ └── UnopenedNamespacesResolver.fs │ ├── Completion │ │ ├── FileSystemCompletion.fs │ │ └── SignatureHelp.fs │ ├── Documentation │ │ ├── XmlDocBuilder.fs │ │ ├── XmlDocCache.fs │ │ ├── XmlDocGenerator.fs │ │ └── XmlDocParser.fs │ ├── FSharp.Editing.fsproj │ ├── FsLanguageService.fsx │ ├── Navigation │ │ ├── GoToDeclaration.fs │ │ ├── GoToDefinition.fs │ │ ├── GoToImplementation.fs │ │ ├── GoToSignature.fs │ │ ├── NavigableItemCache.fs │ │ ├── NavigableItemsCollector.fs │ │ ├── NavigateToIndex.fs │ │ ├── NavigateToItem.fs │ │ ├── NavigateToMetadata.fs │ │ └── NavigateToReferenceSource.fs │ ├── ProjectSystem │ │ ├── FSharpWorkspace.fs │ │ ├── FileSystem.fs │ │ ├── FileSystemWatcher.fs │ │ ├── HostServices.fs │ │ ├── LanguageService.fs │ │ ├── MSBuildEvaluation.fs │ │ ├── OpenDocumentsTracker.fs │ │ ├── ProjectConfig.fs │ │ ├── ProjectSitesAndFiles.fs │ │ ├── SolutionFileInfo.fs │ │ └── SolutionProvider.fs │ ├── Scratchpad.fsx │ ├── Scripts │ │ ├── load-project-debug.fsx │ │ ├── load-project-release.fsx │ │ ├── load-references-debug.fsx │ │ └── load-references-release.fsx │ ├── Structure │ │ └── BlockStructure.fs │ ├── Symbols │ │ ├── QuickInfoProvider.fs │ │ ├── SourceCodeClassifier.fs │ │ └── SymbolHelpers.fs │ └── paket.references ├── TestConsole │ ├── AssemblyInfo.fs │ ├── Program.fs │ ├── TestConsole.fsproj │ └── paket.references └── netcore │ ├── FSharp.Editing.Client │ └── paket.references │ ├── FSharp.Editing.Core │ └── paket.references │ ├── FSharp.Editing.Messages │ └── paket.references │ ├── FSharp.Editing.ProjectInspector │ └── paket.references │ ├── FSharp.Editing.Server │ └── paket.references │ ├── FSharp.Editing.netcore.sln │ ├── FSharp.Editing │ └── paket.references │ └── TestConsole │ └── paket.references └── tests ├── FSharp.Editing.Tests ├── CodeGenerationTestInfrastructure.fs ├── DepthColorizerTests.fs ├── FSharp.Editing.Tests.fsproj ├── GetUsesOfSymbolInFileTests.fs ├── GoToDefinitionTests.LoadDirective.fs ├── GoToDefinitionTests.fs ├── IdentifierDetectionTests.fs ├── InterfaceStubGeneratorTests.fs ├── LanguageServiceTests.fs ├── LexerTests.fs ├── NavigableItemsCollectorTests.fs ├── NavigateToIndexTests.fs ├── OpenDeclarationsGetterTests.fs ├── OutliningTests.fs ├── PrintfSpecifiersUsageGetterTests.fs ├── RecordStubGeneratorTests.fs ├── RenameTests.fs ├── SymbolClassifierTests.fs ├── TestHelpers.fs ├── UnionPatternMatchCaseGeneratorTests.fs ├── UnopenedNamespacesResolverTests.fs ├── UnusedSymbolClassifierTests.fs ├── UtilsTests.fs ├── XmlDocTests.fs └── paket.references └── data ├── DepthColorizerSampleFile.fs ├── FSharpSignature ├── FSharpSignature.fsproj ├── Program.fs ├── Sample.fs ├── Sample.fsi └── paket.references ├── InterfaceSampleFile.fs ├── LanguageServiceSampleFile.fs ├── MultiProjects ├── MultiProjects.sln ├── Project1.dll.mdb ├── Project1 │ ├── Project1.fsproj │ ├── Project11.fs │ └── paket.references ├── Project2.dll.mdb └── Project2 │ ├── Project2.fsproj │ ├── Project21.fs │ └── paket.references ├── NavigateToSource ├── FAKETests.fs ├── NavigateToSource.fsproj ├── NavigateToSource.sln ├── OctokitTests.fs └── paket.references ├── ParseLoadDirectives ├── includes │ ├── a.fs │ └── b.fs └── test1.fsx ├── TypeProviderTests ├── DesignTimeURIs │ └── 0CdPVqScGxbsHluW0KvuHpKSPow%3D.txt ├── FreebaseSchema │ └── 0CdPVqScGxbsHluW0KvuHpKSPow%3D.txt ├── TypeProviderTests.fs ├── TypeProviderTests.fsproj ├── TypeProviderTests.sln ├── WorldBankSchema │ └── 0CdPVqScGxbsHluW0KvuHpKSPow%3D.txt └── paket.references ├── XmlDocSampleFile.fs └── gotodef ├── generic-cases ├── adds-necessary-parenthesis-to-function-parameters │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── adds-necessary-parenthesis-to-tuple-parameters │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-3 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-4 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-5 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-6 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-7 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-8 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-abstract-class-definition-with-default-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-class-definition-with-events │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-constructor-less-struct-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-empty-class-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-empty-interface-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-empty-struct-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-enum-type-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-f#-exception-definition-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-f#-exception-definition-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-f#-list-'t-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-interface-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-metadata-from-module-and-module-function-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-metadata-from-module-and-module-function-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-non-abstract-class-definition-with-virtual-member │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-partial-active-patterns │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-property-definition-generate-enclosing-type-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-record-type-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-struct-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-subclass-class-definition-with-override-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-total-active-patterns-should-display-enclosing-module-or-namespace │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-total-active-patterns │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-tuple-definition-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-tuple-definition-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-type-abbreviation-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-type-definition-that-contains-c#-events │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-union-case │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-union-type-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-class-extension-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-class-properties-with-setter │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-delegates-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-delegates-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-double-backtick-identifiers-on-member-constraints-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-double-backtick-identifiers-on-member-constraints-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-methods │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-module-functions-and-values-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-module-functions-and-values-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-3 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-4 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-5 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-nested-modules │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-optional-parameters │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-property-method-attributes │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-record-extension-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-record-field-attributes │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-3 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-4 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-union-case-attributes │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-union-type-extension-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── members-are-sorted-this-way-abstract-member-member-static-member │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── operator-names-are-demangled │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── set-up-transitive-open-declarations-correctly │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── support-compiled-name-attribute │ ├── expected.fs │ ├── input.fs │ └── settings.json └── type-abbreviations-for-basic-types │ ├── expected.fs │ ├── input.fs │ └── settings.json └── generic-sample └── settings.list.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /.paket/paket.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/.paket/paket.exe -------------------------------------------------------------------------------- /.paket/paket.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/.paket/paket.exe.config -------------------------------------------------------------------------------- /.paket/paket.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/.paket/paket.targets -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/.travis.yml -------------------------------------------------------------------------------- /FSharp.Editing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/FSharp.Editing.sln -------------------------------------------------------------------------------- /FSharp.Editing.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/FSharp.Editing.userprefs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- 1 | #### 0.0.1 - 16.10.2016 2 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/appveyor.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/global.json -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/paket.lock -------------------------------------------------------------------------------- /scripts/GenNetcore.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/scripts/GenNetcore.fsx -------------------------------------------------------------------------------- /scripts/XLinq.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/scripts/XLinq.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/Client.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/Client.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/FSharp.Editing.Client.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/FSharp.Editing.Client.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/Scripts/Script.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/Scripts/Script.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/Scripts/load-project-debug.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/Scripts/load-project-debug.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/Scripts/load-project-release.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/Scripts/load-project-release.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/Scripts/load-references-debug.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/Scripts/load-references-debug.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/Scripts/load-references-release.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/Scripts/load-references-release.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Client/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Client/paket.references -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/AssemblyContentProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/AssemblyContentProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/CodeAnalysisExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/CodeAnalysisExtensions.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/CompilerLocationUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/CompilerLocationUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/Constants.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/Constants.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/Extensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/Extensions.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/FSharp.Editing.Core.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/FSharp.Editing.Core.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/IdentifierUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/IdentifierUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/Lexer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/Lexer.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/Logging.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/Logging.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/Pervasive.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/Pervasive.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/ProjectFileInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/ProjectFileInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/QuickParse.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/QuickParse.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/Text.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/Text.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/TypedAstUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/TypedAstUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/UntypedAstUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/UntypedAstUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/Utils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/Utils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Core/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Core/paket.references -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/FSharp.Editing.Messages.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/FSharp.Editing.Messages.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Messages.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Messages.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Scripts/Script1.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Scripts/Script1.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Scripts/load-project-debug.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Scripts/load-project-debug.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Scripts/load-project-release.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Scripts/load-project-release.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Scripts/load-references-debug.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Scripts/load-references-debug.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Scripts/load-references-release.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Scripts/load-references-release.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Serialization.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Serialization.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/Utils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Messages/Utils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Messages/paket.references: -------------------------------------------------------------------------------- 1 | Newtonsoft.Json 2 | FSharp.Core -------------------------------------------------------------------------------- /src/FSharp.Editing.ProjectInspector/FSharp.Editing.ProjectInspector.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.ProjectInspector/FSharp.Editing.ProjectInspector.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing.ProjectInspector/ProfectFileInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.ProjectInspector/ProfectFileInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.ProjectInspector/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.ProjectInspector/Program.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.ProjectInspector/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.ProjectInspector/paket.references -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/Context.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/Context.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/FSharp.Editing.Server.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/FSharp.Editing.Server.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/Program.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/ProjectSystem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/ProjectSystem.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/Service.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/Service.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/Utilites.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/Utilites.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.Server/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing.Server/paket.references -------------------------------------------------------------------------------- /src/FSharp.Editing/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/CodeGeneration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/CodeGeneration.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/IndentedTextWriter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/IndentedTextWriter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/InterfaceStubGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/InterfaceStubGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/OpenDeclarationsGetter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/OpenDeclarationsGetter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/RecordStubGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/RecordStubGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/SignatureGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/SignatureGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/UnionPatternMatchCaseGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/UnionPatternMatchCaseGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/siggenv2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/CodeGeneration/siggenv2.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/DepthParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Coloring/DepthParser.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/DocumentHighlights.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Coloring/DocumentHighlights.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/HighlightUsageInFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Coloring/HighlightUsageInFile.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/OpenDeclarationsGetter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Coloring/OpenDeclarationsGetter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/PrintfSpecifiersUsageGetter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Coloring/PrintfSpecifiersUsageGetter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/UnopenedNamespacesResolver.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Coloring/UnopenedNamespacesResolver.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Completion/FileSystemCompletion.fs: -------------------------------------------------------------------------------- 1 | module FileSystemCompletion 2 | 3 | -------------------------------------------------------------------------------- /src/FSharp.Editing/Completion/SignatureHelp.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Completion/SignatureHelp.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Documentation/XmlDocBuilder.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Documentation/XmlDocBuilder.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Documentation/XmlDocCache.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Documentation/XmlDocCache.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Documentation/XmlDocGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Documentation/XmlDocGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Documentation/XmlDocParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Documentation/XmlDocParser.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/FSharp.Editing.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/FSharp.Editing.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing/FsLanguageService.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/FsLanguageService.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/GoToDeclaration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/GoToDeclaration.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/GoToDefinition.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/GoToDefinition.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/GoToImplementation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/GoToImplementation.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/GoToSignature.fs: -------------------------------------------------------------------------------- 1 | module FSharp.Editing.Navigation.GoToSignature 2 | 3 | -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigableItemCache.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/NavigableItemCache.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigableItemsCollector.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/NavigableItemsCollector.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigateToIndex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/NavigateToIndex.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigateToItem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/NavigateToItem.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigateToMetadata.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/NavigateToMetadata.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigateToReferenceSource.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Navigation/NavigateToReferenceSource.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/FSharpWorkspace.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/FSharpWorkspace.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/FileSystem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/FileSystem.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/FileSystemWatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/FileSystemWatcher.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/HostServices.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/HostServices.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/LanguageService.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/LanguageService.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/MSBuildEvaluation.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/MSBuildEvaluation.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/OpenDocumentsTracker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/OpenDocumentsTracker.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/ProjectConfig.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/ProjectConfig.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/ProjectSitesAndFiles.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/ProjectSitesAndFiles.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/SolutionFileInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/SolutionFileInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/SolutionProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/ProjectSystem/SolutionProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Scratchpad.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Scratchpad.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing/Scripts/load-project-debug.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Scripts/load-project-debug.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing/Scripts/load-project-release.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Scripts/load-project-release.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing/Scripts/load-references-debug.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Scripts/load-references-debug.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing/Scripts/load-references-release.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Scripts/load-references-release.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing/Structure/BlockStructure.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Structure/BlockStructure.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Symbols/QuickInfoProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Symbols/QuickInfoProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Symbols/SourceCodeClassifier.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Symbols/SourceCodeClassifier.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Symbols/SymbolHelpers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/Symbols/SymbolHelpers.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/FSharp.Editing/paket.references -------------------------------------------------------------------------------- /src/TestConsole/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/TestConsole/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/TestConsole/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/TestConsole/Program.fs -------------------------------------------------------------------------------- /src/TestConsole/TestConsole.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/TestConsole/TestConsole.fsproj -------------------------------------------------------------------------------- /src/TestConsole/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/TestConsole/paket.references -------------------------------------------------------------------------------- /src/netcore/FSharp.Editing.Client/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/FSharp.Editing.Client/paket.references -------------------------------------------------------------------------------- /src/netcore/FSharp.Editing.Core/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/FSharp.Editing.Core/paket.references -------------------------------------------------------------------------------- /src/netcore/FSharp.Editing.Messages/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/FSharp.Editing.Messages/paket.references -------------------------------------------------------------------------------- /src/netcore/FSharp.Editing.ProjectInspector/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/FSharp.Editing.ProjectInspector/paket.references -------------------------------------------------------------------------------- /src/netcore/FSharp.Editing.Server/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/FSharp.Editing.Server/paket.references -------------------------------------------------------------------------------- /src/netcore/FSharp.Editing.netcore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/FSharp.Editing.netcore.sln -------------------------------------------------------------------------------- /src/netcore/FSharp.Editing/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/FSharp.Editing/paket.references -------------------------------------------------------------------------------- /src/netcore/TestConsole/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/src/netcore/TestConsole/paket.references -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/CodeGenerationTestInfrastructure.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/CodeGenerationTestInfrastructure.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/DepthColorizerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/DepthColorizerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/FSharp.Editing.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/FSharp.Editing.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/GetUsesOfSymbolInFileTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/GetUsesOfSymbolInFileTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/GoToDefinitionTests.LoadDirective.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/GoToDefinitionTests.LoadDirective.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/GoToDefinitionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/GoToDefinitionTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/IdentifierDetectionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/IdentifierDetectionTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/InterfaceStubGeneratorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/InterfaceStubGeneratorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/LanguageServiceTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/LanguageServiceTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/LexerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/LexerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/NavigableItemsCollectorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/NavigableItemsCollectorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/NavigateToIndexTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/NavigateToIndexTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/OpenDeclarationsGetterTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/OpenDeclarationsGetterTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/OutliningTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/OutliningTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/PrintfSpecifiersUsageGetterTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/PrintfSpecifiersUsageGetterTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/RecordStubGeneratorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/RecordStubGeneratorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/RenameTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/RenameTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/SymbolClassifierTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/SymbolClassifierTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/TestHelpers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/TestHelpers.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UnionPatternMatchCaseGeneratorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/UnionPatternMatchCaseGeneratorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UnopenedNamespacesResolverTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/UnopenedNamespacesResolverTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UnusedSymbolClassifierTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/UnusedSymbolClassifierTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UtilsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/UtilsTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/XmlDocTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/XmlDocTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/FSharp.Editing.Tests/paket.references -------------------------------------------------------------------------------- /tests/data/DepthColorizerSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/DepthColorizerSampleFile.fs -------------------------------------------------------------------------------- /tests/data/FSharpSignature/FSharpSignature.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/FSharpSignature/FSharpSignature.fsproj -------------------------------------------------------------------------------- /tests/data/FSharpSignature/Program.fs: -------------------------------------------------------------------------------- 1 | module Program 2 | 3 | [] 4 | let main argv = 5 | Sample.func 10 -------------------------------------------------------------------------------- /tests/data/FSharpSignature/Sample.fs: -------------------------------------------------------------------------------- 1 | module Sample 2 | 3 | let func (x: int) = x + 1 -------------------------------------------------------------------------------- /tests/data/FSharpSignature/Sample.fsi: -------------------------------------------------------------------------------- 1 | 2 | module Sample 3 | 4 | val func : int -> int -------------------------------------------------------------------------------- /tests/data/FSharpSignature/paket.references: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/InterfaceSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/InterfaceSampleFile.fs -------------------------------------------------------------------------------- /tests/data/LanguageServiceSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/LanguageServiceSampleFile.fs -------------------------------------------------------------------------------- /tests/data/MultiProjects/MultiProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/MultiProjects/MultiProjects.sln -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project1.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/MultiProjects/Project1.dll.mdb -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project1/Project1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/MultiProjects/Project1/Project1.fsproj -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project1/Project11.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/MultiProjects/Project1/Project11.fs -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project1/paket.references: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project2.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/MultiProjects/Project2.dll.mdb -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project2/Project2.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/MultiProjects/Project2/Project2.fsproj -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project2/Project21.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/MultiProjects/Project2/Project21.fs -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project2/paket.references: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/NavigateToSource/FAKETests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/NavigateToSource/FAKETests.fs -------------------------------------------------------------------------------- /tests/data/NavigateToSource/NavigateToSource.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/NavigateToSource/NavigateToSource.fsproj -------------------------------------------------------------------------------- /tests/data/NavigateToSource/NavigateToSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/NavigateToSource/NavigateToSource.sln -------------------------------------------------------------------------------- /tests/data/NavigateToSource/OctokitTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/NavigateToSource/OctokitTests.fs -------------------------------------------------------------------------------- /tests/data/NavigateToSource/paket.references: -------------------------------------------------------------------------------- 1 | group Build 2 | Octokit 3 | FAKE -------------------------------------------------------------------------------- /tests/data/ParseLoadDirectives/includes/a.fs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ParseLoadDirectives/includes/b.fs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ParseLoadDirectives/test1.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/ParseLoadDirectives/test1.fsx -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/DesignTimeURIs/0CdPVqScGxbsHluW0KvuHpKSPow%3D.txt: -------------------------------------------------------------------------------- 1 | empty -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/FreebaseSchema/0CdPVqScGxbsHluW0KvuHpKSPow%3D.txt: -------------------------------------------------------------------------------- 1 | empty -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/TypeProviderTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/TypeProviderTests/TypeProviderTests.fs -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/TypeProviderTests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/TypeProviderTests/TypeProviderTests.fsproj -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/TypeProviderTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/TypeProviderTests/TypeProviderTests.sln -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/WorldBankSchema/0CdPVqScGxbsHluW0KvuHpKSPow%3D.txt: -------------------------------------------------------------------------------- 1 | empty -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/paket.references: -------------------------------------------------------------------------------- 1 | 2 | FSharp.Data -------------------------------------------------------------------------------- /tests/data/XmlDocSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/XmlDocSampleFile.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | let _ = Async.AwaitTask -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/expected.fs: -------------------------------------------------------------------------------- 1 | module File 2 | 3 | type ``My abbrev`` = int 4 | -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/input.fs: -------------------------------------------------------------------------------- 1 | type ``My abbrev`` = int -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-class-definition-with-events/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-class-definition-with-events/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-class-definition-with-events/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-class-definition-with-events/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-class-definition-with-events/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-class-definition-with-events/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/input.fs: -------------------------------------------------------------------------------- 1 | let x: System.Boolean = false -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-class-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-class-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-class-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-class-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-class-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-class-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-enum-type-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-enum-type-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-enum-type-definition/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-enum-type-definition/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-enum-type-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-enum-type-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | let x: List = [] -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-interface-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-interface-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-interface-definition/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-interface-definition/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-interface-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-interface-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/input.fs: -------------------------------------------------------------------------------- 1 | 2 | 3 | let f x = Option.map(x) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/input.fs: -------------------------------------------------------------------------------- 1 | 2 | 3 | let f x = Option.map(x) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | do Console.WriteLine("xxx") -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-partial-active-patterns/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-partial-active-patterns/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-partial-active-patterns/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-partial-active-patterns/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-partial-active-patterns/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-partial-active-patterns/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-record-type-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-record-type-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-record-type-definition/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-record-type-definition/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-record-type-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-record-type-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-struct-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-struct-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-struct-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-struct-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-struct-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-struct-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-1/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | let x = Tuple(1, 2) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-2/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | let x = Tuple(1, 2) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/input.fs: -------------------------------------------------------------------------------- 1 | 2 | let x: string = null -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/input.fs: -------------------------------------------------------------------------------- 1 | open System.ComponentModel 2 | 3 | let f (x: INotifyPropertyChanged) = failwith "" -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-case/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-union-case/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-case/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | let x = Choice1Of2 () -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-case/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-union-case/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-type-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-union-type-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-type-definition/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | let x: Choice<'T, 'U> = failwith "Not implemented yet" -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-type-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/go-to-union-type-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-extension-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-class-extension-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-extension-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-class-extension-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-extension-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-class-extension-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-properties-with-setter/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-class-properties-with-setter/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-properties-with-setter/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-class-properties-with-setter/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-properties-with-setter/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-class-properties-with-setter/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-delegates-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-delegates-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-delegates-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-delegates-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-delegates-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-delegates-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-nested-modules/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-nested-modules/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-nested-modules/input.fs: -------------------------------------------------------------------------------- 1 | 2 | let x = Array.map 3 | -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-nested-modules/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-nested-modules/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-optional-parameters/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-optional-parameters/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-optional-parameters/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-optional-parameters/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-optional-parameters/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-optional-parameters/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-property-method-attributes/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-property-method-attributes/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-property-method-attributes/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-property-method-attributes/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-property-method-attributes/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-property-method-attributes/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-extension-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-record-extension-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-extension-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-record-extension-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-extension-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-record-extension-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-field-attributes/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-record-field-attributes/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-field-attributes/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-record-field-attributes/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-field-attributes/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-record-field-attributes/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-case-attributes/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-union-case-attributes/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-case-attributes/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-union-case-attributes/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-case-attributes/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-union-case-attributes/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-type-extension-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-union-type-extension-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-type-extension-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-union-type-extension-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-type-extension-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/handle-union-type-extension-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/operator-names-are-demangled/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/operator-names-are-demangled/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/operator-names-are-demangled/input.fs: -------------------------------------------------------------------------------- 1 | let inline func x = x + x -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/operator-names-are-demangled/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/operator-names-are-demangled/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/support-compiled-name-attribute/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/support-compiled-name-attribute/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/support-compiled-name-attribute/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | [] 3 | type C() = class end -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/support-compiled-name-attribute/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/support-compiled-name-attribute/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/input.fs: -------------------------------------------------------------------------------- 1 | let x: ResizeArray<'T> = failwith "" -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-sample/settings.list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp-editing/FSharp.Editing/HEAD/tests/data/gotodef/generic-sample/settings.list.json --------------------------------------------------------------------------------