// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlTools.EditorServices.Protocol.MessageProtocol; namespace Microsoft.SqlTools.EditorServices.Protocol.LanguageServer { public enum SymbolKind { File = 1, Module = 2, Namespace = 3, Package = 4, Class = 5, Method = 6, Property = 7, Field = 8, Constructor = 9, Enum = 10, Interface = 11, Function = 12, Variable = 13, Constant = 14, String = 15, Number = 16, Boolean = 17, Array = 18, } public class SymbolInformation { public string Name { get; set; } public SymbolKind Kind { get; set; } public Location Location { get; set; } public string ContainerName { get; set;} } public class DocumentSymbolRequest { public static readonly RequestType Type = RequestType.Create("textDocument/documentSymbol"); } public class WorkspaceSymbolRequest { public static readonly RequestType Type = RequestType.Create("workspace/symbol"); } public class WorkspaceSymbolParams { public string Query { get; set;} } }