72 lines
2.8 KiB
TypeScript
72 lines
2.8 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export class Kind {
|
|
public static readonly alias = 'alias'
|
|
public static readonly callSignature = 'call'
|
|
public static readonly class = 'class'
|
|
public static readonly const = 'const'
|
|
public static readonly constructorImplementation = 'constructor'
|
|
public static readonly constructSignature = 'construct'
|
|
public static readonly directory = 'directory'
|
|
public static readonly enum = 'enum'
|
|
public static readonly externalModuleName = 'external module name'
|
|
public static readonly function = 'function'
|
|
public static readonly indexSignature = 'index'
|
|
public static readonly interface = 'interface'
|
|
public static readonly keyword = 'keyword'
|
|
public static readonly let = 'let'
|
|
public static readonly localFunction = 'local function'
|
|
public static readonly localVariable = 'local var'
|
|
public static readonly memberFunction = 'method'
|
|
public static readonly memberGetAccessor = 'getter'
|
|
public static readonly memberSetAccessor = 'setter'
|
|
public static readonly memberVariable = 'property'
|
|
public static readonly module = 'module'
|
|
public static readonly primitiveType = 'primitive type'
|
|
public static readonly script = 'script'
|
|
public static readonly type = 'type'
|
|
public static readonly variable = 'var'
|
|
public static readonly warning = 'warning'
|
|
public static readonly string = 'string'
|
|
public static readonly parameter = 'parameter'
|
|
}
|
|
|
|
|
|
export class DiagnosticCategory {
|
|
public static readonly error = 'error'
|
|
public static readonly warning = 'warning'
|
|
public static readonly suggestion = 'suggestion'
|
|
}
|
|
|
|
export class KindModifiers {
|
|
public static readonly optional = 'optional'
|
|
public static readonly color = 'color'
|
|
|
|
public static readonly dtsFile = '.d.ts'
|
|
public static readonly tsFile = '.ts'
|
|
public static readonly tsxFile = '.tsx'
|
|
public static readonly jsFile = '.js'
|
|
public static readonly jsxFile = '.jsx'
|
|
public static readonly jsonFile = '.json'
|
|
|
|
public static readonly fileExtensionKindModifiers = [
|
|
KindModifiers.dtsFile,
|
|
KindModifiers.tsFile,
|
|
KindModifiers.tsxFile,
|
|
KindModifiers.jsFile,
|
|
KindModifiers.jsxFile,
|
|
KindModifiers.jsonFile,
|
|
]
|
|
}
|
|
|
|
export class DisplayPartKind {
|
|
public static readonly functionName = 'functionName'
|
|
public static readonly methodName = 'methodName'
|
|
public static readonly parameterName = 'parameterName'
|
|
public static readonly propertyName = 'propertyName'
|
|
public static readonly punctuation = 'punctuation'
|
|
public static readonly text = 'text'
|
|
}
|