@zzzen/pyright-internal 1.1.254
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analyzer/aliasDeclarationUtils.d.ts +9 -0
- package/dist/analyzer/aliasDeclarationUtils.js +128 -0
- package/dist/analyzer/aliasDeclarationUtils.js.map +1 -0
- package/dist/analyzer/analysis.d.ts +18 -0
- package/dist/analyzer/analysis.js +81 -0
- package/dist/analyzer/analysis.js.map +1 -0
- package/dist/analyzer/analyzerFileInfo.d.ts +39 -0
- package/dist/analyzer/analyzerFileInfo.js +17 -0
- package/dist/analyzer/analyzerFileInfo.js.map +1 -0
- package/dist/analyzer/analyzerNodeInfo.d.ts +32 -0
- package/dist/analyzer/analyzerNodeInfo.js +138 -0
- package/dist/analyzer/analyzerNodeInfo.js.map +1 -0
- package/dist/analyzer/backgroundAnalysisProgram.d.ts +54 -0
- package/dist/analyzer/backgroundAnalysisProgram.js +222 -0
- package/dist/analyzer/backgroundAnalysisProgram.js.map +1 -0
- package/dist/analyzer/binder.d.ts +149 -0
- package/dist/analyzer/binder.js +3195 -0
- package/dist/analyzer/binder.js.map +1 -0
- package/dist/analyzer/checker.d.ts +116 -0
- package/dist/analyzer/checker.js +3828 -0
- package/dist/analyzer/checker.js.map +1 -0
- package/dist/analyzer/circularDependency.d.ts +7 -0
- package/dist/analyzer/circularDependency.js +51 -0
- package/dist/analyzer/circularDependency.js.map +1 -0
- package/dist/analyzer/codeFlowEngine.d.ts +21 -0
- package/dist/analyzer/codeFlowEngine.js +1132 -0
- package/dist/analyzer/codeFlowEngine.js.map +1 -0
- package/dist/analyzer/codeFlowTypes.d.ts +82 -0
- package/dist/analyzer/codeFlowTypes.js +134 -0
- package/dist/analyzer/codeFlowTypes.js.map +1 -0
- package/dist/analyzer/codeFlowUtils.d.ts +2 -0
- package/dist/analyzer/codeFlowUtils.js +348 -0
- package/dist/analyzer/codeFlowUtils.js.map +1 -0
- package/dist/analyzer/commentUtils.d.ts +4 -0
- package/dist/analyzer/commentUtils.js +131 -0
- package/dist/analyzer/commentUtils.js.map +1 -0
- package/dist/analyzer/constraintSolver.d.ts +7 -0
- package/dist/analyzer/constraintSolver.js +605 -0
- package/dist/analyzer/constraintSolver.js.map +1 -0
- package/dist/analyzer/constructorTransform.d.ts +4 -0
- package/dist/analyzer/constructorTransform.js +219 -0
- package/dist/analyzer/constructorTransform.js.map +1 -0
- package/dist/analyzer/dataClasses.d.ts +9 -0
- package/dist/analyzer/dataClasses.js +762 -0
- package/dist/analyzer/dataClasses.js.map +1 -0
- package/dist/analyzer/declaration.d.ts +90 -0
- package/dist/analyzer/declaration.js +42 -0
- package/dist/analyzer/declaration.js.map +1 -0
- package/dist/analyzer/declarationUtils.d.ts +12 -0
- package/dist/analyzer/declarationUtils.js +212 -0
- package/dist/analyzer/declarationUtils.js.map +1 -0
- package/dist/analyzer/docStringConversion.d.ts +2 -0
- package/dist/analyzer/docStringConversion.js +699 -0
- package/dist/analyzer/docStringConversion.js.map +1 -0
- package/dist/analyzer/docStringUtils.d.ts +3 -0
- package/dist/analyzer/docStringUtils.js +103 -0
- package/dist/analyzer/docStringUtils.js.map +1 -0
- package/dist/analyzer/functionTransform.d.ts +4 -0
- package/dist/analyzer/functionTransform.js +96 -0
- package/dist/analyzer/functionTransform.js.map +1 -0
- package/dist/analyzer/importResolver.d.ts +97 -0
- package/dist/analyzer/importResolver.js +1617 -0
- package/dist/analyzer/importResolver.js.map +1 -0
- package/dist/analyzer/importResult.d.ts +33 -0
- package/dist/analyzer/importResult.js +11 -0
- package/dist/analyzer/importResult.js.map +1 -0
- package/dist/analyzer/importStatementUtils.d.ts +46 -0
- package/dist/analyzer/importStatementUtils.js +618 -0
- package/dist/analyzer/importStatementUtils.js.map +1 -0
- package/dist/analyzer/namedTuples.d.ts +5 -0
- package/dist/analyzer/namedTuples.js +342 -0
- package/dist/analyzer/namedTuples.js.map +1 -0
- package/dist/analyzer/packageTypeReport.d.ts +52 -0
- package/dist/analyzer/packageTypeReport.js +45 -0
- package/dist/analyzer/packageTypeReport.js.map +1 -0
- package/dist/analyzer/packageTypeVerifier.d.ts +37 -0
- package/dist/analyzer/packageTypeVerifier.js +908 -0
- package/dist/analyzer/packageTypeVerifier.js.map +1 -0
- package/dist/analyzer/parentDirectoryCache.d.ts +23 -0
- package/dist/analyzer/parentDirectoryCache.js +71 -0
- package/dist/analyzer/parentDirectoryCache.js.map +1 -0
- package/dist/analyzer/parseTreeCleaner.d.ts +8 -0
- package/dist/analyzer/parseTreeCleaner.js +51 -0
- package/dist/analyzer/parseTreeCleaner.js.map +1 -0
- package/dist/analyzer/parseTreeUtils.d.ts +98 -0
- package/dist/analyzer/parseTreeUtils.js +1753 -0
- package/dist/analyzer/parseTreeUtils.js.map +1 -0
- package/dist/analyzer/parseTreeWalker.d.ts +81 -0
- package/dist/analyzer/parseTreeWalker.js +437 -0
- package/dist/analyzer/parseTreeWalker.js.map +1 -0
- package/dist/analyzer/patternMatching.d.ts +6 -0
- package/dist/analyzer/patternMatching.js +866 -0
- package/dist/analyzer/patternMatching.js.map +1 -0
- package/dist/analyzer/program.d.ts +158 -0
- package/dist/analyzer/program.js +1902 -0
- package/dist/analyzer/program.js.map +1 -0
- package/dist/analyzer/properties.d.ts +10 -0
- package/dist/analyzer/properties.js +368 -0
- package/dist/analyzer/properties.js.map +1 -0
- package/dist/analyzer/protocols.d.ts +8 -0
- package/dist/analyzer/protocols.js +409 -0
- package/dist/analyzer/protocols.js.map +1 -0
- package/dist/analyzer/pyTypedUtils.d.ts +6 -0
- package/dist/analyzer/pyTypedUtils.js +42 -0
- package/dist/analyzer/pyTypedUtils.js.map +1 -0
- package/dist/analyzer/pythonPathUtils.d.ts +14 -0
- package/dist/analyzer/pythonPathUtils.js +173 -0
- package/dist/analyzer/pythonPathUtils.js.map +1 -0
- package/dist/analyzer/scope.d.ts +39 -0
- package/dist/analyzer/scope.js +110 -0
- package/dist/analyzer/scope.js.map +1 -0
- package/dist/analyzer/scopeUtils.d.ts +6 -0
- package/dist/analyzer/scopeUtils.js +72 -0
- package/dist/analyzer/scopeUtils.js.map +1 -0
- package/dist/analyzer/service.d.ts +144 -0
- package/dist/analyzer/service.js +1197 -0
- package/dist/analyzer/service.js.map +1 -0
- package/dist/analyzer/sourceFile.d.ts +123 -0
- package/dist/analyzer/sourceFile.js +908 -0
- package/dist/analyzer/sourceFile.js.map +1 -0
- package/dist/analyzer/sourceMapper.d.ts +47 -0
- package/dist/analyzer/sourceMapper.js +543 -0
- package/dist/analyzer/sourceMapper.js.map +1 -0
- package/dist/analyzer/staticExpressions.d.ts +4 -0
- package/dist/analyzer/staticExpressions.js +242 -0
- package/dist/analyzer/staticExpressions.js.map +1 -0
- package/dist/analyzer/symbol.d.ts +50 -0
- package/dist/analyzer/symbol.js +160 -0
- package/dist/analyzer/symbol.js.map +1 -0
- package/dist/analyzer/symbolNameUtils.d.ts +8 -0
- package/dist/analyzer/symbolNameUtils.js +53 -0
- package/dist/analyzer/symbolNameUtils.js.map +1 -0
- package/dist/analyzer/symbolUtils.d.ts +7 -0
- package/dist/analyzer/symbolUtils.js +46 -0
- package/dist/analyzer/symbolUtils.js.map +1 -0
- package/dist/analyzer/testWalker.d.ts +14 -0
- package/dist/analyzer/testWalker.js +92 -0
- package/dist/analyzer/testWalker.js.map +1 -0
- package/dist/analyzer/tracePrinter.d.ts +11 -0
- package/dist/analyzer/tracePrinter.js +222 -0
- package/dist/analyzer/tracePrinter.js.map +1 -0
- package/dist/analyzer/typeCache.d.ts +40 -0
- package/dist/analyzer/typeCache.js +134 -0
- package/dist/analyzer/typeCache.js.map +1 -0
- package/dist/analyzer/typeDocStringUtils.d.ts +12 -0
- package/dist/analyzer/typeDocStringUtils.js +293 -0
- package/dist/analyzer/typeDocStringUtils.js.map +1 -0
- package/dist/analyzer/typeEvaluator.d.ts +18 -0
- package/dist/analyzer/typeEvaluator.js +16598 -0
- package/dist/analyzer/typeEvaluator.js.map +1 -0
- package/dist/analyzer/typeEvaluatorTypes.d.ts +220 -0
- package/dist/analyzer/typeEvaluatorTypes.js +16 -0
- package/dist/analyzer/typeEvaluatorTypes.js.map +1 -0
- package/dist/analyzer/typeEvaluatorWithTracker.d.ts +6 -0
- package/dist/analyzer/typeEvaluatorWithTracker.js +121 -0
- package/dist/analyzer/typeEvaluatorWithTracker.js.map +1 -0
- package/dist/analyzer/typeGuards.d.ts +6 -0
- package/dist/analyzer/typeGuards.js +1293 -0
- package/dist/analyzer/typeGuards.js.map +1 -0
- package/dist/analyzer/typePrinter.d.ts +17 -0
- package/dist/analyzer/typePrinter.js +603 -0
- package/dist/analyzer/typePrinter.js.map +1 -0
- package/dist/analyzer/typeStubWriter.d.ts +48 -0
- package/dist/analyzer/typeStubWriter.js +605 -0
- package/dist/analyzer/typeStubWriter.js.map +1 -0
- package/dist/analyzer/typeUtils.d.ts +134 -0
- package/dist/analyzer/typeUtils.js +2380 -0
- package/dist/analyzer/typeUtils.js.map +1 -0
- package/dist/analyzer/typeVarContext.d.ts +50 -0
- package/dist/analyzer/typeVarContext.js +250 -0
- package/dist/analyzer/typeVarContext.js.map +1 -0
- package/dist/analyzer/typedDicts.d.ts +12 -0
- package/dist/analyzer/typedDicts.js +695 -0
- package/dist/analyzer/typedDicts.js.map +1 -0
- package/dist/analyzer/types.d.ts +484 -0
- package/dist/analyzer/types.js +1844 -0
- package/dist/analyzer/types.js.map +1 -0
- package/dist/backgroundAnalysis.d.ts +14 -0
- package/dist/backgroundAnalysis.js +42 -0
- package/dist/backgroundAnalysis.js.map +1 -0
- package/dist/backgroundAnalysisBase.d.ts +83 -0
- package/dist/backgroundAnalysisBase.js +429 -0
- package/dist/backgroundAnalysisBase.js.map +1 -0
- package/dist/backgroundThreadBase.d.ts +34 -0
- package/dist/backgroundThreadBase.js +134 -0
- package/dist/backgroundThreadBase.js.map +1 -0
- package/dist/commands/commandController.d.ts +13 -0
- package/dist/commands/commandController.js +48 -0
- package/dist/commands/commandController.js.map +1 -0
- package/dist/commands/commandResult.d.ts +9 -0
- package/dist/commands/commandResult.js +19 -0
- package/dist/commands/commandResult.js.map +1 -0
- package/dist/commands/commands.d.ts +7 -0
- package/dist/commands/commands.js +11 -0
- package/dist/commands/commands.js.map +1 -0
- package/dist/commands/createTypeStub.d.ts +8 -0
- package/dist/commands/createTypeStub.js +50 -0
- package/dist/commands/createTypeStub.js.map +1 -0
- package/dist/commands/quickActionCommand.d.ts +8 -0
- package/dist/commands/quickActionCommand.js +31 -0
- package/dist/commands/quickActionCommand.js.map +1 -0
- package/dist/commands/restartServer.d.ts +8 -0
- package/dist/commands/restartServer.js +20 -0
- package/dist/commands/restartServer.js.map +1 -0
- package/dist/common/cancellationUtils.d.ts +16 -0
- package/dist/common/cancellationUtils.js +60 -0
- package/dist/common/cancellationUtils.js.map +1 -0
- package/dist/common/chokidarFileWatcherProvider.d.ts +9 -0
- package/dist/common/chokidarFileWatcherProvider.js +88 -0
- package/dist/common/chokidarFileWatcherProvider.js.map +1 -0
- package/dist/common/collectionUtils.d.ts +114 -0
- package/dist/common/collectionUtils.js +292 -0
- package/dist/common/collectionUtils.js.map +1 -0
- package/dist/common/commandLineOptions.d.ts +41 -0
- package/dist/common/commandLineOptions.js +46 -0
- package/dist/common/commandLineOptions.js.map +1 -0
- package/dist/common/configOptions.d.ts +144 -0
- package/dist/common/configOptions.js +908 -0
- package/dist/common/configOptions.js.map +1 -0
- package/dist/common/console.d.ts +61 -0
- package/dist/common/console.js +191 -0
- package/dist/common/console.js.map +1 -0
- package/dist/common/core.d.ts +67 -0
- package/dist/common/core.js +118 -0
- package/dist/common/core.js.map +1 -0
- package/dist/common/crypto.d.ts +1 -0
- package/dist/common/crypto.js +37 -0
- package/dist/common/crypto.js.map +1 -0
- package/dist/common/debug.d.ts +13 -0
- package/dist/common/debug.js +131 -0
- package/dist/common/debug.js.map +1 -0
- package/dist/common/deferred.d.ts +11 -0
- package/dist/common/deferred.js +62 -0
- package/dist/common/deferred.js.map +1 -0
- package/dist/common/diagnostic.d.ts +59 -0
- package/dist/common/diagnostic.js +134 -0
- package/dist/common/diagnostic.js.map +1 -0
- package/dist/common/diagnosticRules.d.ts +67 -0
- package/dist/common/diagnosticRules.js +83 -0
- package/dist/common/diagnosticRules.js.map +1 -0
- package/dist/common/diagnosticSink.d.ts +34 -0
- package/dist/common/diagnosticSink.js +110 -0
- package/dist/common/diagnosticSink.js.map +1 -0
- package/dist/common/editAction.d.ts +29 -0
- package/dist/common/editAction.js +11 -0
- package/dist/common/editAction.js.map +1 -0
- package/dist/common/extensibility.d.ts +11 -0
- package/dist/common/extensibility.js +10 -0
- package/dist/common/extensibility.js.map +1 -0
- package/dist/common/extensions.d.ts +3 -0
- package/dist/common/extensions.js +15 -0
- package/dist/common/extensions.js.map +1 -0
- package/dist/common/fileBasedCancellationUtils.d.ts +11 -0
- package/dist/common/fileBasedCancellationUtils.js +259 -0
- package/dist/common/fileBasedCancellationUtils.js.map +1 -0
- package/dist/common/fileSystem.d.ts +72 -0
- package/dist/common/fileSystem.js +69 -0
- package/dist/common/fileSystem.js.map +1 -0
- package/dist/common/fullAccessHost.d.ts +19 -0
- package/dist/common/fullAccessHost.js +193 -0
- package/dist/common/fullAccessHost.js.map +1 -0
- package/dist/common/host.d.ts +21 -0
- package/dist/common/host.js +30 -0
- package/dist/common/host.js.map +1 -0
- package/dist/common/logTracker.d.ts +15 -0
- package/dist/common/logTracker.js +129 -0
- package/dist/common/logTracker.js.map +1 -0
- package/dist/common/lspUtils.d.ts +3 -0
- package/dist/common/lspUtils.js +20 -0
- package/dist/common/lspUtils.js.map +1 -0
- package/dist/common/memUtils.d.ts +3 -0
- package/dist/common/memUtils.js +37 -0
- package/dist/common/memUtils.js.map +1 -0
- package/dist/common/pathConsts.d.ts +8 -0
- package/dist/common/pathConsts.js +19 -0
- package/dist/common/pathConsts.js.map +1 -0
- package/dist/common/pathUtils.d.ts +170 -0
- package/dist/common/pathUtils.js +762 -0
- package/dist/common/pathUtils.js.map +1 -0
- package/dist/common/positionUtils.d.ts +7 -0
- package/dist/common/positionUtils.js +71 -0
- package/dist/common/positionUtils.js.map +1 -0
- package/dist/common/progressReporter.d.ts +15 -0
- package/dist/common/progressReporter.js +44 -0
- package/dist/common/progressReporter.js.map +1 -0
- package/dist/common/pythonVersion.d.ts +20 -0
- package/dist/common/pythonVersion.js +71 -0
- package/dist/common/pythonVersion.js.map +1 -0
- package/dist/common/realFileSystem.d.ts +8 -0
- package/dist/common/realFileSystem.js +368 -0
- package/dist/common/realFileSystem.js.map +1 -0
- package/dist/common/stringUtils.d.ts +47 -0
- package/dist/common/stringUtils.js +160 -0
- package/dist/common/stringUtils.js.map +1 -0
- package/dist/common/textEditUtils.d.ts +3 -0
- package/dist/common/textEditUtils.js +29 -0
- package/dist/common/textEditUtils.js.map +1 -0
- package/dist/common/textRange.d.ts +47 -0
- package/dist/common/textRange.js +211 -0
- package/dist/common/textRange.js.map +1 -0
- package/dist/common/textRangeCollection.d.ts +13 -0
- package/dist/common/textRangeCollection.js +108 -0
- package/dist/common/textRangeCollection.js.map +1 -0
- package/dist/common/timing.d.ts +31 -0
- package/dist/common/timing.js +100 -0
- package/dist/common/timing.js.map +1 -0
- package/dist/common/uriParser.d.ts +12 -0
- package/dist/common/uriParser.js +25 -0
- package/dist/common/uriParser.js.map +1 -0
- package/dist/common/workspaceEditUtils.d.ts +7 -0
- package/dist/common/workspaceEditUtils.js +63 -0
- package/dist/common/workspaceEditUtils.js.map +1 -0
- package/dist/languageServerBase.d.ts +211 -0
- package/dist/languageServerBase.js +923 -0
- package/dist/languageServerBase.js.map +1 -0
- package/dist/languageService/analyzerServiceExecutor.d.ts +8 -0
- package/dist/languageService/analyzerServiceExecutor.js +97 -0
- package/dist/languageService/analyzerServiceExecutor.js.map +1 -0
- package/dist/languageService/autoImporter.d.ts +84 -0
- package/dist/languageService/autoImporter.js +635 -0
- package/dist/languageService/autoImporter.js.map +1 -0
- package/dist/languageService/callHierarchyProvider.d.ts +12 -0
- package/dist/languageService/callHierarchyProvider.js +368 -0
- package/dist/languageService/callHierarchyProvider.js.map +1 -0
- package/dist/languageService/codeActionProvider.d.ts +6 -0
- package/dist/languageService/codeActionProvider.js +53 -0
- package/dist/languageService/codeActionProvider.js.map +1 -0
- package/dist/languageService/completionProvider.d.ts +147 -0
- package/dist/languageService/completionProvider.js +2220 -0
- package/dist/languageService/completionProvider.js.map +1 -0
- package/dist/languageService/definitionProvider.d.ts +17 -0
- package/dist/languageService/definitionProvider.js +206 -0
- package/dist/languageService/definitionProvider.js.map +1 -0
- package/dist/languageService/documentHighlightProvider.d.ts +7 -0
- package/dist/languageService/documentHighlightProvider.js +63 -0
- package/dist/languageService/documentHighlightProvider.js.map +1 -0
- package/dist/languageService/documentSymbolCollector.d.ts +37 -0
- package/dist/languageService/documentSymbolCollector.js +344 -0
- package/dist/languageService/documentSymbolCollector.js.map +1 -0
- package/dist/languageService/documentSymbolProvider.d.ts +37 -0
- package/dist/languageService/documentSymbolProvider.js +308 -0
- package/dist/languageService/documentSymbolProvider.js.map +1 -0
- package/dist/languageService/hoverProvider.d.ts +25 -0
- package/dist/languageService/hoverProvider.js +366 -0
- package/dist/languageService/hoverProvider.js.map +1 -0
- package/dist/languageService/importAdder.d.ts +24 -0
- package/dist/languageService/importAdder.js +296 -0
- package/dist/languageService/importAdder.js.map +1 -0
- package/dist/languageService/importSorter.d.ts +15 -0
- package/dist/languageService/importSorter.js +152 -0
- package/dist/languageService/importSorter.js.map +1 -0
- package/dist/languageService/indentationUtils.d.ts +4 -0
- package/dist/languageService/indentationUtils.js +597 -0
- package/dist/languageService/indentationUtils.js.map +1 -0
- package/dist/languageService/quickActions.d.ts +4 -0
- package/dist/languageService/quickActions.js +97 -0
- package/dist/languageService/quickActions.js.map +1 -0
- package/dist/languageService/referencesProvider.d.ts +36 -0
- package/dist/languageService/referencesProvider.js +236 -0
- package/dist/languageService/referencesProvider.js.map +1 -0
- package/dist/languageService/renameModuleProvider.d.ts +58 -0
- package/dist/languageService/renameModuleProvider.js +884 -0
- package/dist/languageService/renameModuleProvider.js.map +1 -0
- package/dist/languageService/signatureHelpProvider.d.ts +26 -0
- package/dist/languageService/signatureHelpProvider.js +180 -0
- package/dist/languageService/signatureHelpProvider.js.map +1 -0
- package/dist/languageService/tooltipUtils.d.ts +9 -0
- package/dist/languageService/tooltipUtils.js +129 -0
- package/dist/languageService/tooltipUtils.js.map +1 -0
- package/dist/localization/localize.d.ts +1324 -0
- package/dist/localization/localize.js +788 -0
- package/dist/localization/localize.js.map +1 -0
- package/dist/localization/package.nls.de.json +1 -0
- package/dist/localization/package.nls.en-us.json +636 -0
- package/dist/localization/package.nls.es.json +1 -0
- package/dist/localization/package.nls.fr.json +1 -0
- package/dist/localization/package.nls.ja.json +1 -0
- package/dist/localization/package.nls.ru.json +1 -0
- package/dist/localization/package.nls.zh-cn.json +1 -0
- package/dist/localization/package.nls.zh-tw.json +1 -0
- package/dist/nodeMain.d.ts +1 -0
- package/dist/nodeMain.js +21 -0
- package/dist/nodeMain.js.map +1 -0
- package/dist/nodeServer.d.ts +3 -0
- package/dist/nodeServer.js +31 -0
- package/dist/nodeServer.js.map +1 -0
- package/dist/parser/characterStream.d.ts +27 -0
- package/dist/parser/characterStream.js +120 -0
- package/dist/parser/characterStream.js.map +1 -0
- package/dist/parser/characters.d.ts +17 -0
- package/dist/parser/characters.js +240 -0
- package/dist/parser/characters.js.map +1 -0
- package/dist/parser/parseNodes.d.ts +750 -0
- package/dist/parser/parseNodes.js +1406 -0
- package/dist/parser/parseNodes.js.map +1 -0
- package/dist/parser/parser.d.ts +191 -0
- package/dist/parser/parser.js +3806 -0
- package/dist/parser/parser.js.map +1 -0
- package/dist/parser/stringTokenUtils.d.ts +25 -0
- package/dist/parser/stringTokenUtils.js +455 -0
- package/dist/parser/stringTokenUtils.js.map +1 -0
- package/dist/parser/tokenizer.d.ts +71 -0
- package/dist/parser/tokenizer.js +1111 -0
- package/dist/parser/tokenizer.js.map +1 -0
- package/dist/parser/tokenizerTypes.d.ts +223 -0
- package/dist/parser/tokenizerTypes.js +164 -0
- package/dist/parser/tokenizerTypes.js.map +1 -0
- package/dist/parser/unicode.d.ts +23 -0
- package/dist/parser/unicode.js +2899 -0
- package/dist/parser/unicode.js.map +1 -0
- package/dist/pyright.d.ts +1 -0
- package/dist/pyright.js +645 -0
- package/dist/pyright.js.map +1 -0
- package/dist/pyrightFileSystem.d.ts +28 -0
- package/dist/pyrightFileSystem.js +196 -0
- package/dist/pyrightFileSystem.js.map +1 -0
- package/dist/readonlyAugmentedFileSystem.d.ts +40 -0
- package/dist/readonlyAugmentedFileSystem.js +155 -0
- package/dist/readonlyAugmentedFileSystem.js.map +1 -0
- package/dist/server.d.ts +21 -0
- package/dist/server.js +232 -0
- package/dist/server.js.map +1 -0
- package/dist/tests/chainedSourceFiles.test.d.ts +1 -0
- package/dist/tests/chainedSourceFiles.test.js +153 -0
- package/dist/tests/chainedSourceFiles.test.js.map +1 -0
- package/dist/tests/checker.test.d.ts +1 -0
- package/dist/tests/checker.test.js +346 -0
- package/dist/tests/checker.test.js.map +1 -0
- package/dist/tests/collectionUtils.test.d.ts +1 -0
- package/dist/tests/collectionUtils.test.js +153 -0
- package/dist/tests/collectionUtils.test.js.map +1 -0
- package/dist/tests/common.test.d.ts +1 -0
- package/dist/tests/common.test.js +125 -0
- package/dist/tests/common.test.js.map +1 -0
- package/dist/tests/config.test.d.ts +1 -0
- package/dist/tests/config.test.js +230 -0
- package/dist/tests/config.test.js.map +1 -0
- package/dist/tests/debug.test.d.ts +1 -0
- package/dist/tests/debug.test.js +102 -0
- package/dist/tests/debug.test.js.map +1 -0
- package/dist/tests/deferred.test.d.ts +1 -0
- package/dist/tests/deferred.test.js +65 -0
- package/dist/tests/deferred.test.js.map +1 -0
- package/dist/tests/diagnosticOverrides.test.d.ts +1 -0
- package/dist/tests/diagnosticOverrides.test.js +108 -0
- package/dist/tests/diagnosticOverrides.test.js.map +1 -0
- package/dist/tests/docStringConversion.test.d.ts +1 -0
- package/dist/tests/docStringConversion.test.js +695 -0
- package/dist/tests/docStringConversion.test.js.map +1 -0
- package/dist/tests/docStringUtils.test.d.ts +1 -0
- package/dist/tests/docStringUtils.test.js +70 -0
- package/dist/tests/docStringUtils.test.js.map +1 -0
- package/dist/tests/documentSymbolCollector.test.d.ts +1 -0
- package/dist/tests/documentSymbolCollector.test.js +635 -0
- package/dist/tests/documentSymbolCollector.test.js.map +1 -0
- package/dist/tests/filesystem.test.d.ts +1 -0
- package/dist/tests/filesystem.test.js +194 -0
- package/dist/tests/filesystem.test.js.map +1 -0
- package/dist/tests/fourSlashParser.test.d.ts +1 -0
- package/dist/tests/fourSlashParser.test.js +281 -0
- package/dist/tests/fourSlashParser.test.js.map +1 -0
- package/dist/tests/fourSlashRunner.test.d.ts +1 -0
- package/dist/tests/fourSlashRunner.test.js +52 -0
- package/dist/tests/fourSlashRunner.test.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.Found.Type.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.Found.Type.fourslash.js +30 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.Found.Type.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.Found.duplication.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.Found.duplication.fourslash.js +42 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.Found.duplication.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.NotFound.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.NotFound.fourslash.js +13 -0
- package/dist/tests/fourslash/completions.autoimport.Lib.NotFound.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.disabled.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.disabled.fourslash.js +23 -0
- package/dist/tests/fourslash/completions.autoimport.disabled.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.duplicates.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.duplicates.fourslash.js +35 -0
- package/dist/tests/fourslash/completions.autoimport.duplicates.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.fourslash.js +27 -0
- package/dist/tests/fourslash/completions.autoimport.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.fromImport.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.fromImport.fourslash.js +128 -0
- package/dist/tests/fourslash/completions.autoimport.fromImport.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.plainText.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.plainText.fourslash.js +27 -0
- package/dist/tests/fourslash/completions.autoimport.plainText.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.shadow.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.shadow.fourslash.js +43 -0
- package/dist/tests/fourslash/completions.autoimport.shadow.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.submodule.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.submodule.fourslash.js +29 -0
- package/dist/tests/fourslash/completions.autoimport.submodule.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.autoimport.topLevel.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.autoimport.topLevel.fourslash.js +50 -0
- package/dist/tests/fourslash/completions.autoimport.topLevel.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.builtinDocstrings.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.builtinDocstrings.fourslash.js +116 -0
- package/dist/tests/fourslash/completions.builtinDocstrings.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.builtinOverride.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.builtinOverride.fourslash.js +21 -0
- package/dist/tests/fourslash/completions.builtinOverride.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.call.stringLiteral.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.call.stringLiteral.fourslash.js +54 -0
- package/dist/tests/fourslash/completions.call.stringLiteral.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.call.typedDict.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.call.typedDict.fourslash.js +245 -0
- package/dist/tests/fourslash/completions.call.typedDict.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.call.typedDict.list.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.call.typedDict.list.fourslash.js +162 -0
- package/dist/tests/fourslash/completions.call.typedDict.list.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.call.typedDict.states.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.call.typedDict.states.fourslash.js +132 -0
- package/dist/tests/fourslash/completions.call.typedDict.states.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.classVariable.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.classVariable.fourslash.js +37 -0
- package/dist/tests/fourslash/completions.classVariable.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.comment.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.comment.fourslash.js +27 -0
- package/dist/tests/fourslash/completions.comment.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.class.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.class.fourslash.js +30 -0
- package/dist/tests/fourslash/completions.declNames.class.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.exception.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.exception.fourslash.js +18 -0
- package/dist/tests/fourslash/completions.declNames.exception.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.for.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.for.fourslash.js +26 -0
- package/dist/tests/fourslash/completions.declNames.for.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.importAlias.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.importAlias.fourslash.js +15 -0
- package/dist/tests/fourslash/completions.declNames.importAlias.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.lambda.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.lambda.fourslash.js +36 -0
- package/dist/tests/fourslash/completions.declNames.lambda.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.method.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.method.fourslash.js +68 -0
- package/dist/tests/fourslash/completions.declNames.method.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.overload.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.overload.fourslash.js +147 -0
- package/dist/tests/fourslash/completions.declNames.overload.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.declNames.topLevelOverload.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.declNames.topLevelOverload.fourslash.js +131 -0
- package/dist/tests/fourslash/completions.declNames.topLevelOverload.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.complex.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.complex.fourslash.js +73 -0
- package/dist/tests/fourslash/completions.dictionary.keys.complex.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.expression.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.expression.fourslash.js +58 -0
- package/dist/tests/fourslash/completions.dictionary.keys.expression.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.literalTypes.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.literalTypes.fourslash.js +154 -0
- package/dist/tests/fourslash/completions.dictionary.keys.literalTypes.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.simple.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.simple.fourslash.js +143 -0
- package/dist/tests/fourslash/completions.dictionary.keys.simple.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.stringLiterals.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.stringLiterals.fourslash.js +109 -0
- package/dist/tests/fourslash/completions.dictionary.keys.stringLiterals.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.symbols.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.dictionary.keys.symbols.fourslash.js +50 -0
- package/dist/tests/fourslash/completions.dictionary.keys.symbols.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.enums.members.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.enums.members.fourslash.js +44 -0
- package/dist/tests/fourslash/completions.enums.members.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.excluded.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.excluded.fourslash.js +12 -0
- package/dist/tests/fourslash/completions.excluded.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.fourslash.js +51 -0
- package/dist/tests/fourslash/completions.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.fstring.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.fstring.fourslash.js +32 -0
- package/dist/tests/fourslash/completions.fstring.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.fstring.stringLiteral.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.fstring.stringLiteral.fourslash.js +96 -0
- package/dist/tests/fourslash/completions.fstring.stringLiteral.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.fuzzyMatching.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.fuzzyMatching.fourslash.js +30 -0
- package/dist/tests/fourslash/completions.fuzzyMatching.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.importDunderNames.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.importDunderNames.fourslash.js +29 -0
- package/dist/tests/fourslash/completions.importDunderNames.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.importSubmodule.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.importSubmodule.fourslash.js +22 -0
- package/dist/tests/fourslash/completions.importSubmodule.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.importsDuplicates.fourslash.d.ts +0 -0
- package/dist/tests/fourslash/completions.importsDuplicates.fourslash.js +22 -0
- package/dist/tests/fourslash/completions.importsDuplicates.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.inList.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.inList.fourslash.js +32 -0
- package/dist/tests/fourslash/completions.inList.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.included.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.included.fourslash.js +12 -0
- package/dist/tests/fourslash/completions.included.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.indexer.keys.getitem.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.indexer.keys.getitem.fourslash.js +54 -0
- package/dist/tests/fourslash/completions.indexer.keys.getitem.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.inherited.function.docFromStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.inherited.function.docFromStub.fourslash.js +26 -0
- package/dist/tests/fourslash/completions.inherited.function.docFromStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.inherited.overload.docFromScrWithStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.inherited.overload.docFromScrWithStub.fourslash.js +49 -0
- package/dist/tests/fourslash/completions.inherited.overload.docFromScrWithStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.inherited.overload.docFromStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.inherited.overload.docFromStub.fourslash.js +50 -0
- package/dist/tests/fourslash/completions.inherited.overload.docFromStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.inherited.property.docFromSrc.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.inherited.property.docFromSrc.fourslash.js +101 -0
- package/dist/tests/fourslash/completions.inherited.property.docFromSrc.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.inherited.property.docFromStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.inherited.property.docFromStub.fourslash.js +105 -0
- package/dist/tests/fourslash/completions.inherited.property.docFromStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.keywords.pythonVersion.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.keywords.pythonVersion.fourslash.js +67 -0
- package/dist/tests/fourslash/completions.keywords.pythonVersion.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.libCodeAndStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.libCodeAndStub.fourslash.js +75 -0
- package/dist/tests/fourslash/completions.libCodeAndStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.libCodeNoStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.libCodeNoStub.fourslash.js +66 -0
- package/dist/tests/fourslash/completions.libCodeNoStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.libStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.libStub.fourslash.js +66 -0
- package/dist/tests/fourslash/completions.libStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.literals.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.literals.fourslash.js +31 -0
- package/dist/tests/fourslash/completions.literals.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.localCode.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.localCode.fourslash.js +71 -0
- package/dist/tests/fourslash/completions.localCode.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.moduleContext.UnknownMemberOnInstance.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.moduleContext.UnknownMemberOnInstance.fourslash.js +17 -0
- package/dist/tests/fourslash/completions.moduleContext.UnknownMemberOnInstance.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.moduleContext.UnknownStaticFunctionOnClass.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.moduleContext.UnknownStaticFunctionOnClass.fourslash.js +57 -0
- package/dist/tests/fourslash/completions.moduleContext.UnknownStaticFunctionOnClass.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.moduleContext.libCodeNoStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.moduleContext.libCodeNoStub.fourslash.js +27 -0
- package/dist/tests/fourslash/completions.moduleContext.libCodeNoStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.overloads.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.overloads.fourslash.js +37 -0
- package/dist/tests/fourslash/completions.overloads.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.default.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.default.fourslash.js +47 -0
- package/dist/tests/fourslash/completions.override.default.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.default.importStub.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.default.importStub.js +49 -0
- package/dist/tests/fourslash/completions.override.default.importStub.js.map +1 -0
- package/dist/tests/fourslash/completions.override.default.imported.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.default.imported.fourslash.js +60 -0
- package/dist/tests/fourslash/completions.override.default.imported.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.default.stub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.default.stub.fourslash.js +47 -0
- package/dist/tests/fourslash/completions.override.default.stub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.fourslash.js +47 -0
- package/dist/tests/fourslash/completions.override.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.property.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.property.fourslash.js +31 -0
- package/dist/tests/fourslash/completions.override.property.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.property.stub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.property.stub.fourslash.js +31 -0
- package/dist/tests/fourslash/completions.override.property.stub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.staticAndClassmethod.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.staticAndClassmethod.fourslash.js +63 -0
- package/dist/tests/fourslash/completions.override.staticAndClassmethod.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override.stub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override.stub.fourslash.js +47 -0
- package/dist/tests/fourslash/completions.override.stub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.override2.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.override2.fourslash.js +66 -0
- package/dist/tests/fourslash/completions.override2.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.parameters.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.parameters.fourslash.js +22 -0
- package/dist/tests/fourslash/completions.parameters.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.params.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.params.fourslash.js +23 -0
- package/dist/tests/fourslash/completions.params.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.parentFolder.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.parentFolder.fourslash.js +15 -0
- package/dist/tests/fourslash/completions.parentFolder.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.parentFolders.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.parentFolders.fourslash.js +68 -0
- package/dist/tests/fourslash/completions.parentFolders.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.plainText.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.plainText.fourslash.js +34 -0
- package/dist/tests/fourslash/completions.plainText.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.private.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.private.fourslash.js +61 -0
- package/dist/tests/fourslash/completions.private.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.property.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.property.fourslash.js +28 -0
- package/dist/tests/fourslash/completions.property.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.propertyDocStrings.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.propertyDocStrings.fourslash.js +64 -0
- package/dist/tests/fourslash/completions.propertyDocStrings.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.self.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.self.fourslash.js +43 -0
- package/dist/tests/fourslash/completions.self.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.stringLiteral.escape.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.stringLiteral.escape.fourslash.js +71 -0
- package/dist/tests/fourslash/completions.stringLiteral.escape.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.stringLiteral.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.stringLiteral.fourslash.js +78 -0
- package/dist/tests/fourslash/completions.stringLiteral.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.typeAlias.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.typeAlias.fourslash.js +29 -0
- package/dist/tests/fourslash/completions.typeAlias.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.typeshed.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.typeshed.fourslash.js +9 -0
- package/dist/tests/fourslash/completions.typeshed.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.vardecls.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.vardecls.fourslash.js +33 -0
- package/dist/tests/fourslash/completions.vardecls.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.variableDocStrings.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.variableDocStrings.fourslash.js +68 -0
- package/dist/tests/fourslash/completions.variableDocStrings.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.wildcardimports.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.wildcardimports.fourslash.js +109 -0
- package/dist/tests/fourslash/completions.wildcardimports.fourslash.js.map +1 -0
- package/dist/tests/fourslash/completions.with.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/completions.with.fourslash.js +25 -0
- package/dist/tests/fourslash/completions.with.fourslash.js.map +1 -0
- package/dist/tests/fourslash/diagnostics.missingModuleSource.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/diagnostics.missingModuleSource.fourslash.js +64 -0
- package/dist/tests/fourslash/diagnostics.missingModuleSource.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.builtinClass.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.builtinClass.fourslash.js +24 -0
- package/dist/tests/fourslash/findDefinitions.builtinClass.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.classes.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.classes.fourslash.js +93 -0
- package/dist/tests/fourslash/findDefinitions.classes.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferSource.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferSource.fourslash.js +23 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferSource.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferSource.onlyStubs.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferSource.onlyStubs.js +19 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferSource.onlyStubs.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferStub.fourslash.js +23 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferStub.onlySource.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferStub.onlySource.fourslash.js +20 -0
- package/dist/tests/fourslash/findDefinitions.definitionFilter.preferStub.onlySource.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.fields.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.fields.fourslash.js +123 -0
- package/dist/tests/fourslash/findDefinitions.fields.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.functions.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.functions.fourslash.js +79 -0
- package/dist/tests/fourslash/findDefinitions.functions.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.methods.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.methods.fourslash.js +154 -0
- package/dist/tests/fourslash/findDefinitions.methods.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.modules.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.modules.fourslash.js +42 -0
- package/dist/tests/fourslash/findDefinitions.modules.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.namespaceImport.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.namespaceImport.fourslash.js +34 -0
- package/dist/tests/fourslash/findDefinitions.namespaceImport.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.overloads.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.overloads.fourslash.js +213 -0
- package/dist/tests/fourslash/findDefinitions.overloads.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.parameters.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.parameters.fourslash.js +154 -0
- package/dist/tests/fourslash/findDefinitions.parameters.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.function.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.function.fourslash.js +23 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.function.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.innerClass.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.innerClass.fourslash.js +29 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.innerClass.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.innerClassMethod.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.innerClassMethod.fourslash.js +30 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.innerClassMethod.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClass.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClass.fourslash.js +25 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClass.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassMethod.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassMethod.fourslash.js +26 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassMethod.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassPropertyReadOnly.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassPropertyReadOnly.fourslash.js +28 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassPropertyReadOnly.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassPropertyReadWrite.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassPropertyReadWrite.fourslash.js +33 -0
- package/dist/tests/fourslash/findDefinitions.sourceAndStub.outerClassPropertyReadWrite.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.class.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.class.fourslash.js +26 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.class.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.function1.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.function1.fourslash.js +25 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.function1.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.function2.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.function2.fourslash.js +25 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.function2.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.relativeImport1.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.relativeImport1.fourslash.js +20 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.relativeImport1.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.relativeImport2.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.relativeImport2.fourslash.js +20 -0
- package/dist/tests/fourslash/findDefinitions.sourceOnly.relativeImport2.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.stubOnly.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.stubOnly.fourslash.js +59 -0
- package/dist/tests/fourslash/findDefinitions.stubOnly.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.stubPackages.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.stubPackages.fourslash.js +59 -0
- package/dist/tests/fourslash/findDefinitions.stubPackages.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.typedDict.keys.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.typedDict.keys.fourslash.js +94 -0
- package/dist/tests/fourslash/findDefinitions.typedDict.keys.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.variables.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.variables.fourslash.js +79 -0
- package/dist/tests/fourslash/findDefinitions.variables.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findDefinitions.wildcardimports.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findDefinitions.wildcardimports.fourslash.js +106 -0
- package/dist/tests/fourslash/findDefinitions.wildcardimports.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findTypeDefinitions.builtinClass.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findTypeDefinitions.builtinClass.fourslash.js +24 -0
- package/dist/tests/fourslash/findTypeDefinitions.builtinClass.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findTypeDefinitions.classes.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findTypeDefinitions.classes.fourslash.js +66 -0
- package/dist/tests/fourslash/findTypeDefinitions.classes.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findTypeDefinitions.unions.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findTypeDefinitions.unions.fourslash.js +26 -0
- package/dist/tests/fourslash/findTypeDefinitions.unions.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.classPropertyReadWrite.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.classPropertyReadWrite.js +36 -0
- package/dist/tests/fourslash/findallreferences.classPropertyReadWrite.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.fourslash.js +30 -0
- package/dist/tests/fourslash/findallreferences.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.importalias.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.importalias.fourslash.js +30 -0
- package/dist/tests/fourslash/findallreferences.importalias.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.invokedFromLibrary.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.invokedFromLibrary.fourslash.js +46 -0
- package/dist/tests/fourslash/findallreferences.invokedFromLibrary.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.module.nested.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.module.nested.fourslash.js +60 -0
- package/dist/tests/fourslash/findallreferences.module.nested.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.modules.duplicated.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.modules.duplicated.fourslash.js +54 -0
- package/dist/tests/fourslash/findallreferences.modules.duplicated.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.modules.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.modules.fourslash.js +41 -0
- package/dist/tests/fourslash/findallreferences.modules.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.modules.shadow.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.modules.shadow.fourslash.js +83 -0
- package/dist/tests/fourslash/findallreferences.modules.shadow.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.openFiles.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.openFiles.fourslash.js +32 -0
- package/dist/tests/fourslash/findallreferences.openFiles.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.parameter.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.parameter.fourslash.js +22 -0
- package/dist/tests/fourslash/findallreferences.parameter.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.class.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.class.fourslash.js +29 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.class.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classMethod.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classMethod.fourslash.js +33 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classMethod.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classPropertyReadOnly.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classPropertyReadOnly.fourslash.js +36 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classPropertyReadOnly.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classPropertyReadWrite.fourslash.skip.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classPropertyReadWrite.fourslash.skip.js +44 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.classPropertyReadWrite.fourslash.skip.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.function.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.function.fourslash.js +31 -0
- package/dist/tests/fourslash/findallreferences.sourceAndStub.function.fourslash.js.map +1 -0
- package/dist/tests/fourslash/findallreferences.variable.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/findallreferences.variable.fourslash.js +22 -0
- package/dist/tests/fourslash/findallreferences.variable.fourslash.js.map +1 -0
- package/dist/tests/fourslash/fourslash.d.ts +301 -0
- package/dist/tests/fourslash/fourslash.js +25 -0
- package/dist/tests/fourslash/fourslash.js.map +1 -0
- package/dist/tests/fourslash/highlightreferences.attributes.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/highlightreferences.attributes.fourslash.js +30 -0
- package/dist/tests/fourslash/highlightreferences.attributes.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.builtinDocstrings.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.builtinDocstrings.fourslash.js +63 -0
- package/dist/tests/fourslash/hover.builtinDocstrings.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.classNoInit.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.classNoInit.fourslash.js +14 -0
- package/dist/tests/fourslash/hover.classNoInit.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromScr.stringFormat.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromScr.stringFormat.fourslash.js +47 -0
- package/dist/tests/fourslash/hover.docFromScr.stringFormat.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.fourslash.js +77 -0
- package/dist/tests/fourslash/hover.docFromSrc.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.pkg-vs-module1.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.pkg-vs-module1.fourslash.js +22 -0
- package/dist/tests/fourslash/hover.docFromSrc.pkg-vs-module1.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.pkg-vs-module2.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.pkg-vs-module2.fourslash.js +22 -0
- package/dist/tests/fourslash/hover.docFromSrc.pkg-vs-module2.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport1.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport1.fourslash.js +21 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport1.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport2.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport2.fourslash.js +20 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport2.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport3.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport3.fourslash.js +38 -0
- package/dist/tests/fourslash/hover.docFromSrc.relativeImport3.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.stubs-package.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.stubs-package.fourslash.js +25 -0
- package/dist/tests/fourslash/hover.docFromSrc.stubs-package.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.typeshed.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docFromSrc.typeshed.fourslash.js +18 -0
- package/dist/tests/fourslash/hover.docFromSrc.typeshed.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docstring.links.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docstring.links.fourslash.js +12 -0
- package/dist/tests/fourslash/hover.docstring.links.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docstring.overloads.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docstring.overloads.fourslash.js +38 -0
- package/dist/tests/fourslash/hover.docstring.overloads.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.docstring.split.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.docstring.split.fourslash.js +24 -0
- package/dist/tests/fourslash/hover.docstring.split.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.fourslash.js +20 -0
- package/dist/tests/fourslash/hover.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.import.django.view.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.import.django.view.fourslash.js +23 -0
- package/dist/tests/fourslash/hover.import.django.view.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.import.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.import.fourslash.js +10 -0
- package/dist/tests/fourslash/hover.import.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.inherited.docFromSrc.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.inherited.docFromSrc.fourslash.js +61 -0
- package/dist/tests/fourslash/hover.inherited.docFromSrc.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.inherited.docFromSrcWithStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.inherited.docFromSrcWithStub.fourslash.js +51 -0
- package/dist/tests/fourslash/hover.inherited.docFromSrcWithStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.inherited.docFromStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.inherited.docFromStub.fourslash.js +40 -0
- package/dist/tests/fourslash/hover.inherited.docFromStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.inherited.overload.docFromSrcWithStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.inherited.overload.docFromSrcWithStub.fourslash.js +43 -0
- package/dist/tests/fourslash/hover.inherited.overload.docFromSrcWithStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.inherited.overload.docFromStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.inherited.overload.docFromStub.fourslash.js +44 -0
- package/dist/tests/fourslash/hover.inherited.overload.docFromStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.inherited.property.docFromSrcWithStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.inherited.property.docFromSrcWithStub.fourslash.js +84 -0
- package/dist/tests/fourslash/hover.inherited.property.docFromSrcWithStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.inherited.property.docFromStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.inherited.property.docFromStub.fourslash.js +88 -0
- package/dist/tests/fourslash/hover.inherited.property.docFromStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.init.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.init.fourslash.js +38 -0
- package/dist/tests/fourslash/hover.init.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.libCodeAndStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.libCodeAndStub.fourslash.js +49 -0
- package/dist/tests/fourslash/hover.libCodeAndStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.libCodeNoStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.libCodeNoStub.fourslash.js +39 -0
- package/dist/tests/fourslash/hover.libCodeNoStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.libStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.libStub.fourslash.js +39 -0
- package/dist/tests/fourslash/hover.libStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.optionalAliasParameter.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.optionalAliasParameter.fourslash.js +14 -0
- package/dist/tests/fourslash/hover.optionalAliasParameter.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.plainText.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.plainText.fourslash.js +20 -0
- package/dist/tests/fourslash/hover.plainText.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.typedDict.key.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.typedDict.key.fourslash.js +50 -0
- package/dist/tests/fourslash/hover.typedDict.key.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.variable.docString.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.variable.docString.fourslash.js +35 -0
- package/dist/tests/fourslash/hover.variable.docString.fourslash.js.map +1 -0
- package/dist/tests/fourslash/hover.wildcardimports.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/hover.wildcardimports.fourslash.js +73 -0
- package/dist/tests/fourslash/hover.wildcardimports.fourslash.js.map +1 -0
- package/dist/tests/fourslash/import.publicSymbols.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/import.publicSymbols.fourslash.js +63 -0
- package/dist/tests/fourslash/import.publicSymbols.fourslash.js.map +1 -0
- package/dist/tests/fourslash/import.pytyped.dunderAll.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/import.pytyped.dunderAll.fourslash.js +72 -0
- package/dist/tests/fourslash/import.pytyped.dunderAll.fourslash.js.map +1 -0
- package/dist/tests/fourslash/import.pytyped.privateSymbols.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/import.pytyped.privateSymbols.fourslash.js +61 -0
- package/dist/tests/fourslash/import.pytyped.privateSymbols.fourslash.js.map +1 -0
- package/dist/tests/fourslash/import.pytyped.typeCheckingBasic.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/import.pytyped.typeCheckingBasic.fourslash.js +35 -0
- package/dist/tests/fourslash/import.pytyped.typeCheckingBasic.fourslash.js.map +1 -0
- package/dist/tests/fourslash/import.pytyped.typeCheckingOff.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/import.pytyped.typeCheckingOff.fourslash.js +35 -0
- package/dist/tests/fourslash/import.pytyped.typeCheckingOff.fourslash.js.map +1 -0
- package/dist/tests/fourslash/import.wildcard.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/import.wildcard.fourslash.js +24 -0
- package/dist/tests/fourslash/import.wildcard.fourslash.js.map +1 -0
- package/dist/tests/fourslash/importnotresolved.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/importnotresolved.fourslash.js +13 -0
- package/dist/tests/fourslash/importnotresolved.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingModuleSource.disablingInStrictMode.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/missingModuleSource.disablingInStrictMode.fourslash.js +18 -0
- package/dist/tests/fourslash/missingModuleSource.disablingInStrictMode.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingModuleSource.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/missingModuleSource.fourslash.js +13 -0
- package/dist/tests/fourslash/missingModuleSource.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingTypeStub.codeAction.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/missingTypeStub.codeAction.fourslash.js +31 -0
- package/dist/tests/fourslash/missingTypeStub.codeAction.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingTypeStub.command.multipart.fourslash.d.ts +7 -0
- package/dist/tests/fourslash/missingTypeStub.command.multipart.fourslash.js +44 -0
- package/dist/tests/fourslash/missingTypeStub.command.multipart.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingTypeStub.command.singlefile.fourslash.d.ts +7 -0
- package/dist/tests/fourslash/missingTypeStub.command.singlefile.fourslash.js +35 -0
- package/dist/tests/fourslash/missingTypeStub.command.singlefile.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingTypeStub.command.singlepart.fourslash.d.ts +7 -0
- package/dist/tests/fourslash/missingTypeStub.command.singlepart.fourslash.js +35 -0
- package/dist/tests/fourslash/missingTypeStub.command.singlepart.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingTypeStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/missingTypeStub.fourslash.js +18 -0
- package/dist/tests/fourslash/missingTypeStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/missingTypeStub.invokeCodeAction.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/missingTypeStub.invokeCodeAction.fourslash.js +34 -0
- package/dist/tests/fourslash/missingTypeStub.invokeCodeAction.fourslash.js.map +1 -0
- package/dist/tests/fourslash/noerrors.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/noerrors.fourslash.js +9 -0
- package/dist/tests/fourslash/noerrors.fourslash.js.map +1 -0
- package/dist/tests/fourslash/orderImports1.command.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/orderImports1.command.fourslash.js +17 -0
- package/dist/tests/fourslash/orderImports1.command.fourslash.js.map +1 -0
- package/dist/tests/fourslash/orderImports2.command.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/orderImports2.command.fourslash.js +21 -0
- package/dist/tests/fourslash/orderImports2.command.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.externallyHidden.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.externallyHidden.fourslash.js +23 -0
- package/dist/tests/fourslash/rename.externallyHidden.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.externallyHidden.params.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.externallyHidden.params.fourslash.js +23 -0
- package/dist/tests/fourslash/rename.externallyHidden.params.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.fourslash.js +26 -0
- package/dist/tests/fourslash/rename.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.library.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.library.fourslash.js +26 -0
- package/dist/tests/fourslash/rename.library.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.library.sourceAndStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.library.sourceAndStub.fourslash.js +29 -0
- package/dist/tests/fourslash/rename.library.sourceAndStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.multipleDecl.fourslash.d.ts +2 -0
- package/dist/tests/fourslash/rename.multipleDecl.fourslash.js +19 -0
- package/dist/tests/fourslash/rename.multipleDecl.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.sourceAndStub.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.sourceAndStub.fourslash.js +33 -0
- package/dist/tests/fourslash/rename.sourceAndStub.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.string.excluded.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.string.excluded.fourslash.js +39 -0
- package/dist/tests/fourslash/rename.string.excluded.fourslash.js.map +1 -0
- package/dist/tests/fourslash/rename.string.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/rename.string.fourslash.js +25 -0
- package/dist/tests/fourslash/rename.string.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.builtinDocstrings.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.builtinDocstrings.fourslash.js +62 -0
- package/dist/tests/fourslash/signature.builtinDocstrings.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.complicated.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.complicated.fourslash.js +97 -0
- package/dist/tests/fourslash/signature.complicated.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.cornercases.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.cornercases.fourslash.js +22 -0
- package/dist/tests/fourslash/signature.cornercases.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.docstrings.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.docstrings.fourslash.js +42 -0
- package/dist/tests/fourslash/signature.docstrings.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.docstrings.overloaded.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.docstrings.overloaded.fourslash.js +49 -0
- package/dist/tests/fourslash/signature.docstrings.overloaded.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.docstrings.wildcardimports.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.docstrings.wildcardimports.fourslash.js +115 -0
- package/dist/tests/fourslash/signature.docstrings.wildcardimports.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.overload.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.overload.fourslash.js +63 -0
- package/dist/tests/fourslash/signature.overload.fourslash.js.map +1 -0
- package/dist/tests/fourslash/signature.simple.fourslash.d.ts +1 -0
- package/dist/tests/fourslash/signature.simple.fourslash.js +104 -0
- package/dist/tests/fourslash/signature.simple.fourslash.js.map +1 -0
- package/dist/tests/harness/fourslash/fourSlashParser.d.ts +10 -0
- package/dist/tests/harness/fourslash/fourSlashParser.js +347 -0
- package/dist/tests/harness/fourslash/fourSlashParser.js.map +1 -0
- package/dist/tests/harness/fourslash/fourSlashTypes.d.ts +81 -0
- package/dist/tests/harness/fourslash/fourSlashTypes.js +65 -0
- package/dist/tests/harness/fourslash/fourSlashTypes.js.map +1 -0
- package/dist/tests/harness/fourslash/runner.d.ts +20 -0
- package/dist/tests/harness/fourslash/runner.js +93 -0
- package/dist/tests/harness/fourslash/runner.js.map +1 -0
- package/dist/tests/harness/fourslash/testLanguageService.d.ts +40 -0
- package/dist/tests/harness/fourslash/testLanguageService.js +120 -0
- package/dist/tests/harness/fourslash/testLanguageService.js.map +1 -0
- package/dist/tests/harness/fourslash/testState.Consts.d.ts +11 -0
- package/dist/tests/harness/fourslash/testState.Consts.js +50 -0
- package/dist/tests/harness/fourslash/testState.Consts.js.map +1 -0
- package/dist/tests/harness/fourslash/testState.d.ts +232 -0
- package/dist/tests/harness/fourslash/testState.js +1381 -0
- package/dist/tests/harness/fourslash/testState.js.map +1 -0
- package/dist/tests/harness/testAccessHost.d.ts +8 -0
- package/dist/tests/harness/testAccessHost.js +26 -0
- package/dist/tests/harness/testAccessHost.js.map +1 -0
- package/dist/tests/harness/testHost.d.ts +16 -0
- package/dist/tests/harness/testHost.js +161 -0
- package/dist/tests/harness/testHost.js.map +1 -0
- package/dist/tests/harness/utils.d.ts +74 -0
- package/dist/tests/harness/utils.js +328 -0
- package/dist/tests/harness/utils.js.map +1 -0
- package/dist/tests/harness/vfs/factory.d.ts +32 -0
- package/dist/tests/harness/vfs/factory.js +173 -0
- package/dist/tests/harness/vfs/factory.js.map +1 -0
- package/dist/tests/harness/vfs/filesystem.d.ts +430 -0
- package/dist/tests/harness/vfs/filesystem.js +1455 -0
- package/dist/tests/harness/vfs/filesystem.js.map +1 -0
- package/dist/tests/harness/vfs/pathValidation.d.ts +24 -0
- package/dist/tests/harness/vfs/pathValidation.js +123 -0
- package/dist/tests/harness/vfs/pathValidation.js.map +1 -0
- package/dist/tests/importAdder.test.d.ts +1 -0
- package/dist/tests/importAdder.test.js +1192 -0
- package/dist/tests/importAdder.test.js.map +1 -0
- package/dist/tests/importResolver.test.d.ts +1 -0
- package/dist/tests/importResolver.test.js +450 -0
- package/dist/tests/importResolver.test.js.map +1 -0
- package/dist/tests/importStatementUtils.test.d.ts +1 -0
- package/dist/tests/importStatementUtils.test.js +371 -0
- package/dist/tests/importStatementUtils.test.js.map +1 -0
- package/dist/tests/indentationUtils.ptvs.test.d.ts +1 -0
- package/dist/tests/indentationUtils.ptvs.test.js +324 -0
- package/dist/tests/indentationUtils.ptvs.test.js.map +1 -0
- package/dist/tests/indentationUtils.reindent.test.d.ts +1 -0
- package/dist/tests/indentationUtils.reindent.test.js +332 -0
- package/dist/tests/indentationUtils.reindent.test.js.map +1 -0
- package/dist/tests/indentationUtils.test.d.ts +1 -0
- package/dist/tests/indentationUtils.test.js +375 -0
- package/dist/tests/indentationUtils.test.js.map +1 -0
- package/dist/tests/ipythonMode.test.d.ts +1 -0
- package/dist/tests/ipythonMode.test.js +303 -0
- package/dist/tests/ipythonMode.test.js.map +1 -0
- package/dist/tests/localizer.test.d.ts +1 -0
- package/dist/tests/localizer.test.js +64 -0
- package/dist/tests/localizer.test.js.map +1 -0
- package/dist/tests/parseTreeUtils.test.d.ts +1 -0
- package/dist/tests/parseTreeUtils.test.js +228 -0
- package/dist/tests/parseTreeUtils.test.js.map +1 -0
- package/dist/tests/parser.test.d.ts +1 -0
- package/dist/tests/parser.test.js +101 -0
- package/dist/tests/parser.test.js.map +1 -0
- package/dist/tests/pathUtils.test.d.ts +1 -0
- package/dist/tests/pathUtils.test.js +253 -0
- package/dist/tests/pathUtils.test.js.map +1 -0
- package/dist/tests/pyrightFileSystem.test.d.ts +1 -0
- package/dist/tests/pyrightFileSystem.test.js +152 -0
- package/dist/tests/pyrightFileSystem.test.js.map +1 -0
- package/dist/tests/renameModule.folder.test.d.ts +1 -0
- package/dist/tests/renameModule.folder.test.js +229 -0
- package/dist/tests/renameModule.folder.test.js.map +1 -0
- package/dist/tests/renameModule.fromImports.test.d.ts +1 -0
- package/dist/tests/renameModule.fromImports.test.js +790 -0
- package/dist/tests/renameModule.fromImports.test.js.map +1 -0
- package/dist/tests/renameModule.imports.test.d.ts +1 -0
- package/dist/tests/renameModule.imports.test.js +380 -0
- package/dist/tests/renameModule.imports.test.js.map +1 -0
- package/dist/tests/renameModule.misc.test.d.ts +1 -0
- package/dist/tests/renameModule.misc.test.js +615 -0
- package/dist/tests/renameModule.misc.test.js.map +1 -0
- package/dist/tests/renameModule.relativePath.test.d.ts +1 -0
- package/dist/tests/renameModule.relativePath.test.js +231 -0
- package/dist/tests/renameModule.relativePath.test.js.map +1 -0
- package/dist/tests/renameModuleTestUtils.d.ts +4 -0
- package/dist/tests/renameModuleTestUtils.js +148 -0
- package/dist/tests/renameModuleTestUtils.js.map +1 -0
- package/dist/tests/sourceFile.test.d.ts +1 -0
- package/dist/tests/sourceFile.test.js +25 -0
- package/dist/tests/sourceFile.test.js.map +1 -0
- package/dist/tests/stringUtils.test.d.ts +1 -0
- package/dist/tests/stringUtils.test.js +69 -0
- package/dist/tests/stringUtils.test.js.map +1 -0
- package/dist/tests/symbolNameUtils.test.d.ts +1 -0
- package/dist/tests/symbolNameUtils.test.js +83 -0
- package/dist/tests/symbolNameUtils.test.js.map +1 -0
- package/dist/tests/testState.test.d.ts +1 -0
- package/dist/tests/testState.test.js +521 -0
- package/dist/tests/testState.test.js.map +1 -0
- package/dist/tests/testUtils.d.ts +27 -0
- package/dist/tests/testUtils.js +213 -0
- package/dist/tests/testUtils.js.map +1 -0
- package/dist/tests/tokenizer.test.d.ts +1 -0
- package/dist/tests/tokenizer.test.js +1277 -0
- package/dist/tests/tokenizer.test.js.map +1 -0
- package/dist/tests/typeEvaluator1.test.d.ts +1 -0
- package/dist/tests/typeEvaluator1.test.js +1023 -0
- package/dist/tests/typeEvaluator1.test.js.map +1 -0
- package/dist/tests/typeEvaluator2.test.d.ts +1 -0
- package/dist/tests/typeEvaluator2.test.js +869 -0
- package/dist/tests/typeEvaluator2.test.js.map +1 -0
- package/dist/tests/typeEvaluator3.test.d.ts +1 -0
- package/dist/tests/typeEvaluator3.test.js +915 -0
- package/dist/tests/typeEvaluator3.test.js.map +1 -0
- package/dist/tests/typeEvaluator4.test.d.ts +1 -0
- package/dist/tests/typeEvaluator4.test.js +901 -0
- package/dist/tests/typeEvaluator4.test.js.map +1 -0
- package/dist/tests/updateSymbolReference.test.d.ts +1 -0
- package/dist/tests/updateSymbolReference.test.js +980 -0
- package/dist/tests/updateSymbolReference.test.js.map +1 -0
- package/dist/tests/zipfs.test.d.ts +1 -0
- package/dist/tests/zipfs.test.js +112 -0
- package/dist/tests/zipfs.test.js.map +1 -0
- package/dist/workspaceMap.d.ts +6 -0
- package/dist/workspaceMap.js +73 -0
- package/dist/workspaceMap.js.map +1 -0
- package/package.json +45 -0
@@ -0,0 +1,788 @@
|
|
1
|
+
"use strict";
|
2
|
+
/*
|
3
|
+
* localize.ts
|
4
|
+
* Copyright (c) Microsoft Corporation.
|
5
|
+
* Licensed under the MIT license.
|
6
|
+
* Author: Eric Traut
|
7
|
+
*
|
8
|
+
* Code that localizes user-visible strings.
|
9
|
+
*/
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
11
|
+
exports.Localizer = exports.setLocaleOverride = exports.ParameterizedString = void 0;
|
12
|
+
const debug_1 = require("../common/debug");
|
13
|
+
const enUsStrings = require("./package.nls.en-us.json");
|
14
|
+
const deStrings = require("./package.nls.de.json");
|
15
|
+
const esStrings = require("./package.nls.es.json");
|
16
|
+
const frStrings = require("./package.nls.fr.json");
|
17
|
+
const jaStrings = require("./package.nls.ja.json");
|
18
|
+
const ruStrings = require("./package.nls.ru.json");
|
19
|
+
const zhCnStrings = require("./package.nls.zh-cn.json");
|
20
|
+
const zhTwStrings = require("./package.nls.zh-tw.json");
|
21
|
+
class ParameterizedString {
|
22
|
+
constructor(_formatString) {
|
23
|
+
this._formatString = _formatString;
|
24
|
+
}
|
25
|
+
format(params) {
|
26
|
+
let str = this._formatString;
|
27
|
+
Object.keys(params).forEach((key) => {
|
28
|
+
str = str.replace(`{${key}}`, params[key].toString());
|
29
|
+
});
|
30
|
+
return str;
|
31
|
+
}
|
32
|
+
getFormatString() {
|
33
|
+
return this._formatString;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
exports.ParameterizedString = ParameterizedString;
|
37
|
+
const defaultLocale = 'en-us';
|
38
|
+
const stringMapsByLocale = new Map([
|
39
|
+
['de', deStrings],
|
40
|
+
['en-us', enUsStrings],
|
41
|
+
['es', esStrings],
|
42
|
+
['fr', frStrings],
|
43
|
+
['ja', jaStrings],
|
44
|
+
['ru', ruStrings],
|
45
|
+
['zh-cn', zhCnStrings],
|
46
|
+
['zh-tw', zhTwStrings],
|
47
|
+
]);
|
48
|
+
let localizedStrings = undefined;
|
49
|
+
let defaultStrings = {};
|
50
|
+
function getRawString(key) {
|
51
|
+
if (localizedStrings === undefined) {
|
52
|
+
localizedStrings = initialize();
|
53
|
+
}
|
54
|
+
const keyParts = key.split('.');
|
55
|
+
const str = getRawStringFromMap(localizedStrings, keyParts) || getRawStringFromMap(defaultStrings, keyParts);
|
56
|
+
if (str) {
|
57
|
+
return str;
|
58
|
+
}
|
59
|
+
(0, debug_1.fail)(`Missing localized string for key "${key}"`);
|
60
|
+
}
|
61
|
+
function getRawStringFromMap(map, keyParts) {
|
62
|
+
let curObj = map;
|
63
|
+
for (const keyPart of keyParts) {
|
64
|
+
if (!curObj[keyPart]) {
|
65
|
+
return undefined;
|
66
|
+
}
|
67
|
+
curObj = curObj[keyPart];
|
68
|
+
}
|
69
|
+
return curObj;
|
70
|
+
}
|
71
|
+
function initialize() {
|
72
|
+
defaultStrings = loadDefaultStrings();
|
73
|
+
const currentLocale = getLocaleFromEnv();
|
74
|
+
return loadStringsForLocale(currentLocale);
|
75
|
+
}
|
76
|
+
let localeOverride;
|
77
|
+
function setLocaleOverride(locale) {
|
78
|
+
localeOverride = locale.toLowerCase();
|
79
|
+
}
|
80
|
+
exports.setLocaleOverride = setLocaleOverride;
|
81
|
+
function getLocaleFromEnv() {
|
82
|
+
if (localeOverride) {
|
83
|
+
return localeOverride;
|
84
|
+
}
|
85
|
+
try {
|
86
|
+
if (navigator === null || navigator === void 0 ? void 0 : navigator.language) {
|
87
|
+
return navigator.language.toLowerCase();
|
88
|
+
}
|
89
|
+
}
|
90
|
+
catch {
|
91
|
+
// Fall through
|
92
|
+
}
|
93
|
+
const env = process.env;
|
94
|
+
// Start with the VSCode environment variables.
|
95
|
+
const vscodeConfigString = env.VSCODE_NLS_CONFIG;
|
96
|
+
if (vscodeConfigString) {
|
97
|
+
try {
|
98
|
+
return JSON.parse(vscodeConfigString).locale;
|
99
|
+
}
|
100
|
+
catch {
|
101
|
+
// Fall through
|
102
|
+
}
|
103
|
+
}
|
104
|
+
// See if there is a language env variable.
|
105
|
+
const localeString = env.LC_ALL || env.LC_MESSAGES || env.LANG || env.LANGUAGE;
|
106
|
+
if (localeString) {
|
107
|
+
// This string may contain a local followed by an encoding (e.g. "en-us.UTF-8").
|
108
|
+
const localeStringSplit = localeString.split('.');
|
109
|
+
if (localeStringSplit.length > 0 && localeStringSplit[0]) {
|
110
|
+
return localeStringSplit[0];
|
111
|
+
}
|
112
|
+
}
|
113
|
+
// Fall back to the default locale.
|
114
|
+
return defaultLocale;
|
115
|
+
}
|
116
|
+
function loadDefaultStrings() {
|
117
|
+
const defaultStrings = loadStringsFromJsonFile(defaultLocale);
|
118
|
+
if (defaultStrings) {
|
119
|
+
return defaultStrings;
|
120
|
+
}
|
121
|
+
console.error('Could not load default strings');
|
122
|
+
return {};
|
123
|
+
}
|
124
|
+
function loadStringsForLocale(locale) {
|
125
|
+
if (locale === defaultLocale) {
|
126
|
+
// No need to load override if we're using the default.
|
127
|
+
return {};
|
128
|
+
}
|
129
|
+
let override = loadStringsFromJsonFile(locale);
|
130
|
+
if (override !== undefined) {
|
131
|
+
return override;
|
132
|
+
}
|
133
|
+
// If we couldn't find the requested locale, try to fall back on a more
|
134
|
+
// general version.
|
135
|
+
const localeSplit = locale.split('-');
|
136
|
+
if (localeSplit.length > 0 && localeSplit[0]) {
|
137
|
+
override = loadStringsFromJsonFile(localeSplit[0]);
|
138
|
+
if (override !== undefined) {
|
139
|
+
return override;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
return {};
|
143
|
+
}
|
144
|
+
function loadStringsFromJsonFile(locale) {
|
145
|
+
return stringMapsByLocale.get(locale);
|
146
|
+
}
|
147
|
+
var Localizer;
|
148
|
+
(function (Localizer) {
|
149
|
+
let Diagnostic;
|
150
|
+
(function (Diagnostic) {
|
151
|
+
Diagnostic.annotatedParamCountMismatch = () => new ParameterizedString(getRawString('Diagnostic.annotatedParamCountMismatch'));
|
152
|
+
Diagnostic.annotatedTypeArgMissing = () => getRawString('Diagnostic.annotatedTypeArgMissing');
|
153
|
+
Diagnostic.annotationFormatString = () => getRawString('Diagnostic.annotationFormatString');
|
154
|
+
Diagnostic.annotationNotSupported = () => getRawString('Diagnostic.annotationNotSupported');
|
155
|
+
Diagnostic.annotationSpansStrings = () => getRawString('Diagnostic.annotationSpansStrings');
|
156
|
+
Diagnostic.annotationStringEscape = () => getRawString('Diagnostic.annotationStringEscape');
|
157
|
+
Diagnostic.argAssignment = () => new ParameterizedString(getRawString('Diagnostic.argAssignment'));
|
158
|
+
Diagnostic.argAssignmentFunction = () => new ParameterizedString(getRawString('Diagnostic.argAssignmentFunction'));
|
159
|
+
Diagnostic.argAssignmentParam = () => new ParameterizedString(getRawString('Diagnostic.argAssignmentParam'));
|
160
|
+
Diagnostic.argAssignmentParamFunction = () => new ParameterizedString(getRawString('Diagnostic.argAssignmentParamFunction'));
|
161
|
+
Diagnostic.argMissingForParam = () => new ParameterizedString(getRawString('Diagnostic.argMissingForParam'));
|
162
|
+
Diagnostic.argMissingForParams = () => new ParameterizedString(getRawString('Diagnostic.argMissingForParams'));
|
163
|
+
Diagnostic.argMorePositionalExpectedCount = () => new ParameterizedString(getRawString('Diagnostic.argMorePositionalExpectedCount'));
|
164
|
+
Diagnostic.argMorePositionalExpectedOne = () => getRawString('Diagnostic.argMorePositionalExpectedOne');
|
165
|
+
Diagnostic.argPositional = () => getRawString('Diagnostic.argPositional');
|
166
|
+
Diagnostic.argPositionalExpectedCount = () => new ParameterizedString(getRawString('Diagnostic.argPositionalExpectedCount'));
|
167
|
+
Diagnostic.argPositionalExpectedOne = () => getRawString('Diagnostic.argPositionalExpectedOne');
|
168
|
+
Diagnostic.argTypePartiallyUnknown = () => getRawString('Diagnostic.argTypePartiallyUnknown');
|
169
|
+
Diagnostic.argTypeUnknown = () => getRawString('Diagnostic.argTypeUnknown');
|
170
|
+
Diagnostic.assertAlwaysTrue = () => getRawString('Diagnostic.assertAlwaysTrue');
|
171
|
+
Diagnostic.assertTypeArgs = () => getRawString('Diagnostic.assertTypeArgs');
|
172
|
+
Diagnostic.assertTypeTypeMismatch = () => new ParameterizedString(getRawString('Diagnostic.assertTypeTypeMismatch'));
|
173
|
+
Diagnostic.assignmentExprContext = () => getRawString('Diagnostic.assignmentExprContext');
|
174
|
+
Diagnostic.assignmentExprComprehension = () => new ParameterizedString(getRawString('Diagnostic.assignmentExprComprehension'));
|
175
|
+
Diagnostic.assignmentExprInSubscript = () => getRawString('Diagnostic.assignmentExprInSubscript');
|
176
|
+
Diagnostic.assignmentInProtocol = () => getRawString('Diagnostic.assignmentInProtocol');
|
177
|
+
Diagnostic.assignmentTargetExpr = () => getRawString('Diagnostic.assignmentTargetExpr');
|
178
|
+
Diagnostic.asyncNotInAsyncFunction = () => getRawString('Diagnostic.asyncNotInAsyncFunction');
|
179
|
+
Diagnostic.awaitIllegal = () => getRawString('Diagnostic.awaitIllegal');
|
180
|
+
Diagnostic.awaitNotInAsync = () => getRawString('Diagnostic.awaitNotInAsync');
|
181
|
+
Diagnostic.backticksIllegal = () => getRawString('Diagnostic.backticksIllegal');
|
182
|
+
Diagnostic.baseClassCircular = () => getRawString('Diagnostic.baseClassCircular');
|
183
|
+
Diagnostic.baseClassInvalid = () => getRawString('Diagnostic.baseClassInvalid');
|
184
|
+
Diagnostic.baseClassFinal = () => new ParameterizedString(getRawString('Diagnostic.baseClassFinal'));
|
185
|
+
Diagnostic.baseClassMethodTypeIncompatible = () => new ParameterizedString(getRawString('Diagnostic.baseClassMethodTypeIncompatible'));
|
186
|
+
Diagnostic.baseClassVariableTypeIncompatible = () => new ParameterizedString(getRawString('Diagnostic.baseClassVariableTypeIncompatible'));
|
187
|
+
Diagnostic.baseClassUnknown = () => getRawString('Diagnostic.baseClassUnknown');
|
188
|
+
Diagnostic.bindTypeMismatch = () => new ParameterizedString(getRawString('Diagnostic.bindTypeMismatch'));
|
189
|
+
Diagnostic.breakOutsideLoop = () => getRawString('Diagnostic.breakOutsideLoop');
|
190
|
+
Diagnostic.callableExtraArgs = () => getRawString('Diagnostic.callableExtraArgs');
|
191
|
+
Diagnostic.callableFirstArg = () => getRawString('Diagnostic.callableFirstArg');
|
192
|
+
Diagnostic.callableSecondArg = () => getRawString('Diagnostic.callableSecondArg');
|
193
|
+
Diagnostic.casePatternIsIrrefutable = () => getRawString('Diagnostic.casePatternIsIrrefutable');
|
194
|
+
Diagnostic.classAlreadySpecialized = () => new ParameterizedString(getRawString('Diagnostic.classAlreadySpecialized'));
|
195
|
+
Diagnostic.classDecoratorTypeUnknown = () => getRawString('Diagnostic.classDecoratorTypeUnknown');
|
196
|
+
Diagnostic.classDefinitionCycle = () => new ParameterizedString(getRawString('Diagnostic.classDefinitionCycle'));
|
197
|
+
Diagnostic.classGetItemClsParam = () => getRawString('Diagnostic.classGetItemClsParam');
|
198
|
+
Diagnostic.classMethodClsParam = () => getRawString('Diagnostic.classMethodClsParam');
|
199
|
+
Diagnostic.classNotRuntimeSubscriptable = () => new ParameterizedString(getRawString('Diagnostic.classNotRuntimeSubscriptable'));
|
200
|
+
Diagnostic.classPatternBuiltInArgCount = () => getRawString('Diagnostic.classPatternBuiltInArgCount');
|
201
|
+
Diagnostic.classPatternBuiltInArgPositional = () => getRawString('Diagnostic.classPatternBuiltInArgPositional');
|
202
|
+
Diagnostic.classPatternTypeAlias = () => new ParameterizedString(getRawString('Diagnostic.classPatternTypeAlias'));
|
203
|
+
Diagnostic.classVarNotAllowed = () => getRawString('Diagnostic.classVarNotAllowed');
|
204
|
+
Diagnostic.classVarFirstArgMissing = () => getRawString('Diagnostic.classVarFirstArgMissing');
|
205
|
+
Diagnostic.classVarOverridesInstanceVar = () => new ParameterizedString(getRawString('Diagnostic.classVarOverridesInstanceVar'));
|
206
|
+
Diagnostic.classVarTooManyArgs = () => getRawString('Diagnostic.classVarTooManyArgs');
|
207
|
+
Diagnostic.classVarWithTypeVar = () => getRawString('Diagnostic.classVarWithTypeVar');
|
208
|
+
Diagnostic.clsSelfParamTypeMismatch = () => new ParameterizedString(getRawString('Diagnostic.clsSelfParamTypeMismatch'));
|
209
|
+
Diagnostic.codeTooComplexToAnalyze = () => getRawString('Diagnostic.codeTooComplexToAnalyze');
|
210
|
+
Diagnostic.comparisonAlwaysFalse = () => new ParameterizedString(getRawString('Diagnostic.comparisonAlwaysFalse'));
|
211
|
+
Diagnostic.comparisonAlwaysTrue = () => new ParameterizedString(getRawString('Diagnostic.comparisonAlwaysTrue'));
|
212
|
+
Diagnostic.comprehensionInDict = () => getRawString('Diagnostic.comprehensionInDict');
|
213
|
+
Diagnostic.comprehensionInSet = () => getRawString('Diagnostic.comprehensionInSet');
|
214
|
+
Diagnostic.concatenateParamSpecMissing = () => getRawString('Diagnostic.concatenateParamSpecMissing');
|
215
|
+
Diagnostic.concatenateTypeArgsMissing = () => getRawString('Diagnostic.concatenateTypeArgsMissing');
|
216
|
+
Diagnostic.constantRedefinition = () => new ParameterizedString(getRawString('Diagnostic.constantRedefinition'));
|
217
|
+
Diagnostic.constructorNoArgs = () => new ParameterizedString(getRawString('Diagnostic.constructorNoArgs'));
|
218
|
+
Diagnostic.constructorParametersMismatch = () => new ParameterizedString(getRawString('Diagnostic.constructorParametersMismatch'));
|
219
|
+
Diagnostic.continueInFinally = () => getRawString('Diagnostic.continueInFinally');
|
220
|
+
Diagnostic.continueOutsideLoop = () => getRawString('Diagnostic.continueOutsideLoop');
|
221
|
+
Diagnostic.dataClassBaseClassNotFrozen = () => getRawString('Diagnostic.dataClassBaseClassNotFrozen');
|
222
|
+
Diagnostic.dataClassFieldWithDefault = () => getRawString('Diagnostic.dataClassFieldWithDefault');
|
223
|
+
Diagnostic.dataClassFieldWithoutAnnotation = () => getRawString('Diagnostic.dataClassFieldWithoutAnnotation');
|
224
|
+
Diagnostic.dataClassPostInitParamCount = () => new ParameterizedString(getRawString('Diagnostic.dataClassPostInitParamCount'));
|
225
|
+
Diagnostic.dataClassPostInitType = () => new ParameterizedString(getRawString('Diagnostic.dataClassPostInitType'));
|
226
|
+
Diagnostic.dataClassSlotsOverwrite = () => getRawString('Diagnostic.dataClassSlotsOverwrite');
|
227
|
+
Diagnostic.dataClassTransformExpectedBoolLiteral = () => getRawString('Diagnostic.dataClassTransformExpectedBoolLiteral');
|
228
|
+
Diagnostic.dataClassTransformFieldSpecifier = () => new ParameterizedString(getRawString('Diagnostic.dataClassTransformFieldSpecifier'));
|
229
|
+
Diagnostic.dataClassTransformPositionalParam = () => getRawString('Diagnostic.dataClassTransformPositionalParam');
|
230
|
+
Diagnostic.dataClassTransformUnknownArgument = () => new ParameterizedString(getRawString('Diagnostic.dataClassTransformUnknownArgument'));
|
231
|
+
Diagnostic.declaredReturnTypePartiallyUnknown = () => new ParameterizedString(getRawString('Diagnostic.declaredReturnTypePartiallyUnknown'));
|
232
|
+
Diagnostic.declaredReturnTypeUnknown = () => getRawString('Diagnostic.declaredReturnTypeUnknown');
|
233
|
+
Diagnostic.defaultValueContainsCall = () => getRawString('Diagnostic.defaultValueContainsCall');
|
234
|
+
Diagnostic.defaultValueNotAllowed = () => getRawString('Diagnostic.defaultValueNotAllowed');
|
235
|
+
Diagnostic.defaultValueNotEllipsis = () => getRawString('Diagnostic.defaultValueNotEllipsis');
|
236
|
+
Diagnostic.deprecatedType = () => new ParameterizedString(getRawString('Diagnostic.deprecatedType'));
|
237
|
+
Diagnostic.dictExpandIllegalInComprehension = () => getRawString('Diagnostic.dictExpandIllegalInComprehension');
|
238
|
+
Diagnostic.dictInAnnotation = () => getRawString('Diagnostic.dictInAnnotation');
|
239
|
+
Diagnostic.dictKeyValuePairs = () => getRawString('Diagnostic.dictKeyValuePairs');
|
240
|
+
Diagnostic.dictUnpackIsNotMapping = () => getRawString('Diagnostic.dictUnpackIsNotMapping');
|
241
|
+
Diagnostic.delTargetExpr = () => getRawString('Diagnostic.delTargetExpr');
|
242
|
+
Diagnostic.dunderAllSymbolNotPresent = () => new ParameterizedString(getRawString('Diagnostic.dunderAllSymbolNotPresent'));
|
243
|
+
Diagnostic.duplicateArgsParam = () => getRawString('Diagnostic.duplicateArgsParam');
|
244
|
+
Diagnostic.duplicateBaseClass = () => getRawString('Diagnostic.duplicateBaseClass');
|
245
|
+
Diagnostic.duplicateCatchAll = () => getRawString('Diagnostic.duplicateCatchAll');
|
246
|
+
Diagnostic.duplicateEnumMember = () => new ParameterizedString(getRawString('Diagnostic.duplicateEnumMember'));
|
247
|
+
Diagnostic.duplicateGenericAndProtocolBase = () => getRawString('Diagnostic.duplicateGenericAndProtocolBase');
|
248
|
+
Diagnostic.duplicateImport = () => new ParameterizedString(getRawString('Diagnostic.duplicateImport'));
|
249
|
+
Diagnostic.duplicateKwargsParam = () => getRawString('Diagnostic.duplicateKwargsParam');
|
250
|
+
Diagnostic.duplicateKeywordOnly = () => getRawString('Diagnostic.duplicateKeywordOnly');
|
251
|
+
Diagnostic.duplicateParam = () => new ParameterizedString(getRawString('Diagnostic.duplicateParam'));
|
252
|
+
Diagnostic.duplicateCapturePatternTarget = () => new ParameterizedString(getRawString('Diagnostic.duplicateCapturePatternTarget'));
|
253
|
+
Diagnostic.duplicateStarPattern = () => getRawString('Diagnostic.duplicateStarPattern');
|
254
|
+
Diagnostic.duplicateStarStarPattern = () => getRawString('Diagnostic.duplicateStarStarPattern');
|
255
|
+
Diagnostic.duplicatePositionOnly = () => getRawString('Diagnostic.duplicatePositionOnly');
|
256
|
+
Diagnostic.duplicateUnpack = () => getRawString('Diagnostic.duplicateUnpack');
|
257
|
+
Diagnostic.ellipsisContext = () => getRawString('Diagnostic.ellipsisContext');
|
258
|
+
Diagnostic.ellipsisSecondArg = () => getRawString('Diagnostic.ellipsisSecondArg');
|
259
|
+
Diagnostic.enumClassOverride = () => new ParameterizedString(getRawString('Diagnostic.enumClassOverride'));
|
260
|
+
Diagnostic.exceptionGroupIncompatible = () => getRawString('Diagnostic.exceptionGroupIncompatible');
|
261
|
+
Diagnostic.exceptionTypeIncorrect = () => new ParameterizedString(getRawString('Diagnostic.exceptionTypeIncorrect'));
|
262
|
+
Diagnostic.exceptionTypeNotClass = () => new ParameterizedString(getRawString('Diagnostic.exceptionTypeNotClass'));
|
263
|
+
Diagnostic.exceptionTypeNotInstantiable = () => new ParameterizedString(getRawString('Diagnostic.exceptionTypeNotInstantiable'));
|
264
|
+
Diagnostic.expectedAfterDecorator = () => getRawString('Diagnostic.expectedAfterDecorator');
|
265
|
+
Diagnostic.expectedArrow = () => getRawString('Diagnostic.expectedArrow');
|
266
|
+
Diagnostic.expectedAsAfterException = () => getRawString('Diagnostic.expectedAsAfterException');
|
267
|
+
Diagnostic.expectedAssignRightHandExpr = () => getRawString('Diagnostic.expectedAssignRightHandExpr');
|
268
|
+
Diagnostic.expectedBinaryRightHandExpr = () => getRawString('Diagnostic.expectedBinaryRightHandExpr');
|
269
|
+
Diagnostic.expectedBoolLiteral = () => getRawString('Diagnostic.expectedBoolLiteral');
|
270
|
+
Diagnostic.expectedCase = () => getRawString('Diagnostic.expectedCase');
|
271
|
+
Diagnostic.expectedClassName = () => getRawString('Diagnostic.expectedClassName');
|
272
|
+
Diagnostic.expectedCloseBrace = () => getRawString('Diagnostic.expectedCloseBrace');
|
273
|
+
Diagnostic.expectedCloseBracket = () => getRawString('Diagnostic.expectedCloseBracket');
|
274
|
+
Diagnostic.expectedCloseParen = () => getRawString('Diagnostic.expectedCloseParen');
|
275
|
+
Diagnostic.expectedColon = () => getRawString('Diagnostic.expectedColon');
|
276
|
+
Diagnostic.expectedComplexNumberLiteral = () => getRawString('Diagnostic.expectedComplexNumberLiteral');
|
277
|
+
Diagnostic.expectedDecoratorExpr = () => getRawString('Diagnostic.expectedDecoratorExpr');
|
278
|
+
Diagnostic.expectedDecoratorName = () => getRawString('Diagnostic.expectedDecoratorName');
|
279
|
+
Diagnostic.expectedDecoratorNewline = () => getRawString('Diagnostic.expectedDecoratorNewline');
|
280
|
+
Diagnostic.expectedDelExpr = () => getRawString('Diagnostic.expectedDelExpr');
|
281
|
+
Diagnostic.expectedElse = () => getRawString('Diagnostic.expectedElse');
|
282
|
+
Diagnostic.expectedExceptionClass = () => getRawString('Diagnostic.expectedExceptionClass');
|
283
|
+
Diagnostic.expectedExceptionObj = () => getRawString('Diagnostic.expectedExceptionObj');
|
284
|
+
Diagnostic.expectedExpr = () => getRawString('Diagnostic.expectedExpr');
|
285
|
+
Diagnostic.expectedImport = () => getRawString('Diagnostic.expectedImport');
|
286
|
+
Diagnostic.expectedImportAlias = () => getRawString('Diagnostic.expectedImportAlias');
|
287
|
+
Diagnostic.expectedImportSymbols = () => getRawString('Diagnostic.expectedImportSymbols');
|
288
|
+
Diagnostic.expectedIdentifier = () => getRawString('Diagnostic.expectedIdentifier');
|
289
|
+
Diagnostic.expectedIndentedBlock = () => getRawString('Diagnostic.expectedIndentedBlock');
|
290
|
+
Diagnostic.expectedIn = () => getRawString('Diagnostic.expectedIn');
|
291
|
+
Diagnostic.expectedInExpr = () => getRawString('Diagnostic.expectedInExpr');
|
292
|
+
Diagnostic.expectedFunctionAfterAsync = () => getRawString('Diagnostic.expectedFunctionAfterAsync');
|
293
|
+
Diagnostic.expectedFunctionName = () => getRawString('Diagnostic.expectedFunctionName');
|
294
|
+
Diagnostic.expectedMemberName = () => getRawString('Diagnostic.expectedMemberName');
|
295
|
+
Diagnostic.expectedModuleName = () => getRawString('Diagnostic.expectedModuleName');
|
296
|
+
Diagnostic.expectedNameAfterAs = () => getRawString('Diagnostic.expectedNameAfterAs');
|
297
|
+
Diagnostic.expectedNamedParameter = () => getRawString('Diagnostic.expectedNamedParameter');
|
298
|
+
Diagnostic.expectedNewline = () => getRawString('Diagnostic.expectedNewline');
|
299
|
+
Diagnostic.expectedNewlineOrSemicolon = () => getRawString('Diagnostic.expectedNewlineOrSemicolon');
|
300
|
+
Diagnostic.expectedOpenParen = () => getRawString('Diagnostic.expectedOpenParen');
|
301
|
+
Diagnostic.expectedParamName = () => getRawString('Diagnostic.expectedParamName');
|
302
|
+
Diagnostic.expectedPatternExpr = () => getRawString('Diagnostic.expectedPatternExpr');
|
303
|
+
Diagnostic.expectedPatternSubjectExpr = () => getRawString('Diagnostic.expectedPatternSubjectExpr');
|
304
|
+
Diagnostic.expectedPatternValue = () => getRawString('Diagnostic.expectedPatternValue');
|
305
|
+
Diagnostic.expectedReturnExpr = () => getRawString('Diagnostic.expectedReturnExpr');
|
306
|
+
Diagnostic.expectedSliceIndex = () => getRawString('Diagnostic.expectedSliceIndex');
|
307
|
+
Diagnostic.expectedTypeNotString = () => getRawString('Diagnostic.expectedTypeNotString');
|
308
|
+
Diagnostic.expectedYieldExpr = () => getRawString('Diagnostic.expectedYieldExpr');
|
309
|
+
Diagnostic.finalClassIsAbstract = () => new ParameterizedString(getRawString('Diagnostic.finalClassIsAbstract'));
|
310
|
+
Diagnostic.finalContext = () => getRawString('Diagnostic.finalContext');
|
311
|
+
Diagnostic.finalMethodOverride = () => new ParameterizedString(getRawString('Diagnostic.finalMethodOverride'));
|
312
|
+
Diagnostic.finalReassigned = () => new ParameterizedString(getRawString('Diagnostic.finalReassigned'));
|
313
|
+
Diagnostic.finalRedeclaration = () => new ParameterizedString(getRawString('Diagnostic.finalRedeclaration'));
|
314
|
+
Diagnostic.finalRedeclarationBySubclass = () => new ParameterizedString(getRawString('Diagnostic.finalRedeclarationBySubclass'));
|
315
|
+
Diagnostic.finalTooManyArgs = () => getRawString('Diagnostic.finalTooManyArgs');
|
316
|
+
Diagnostic.finalUnassigned = () => new ParameterizedString(getRawString('Diagnostic.finalUnassigned'));
|
317
|
+
Diagnostic.formatStringBrace = () => getRawString('Diagnostic.formatStringBrace');
|
318
|
+
Diagnostic.formatStringBytes = () => getRawString('Diagnostic.formatStringBytes');
|
319
|
+
Diagnostic.formatStringEscape = () => getRawString('Diagnostic.formatStringEscape');
|
320
|
+
Diagnostic.formatStringInPattern = () => getRawString('Diagnostic.formatStringInPattern');
|
321
|
+
Diagnostic.formatStringIllegal = () => getRawString('Diagnostic.formatStringIllegal');
|
322
|
+
Diagnostic.formatStringUnicode = () => getRawString('Diagnostic.formatStringUnicode');
|
323
|
+
Diagnostic.formatStringUnterminated = () => getRawString('Diagnostic.formatStringUnterminated');
|
324
|
+
Diagnostic.functionDecoratorTypeUnknown = () => getRawString('Diagnostic.functionDecoratorTypeUnknown');
|
325
|
+
Diagnostic.functionInConditionalExpression = () => getRawString('Diagnostic.functionInConditionalExpression');
|
326
|
+
Diagnostic.generatorAsyncReturnType = () => getRawString('Diagnostic.generatorAsyncReturnType');
|
327
|
+
Diagnostic.generatorNotParenthesized = () => getRawString('Diagnostic.generatorNotParenthesized');
|
328
|
+
Diagnostic.generatorSyncReturnType = () => getRawString('Diagnostic.generatorSyncReturnType');
|
329
|
+
Diagnostic.genericClassAssigned = () => getRawString('Diagnostic.genericClassAssigned');
|
330
|
+
Diagnostic.genericClassDeleted = () => getRawString('Diagnostic.genericClassDeleted');
|
331
|
+
Diagnostic.genericNotAllowed = () => getRawString('Diagnostic.genericNotAllowed');
|
332
|
+
Diagnostic.genericTypeAliasBoundTypeVar = () => new ParameterizedString(getRawString('Diagnostic.genericTypeAliasBoundTypeVar'));
|
333
|
+
Diagnostic.genericTypeArgMissing = () => getRawString('Diagnostic.genericTypeArgMissing');
|
334
|
+
Diagnostic.genericTypeArgTypeVar = () => getRawString('Diagnostic.genericTypeArgTypeVar');
|
335
|
+
Diagnostic.genericTypeArgUnique = () => getRawString('Diagnostic.genericTypeArgUnique');
|
336
|
+
Diagnostic.globalReassignment = () => new ParameterizedString(getRawString('Diagnostic.globalReassignment'));
|
337
|
+
Diagnostic.globalRedefinition = () => new ParameterizedString(getRawString('Diagnostic.globalRedefinition'));
|
338
|
+
Diagnostic.implicitStringConcat = () => getRawString('Diagnostic.implicitStringConcat');
|
339
|
+
Diagnostic.importCycleDetected = () => getRawString('Diagnostic.importCycleDetected');
|
340
|
+
Diagnostic.importDepthExceeded = () => new ParameterizedString(getRawString('Diagnostic.importDepthExceeded'));
|
341
|
+
Diagnostic.importResolveFailure = () => new ParameterizedString(getRawString('Diagnostic.importResolveFailure'));
|
342
|
+
Diagnostic.importSourceResolveFailure = () => new ParameterizedString(getRawString('Diagnostic.importSourceResolveFailure'));
|
343
|
+
Diagnostic.importSymbolUnknown = () => new ParameterizedString(getRawString('Diagnostic.importSymbolUnknown'));
|
344
|
+
Diagnostic.incompatibleMethodOverride = () => new ParameterizedString(getRawString('Diagnostic.incompatibleMethodOverride'));
|
345
|
+
Diagnostic.inconsistentIndent = () => getRawString('Diagnostic.inconsistentIndent');
|
346
|
+
Diagnostic.inconsistentTabs = () => getRawString('Diagnostic.inconsistentTabs');
|
347
|
+
Diagnostic.initMustReturnNone = () => getRawString('Diagnostic.initMustReturnNone');
|
348
|
+
Diagnostic.initSubclassClsParam = () => getRawString('Diagnostic.initSubclassClsParam');
|
349
|
+
Diagnostic.instanceMethodSelfParam = () => getRawString('Diagnostic.instanceMethodSelfParam');
|
350
|
+
Diagnostic.instanceVarOverridesClassVar = () => new ParameterizedString(getRawString('Diagnostic.instanceVarOverridesClassVar'));
|
351
|
+
Diagnostic.instantiateAbstract = () => new ParameterizedString(getRawString('Diagnostic.instantiateAbstract'));
|
352
|
+
Diagnostic.instantiateProtocol = () => new ParameterizedString(getRawString('Diagnostic.instantiateProtocol'));
|
353
|
+
Diagnostic.internalBindError = () => new ParameterizedString(getRawString('Diagnostic.internalBindError'));
|
354
|
+
Diagnostic.internalParseError = () => new ParameterizedString(getRawString('Diagnostic.internalParseError'));
|
355
|
+
Diagnostic.internalTypeCheckingError = () => new ParameterizedString(getRawString('Diagnostic.internalTypeCheckingError'));
|
356
|
+
Diagnostic.invalidIdentifierChar = () => getRawString('Diagnostic.invalidIdentifierChar');
|
357
|
+
Diagnostic.invalidStubStatement = () => getRawString('Diagnostic.invalidStubStatement');
|
358
|
+
Diagnostic.invalidTokenChars = () => new ParameterizedString(getRawString('Diagnostic.invalidTokenChars'));
|
359
|
+
Diagnostic.isInstanceInvalidType = () => new ParameterizedString(getRawString('Diagnostic.isInstanceInvalidType'));
|
360
|
+
Diagnostic.isSubclassInvalidType = () => new ParameterizedString(getRawString('Diagnostic.isSubclassInvalidType'));
|
361
|
+
Diagnostic.keyValueInSet = () => getRawString('Diagnostic.keyValueInSet');
|
362
|
+
Diagnostic.keywordArgInTypeArgument = () => getRawString('Diagnostic.keywordArgInTypeArgument');
|
363
|
+
Diagnostic.keywordOnlyAfterArgs = () => getRawString('Diagnostic.keywordOnlyAfterArgs');
|
364
|
+
Diagnostic.keywordSubscriptIllegal = () => getRawString('Diagnostic.keywordSubscriptIllegal');
|
365
|
+
Diagnostic.lambdaReturnTypeUnknown = () => getRawString('Diagnostic.lambdaReturnTypeUnknown');
|
366
|
+
Diagnostic.lambdaReturnTypePartiallyUnknown = () => new ParameterizedString(getRawString('Diagnostic.lambdaReturnTypePartiallyUnknown'));
|
367
|
+
Diagnostic.listAssignmentMismatch = () => new ParameterizedString(getRawString('Diagnostic.listAssignmentMismatch'));
|
368
|
+
Diagnostic.listInAnnotation = () => getRawString('Diagnostic.listInAnnotation');
|
369
|
+
Diagnostic.literalUnsupportedType = () => getRawString('Diagnostic.literalUnsupportedType');
|
370
|
+
Diagnostic.literalEmptyArgs = () => getRawString('Diagnostic.literalEmptyArgs');
|
371
|
+
Diagnostic.literalNotCallable = () => getRawString('Diagnostic.literalNotCallable');
|
372
|
+
Diagnostic.matchIncompatible = () => getRawString('Diagnostic.matchIncompatible');
|
373
|
+
Diagnostic.matchIsNotExhaustive = () => getRawString('Diagnostic.matchIsNotExhaustive');
|
374
|
+
Diagnostic.maxParseDepthExceeded = () => getRawString('Diagnostic.maxParseDepthExceeded');
|
375
|
+
Diagnostic.memberAccess = () => new ParameterizedString(getRawString('Diagnostic.memberAccess'));
|
376
|
+
Diagnostic.memberDelete = () => new ParameterizedString(getRawString('Diagnostic.memberDelete'));
|
377
|
+
Diagnostic.memberSet = () => new ParameterizedString(getRawString('Diagnostic.memberSet'));
|
378
|
+
Diagnostic.metaclassConflict = () => getRawString('Diagnostic.metaclassConflict');
|
379
|
+
Diagnostic.metaclassDuplicate = () => getRawString('Diagnostic.metaclassDuplicate');
|
380
|
+
Diagnostic.metaclassIsGeneric = () => getRawString('Diagnostic.metaclassIsGeneric');
|
381
|
+
Diagnostic.methodNotDefined = () => new ParameterizedString(getRawString('Diagnostic.methodNotDefined'));
|
382
|
+
Diagnostic.methodNotDefinedOnType = () => new ParameterizedString(getRawString('Diagnostic.methodNotDefinedOnType'));
|
383
|
+
Diagnostic.methodOrdering = () => getRawString('Diagnostic.methodOrdering');
|
384
|
+
Diagnostic.methodOverridden = () => new ParameterizedString(getRawString('Diagnostic.methodOverridden'));
|
385
|
+
Diagnostic.methodReturnsNonObject = () => new ParameterizedString(getRawString('Diagnostic.methodReturnsNonObject'));
|
386
|
+
Diagnostic.missingProtocolMembers = () => getRawString('Diagnostic.missingProtocolMembers');
|
387
|
+
Diagnostic.missingSuperCall = () => new ParameterizedString(getRawString('Diagnostic.missingSuperCall'));
|
388
|
+
Diagnostic.moduleAsType = () => getRawString('Diagnostic.moduleAsType');
|
389
|
+
Diagnostic.moduleNotCallable = () => getRawString('Diagnostic.moduleNotCallable');
|
390
|
+
Diagnostic.moduleUnknownMember = () => new ParameterizedString(getRawString('Diagnostic.moduleUnknownMember'));
|
391
|
+
Diagnostic.namedExceptAfterCatchAll = () => getRawString('Diagnostic.namedExceptAfterCatchAll');
|
392
|
+
Diagnostic.namedParamAfterParamSpecArgs = () => new ParameterizedString(getRawString('Diagnostic.namedParamAfterParamSpecArgs'));
|
393
|
+
Diagnostic.namedTupleEmptyName = () => getRawString('Diagnostic.namedTupleEmptyName');
|
394
|
+
Diagnostic.namedTupleFirstArg = () => getRawString('Diagnostic.namedTupleFirstArg');
|
395
|
+
Diagnostic.namedTupleMultipleInheritance = () => getRawString('Diagnostic.namedTupleMultipleInheritance');
|
396
|
+
Diagnostic.namedTupleNameType = () => getRawString('Diagnostic.namedTupleNameType');
|
397
|
+
Diagnostic.namedTupleNameUnique = () => getRawString('Diagnostic.namedTupleNameUnique');
|
398
|
+
Diagnostic.namedTupleNoTypes = () => getRawString('Diagnostic.namedTupleNoTypes');
|
399
|
+
Diagnostic.namedTupleSecondArg = () => getRawString('Diagnostic.namedTupleSecondArg');
|
400
|
+
Diagnostic.newClsParam = () => getRawString('Diagnostic.newClsParam');
|
401
|
+
Diagnostic.newTypeLiteral = () => getRawString('Diagnostic.newTypeLiteral');
|
402
|
+
Diagnostic.newTypeNotAClass = () => getRawString('Diagnostic.newTypeNotAClass');
|
403
|
+
Diagnostic.newTypeProtocolClass = () => getRawString('Diagnostic.newTypeProtocolClass');
|
404
|
+
Diagnostic.nonDefaultAfterDefault = () => getRawString('Diagnostic.nonDefaultAfterDefault');
|
405
|
+
Diagnostic.noneNotCallable = () => getRawString('Diagnostic.noneNotCallable');
|
406
|
+
Diagnostic.noneNotIterable = () => getRawString('Diagnostic.noneNotIterable');
|
407
|
+
Diagnostic.noneNotSubscriptable = () => getRawString('Diagnostic.noneNotSubscriptable');
|
408
|
+
Diagnostic.noneNotUsableWith = () => getRawString('Diagnostic.noneNotUsableWith');
|
409
|
+
Diagnostic.noneOperator = () => new ParameterizedString(getRawString('Diagnostic.noneOperator'));
|
410
|
+
Diagnostic.noneUnknownMember = () => new ParameterizedString(getRawString('Diagnostic.noneUnknownMember'));
|
411
|
+
Diagnostic.nonLocalNoBinding = () => new ParameterizedString(getRawString('Diagnostic.nonLocalNoBinding'));
|
412
|
+
Diagnostic.nonLocalReassignment = () => new ParameterizedString(getRawString('Diagnostic.nonLocalReassignment'));
|
413
|
+
Diagnostic.nonLocalRedefinition = () => new ParameterizedString(getRawString('Diagnostic.nonLocalRedefinition'));
|
414
|
+
Diagnostic.nonLocalInModule = () => getRawString('Diagnostic.nonLocalInModule');
|
415
|
+
Diagnostic.noOverload = () => new ParameterizedString(getRawString('Diagnostic.noOverload'));
|
416
|
+
Diagnostic.noReturnContainsReturn = () => getRawString('Diagnostic.noReturnContainsReturn');
|
417
|
+
Diagnostic.noReturnContainsYield = () => getRawString('Diagnostic.noReturnContainsYield');
|
418
|
+
Diagnostic.noReturnReturnsNone = () => getRawString('Diagnostic.noReturnReturnsNone');
|
419
|
+
Diagnostic.notRequiredArgCount = () => getRawString('Diagnostic.notRequiredArgCount');
|
420
|
+
Diagnostic.notRequiredNotInTypedDict = () => getRawString('Diagnostic.notRequiredNotInTypedDict');
|
421
|
+
Diagnostic.objectNotCallable = () => new ParameterizedString(getRawString('Diagnostic.objectNotCallable'));
|
422
|
+
Diagnostic.obscuredClassDeclaration = () => new ParameterizedString(getRawString('Diagnostic.obscuredClassDeclaration'));
|
423
|
+
Diagnostic.obscuredFunctionDeclaration = () => new ParameterizedString(getRawString('Diagnostic.obscuredFunctionDeclaration'));
|
424
|
+
Diagnostic.obscuredMethodDeclaration = () => new ParameterizedString(getRawString('Diagnostic.obscuredMethodDeclaration'));
|
425
|
+
Diagnostic.obscuredParameterDeclaration = () => new ParameterizedString(getRawString('Diagnostic.obscuredParameterDeclaration'));
|
426
|
+
Diagnostic.obscuredVariableDeclaration = () => new ParameterizedString(getRawString('Diagnostic.obscuredVariableDeclaration'));
|
427
|
+
Diagnostic.operatorLessOrGreaterDeprecated = () => getRawString('Diagnostic.operatorLessOrGreaterDeprecated');
|
428
|
+
Diagnostic.optionalExtraArgs = () => getRawString('Diagnostic.optionalExtraArgs');
|
429
|
+
Diagnostic.orPatternIrrefutable = () => getRawString('Diagnostic.orPatternIrrefutable');
|
430
|
+
Diagnostic.orPatternMissingName = () => getRawString('Diagnostic.orPatternMissingName');
|
431
|
+
Diagnostic.overlappingOverload = () => new ParameterizedString(getRawString('Diagnostic.overlappingOverload'));
|
432
|
+
Diagnostic.overloadAbstractMismatch = () => new ParameterizedString(getRawString('Diagnostic.overloadAbstractMismatch'));
|
433
|
+
Diagnostic.overloadImplementationMismatch = () => new ParameterizedString(getRawString('Diagnostic.overloadImplementationMismatch'));
|
434
|
+
Diagnostic.overloadReturnTypeMismatch = () => new ParameterizedString(getRawString('Diagnostic.overloadReturnTypeMismatch'));
|
435
|
+
Diagnostic.overloadWithImplementation = () => new ParameterizedString(getRawString('Diagnostic.overloadWithImplementation'));
|
436
|
+
Diagnostic.overloadWithoutImplementation = () => new ParameterizedString(getRawString('Diagnostic.overloadWithoutImplementation'));
|
437
|
+
Diagnostic.paramAfterKwargsParam = () => getRawString('Diagnostic.paramAfterKwargsParam');
|
438
|
+
Diagnostic.paramAlreadyAssigned = () => new ParameterizedString(getRawString('Diagnostic.paramAlreadyAssigned'));
|
439
|
+
Diagnostic.paramAnnotationMissing = () => new ParameterizedString(getRawString('Diagnostic.paramAnnotationMissing'));
|
440
|
+
Diagnostic.paramNameMissing = () => new ParameterizedString(getRawString('Diagnostic.paramNameMissing'));
|
441
|
+
Diagnostic.paramSpecArgsKwargsUsage = () => getRawString('Diagnostic.paramSpecArgsKwargsUsage');
|
442
|
+
Diagnostic.paramSpecArgsMissing = () => new ParameterizedString(getRawString('Diagnostic.paramSpecArgsMissing'));
|
443
|
+
Diagnostic.paramSpecArgsUsage = () => getRawString('Diagnostic.paramSpecArgsUsage');
|
444
|
+
Diagnostic.paramSpecAssignedName = () => new ParameterizedString(getRawString('Diagnostic.paramSpecAssignedName'));
|
445
|
+
Diagnostic.paramSpecContext = () => getRawString('Diagnostic.paramSpecContext');
|
446
|
+
Diagnostic.paramSpecFirstArg = () => getRawString('Diagnostic.paramSpecFirstArg');
|
447
|
+
Diagnostic.paramSpecKwargsUsage = () => getRawString('Diagnostic.paramSpecKwargsUsage');
|
448
|
+
Diagnostic.paramSpecNotBound = () => new ParameterizedString(getRawString('Diagnostic.paramSpecNotBound'));
|
449
|
+
Diagnostic.paramSpecNotUsedByOuterScope = () => new ParameterizedString(getRawString('Diagnostic.paramSpecNotUsedByOuterScope'));
|
450
|
+
Diagnostic.paramSpecUnknownArg = () => getRawString('Diagnostic.paramSpecUnknownArg');
|
451
|
+
Diagnostic.paramSpecUnknownMember = () => new ParameterizedString(getRawString('Diagnostic.paramSpecUnknownMember'));
|
452
|
+
Diagnostic.paramSpecUnknownParam = () => new ParameterizedString(getRawString('Diagnostic.paramSpecUnknownParam'));
|
453
|
+
Diagnostic.paramTypeCovariant = () => getRawString('Diagnostic.paramTypeCovariant');
|
454
|
+
Diagnostic.paramTypeUnknown = () => new ParameterizedString(getRawString('Diagnostic.paramTypeUnknown'));
|
455
|
+
Diagnostic.paramAssignmentMismatch = () => new ParameterizedString(getRawString('Diagnostic.paramAssignmentMismatch'));
|
456
|
+
Diagnostic.paramTypePartiallyUnknown = () => new ParameterizedString(getRawString('Diagnostic.paramTypePartiallyUnknown'));
|
457
|
+
Diagnostic.parenthesizedContextManagerIllegal = () => getRawString('Diagnostic.parenthesizedContextManagerIllegal');
|
458
|
+
Diagnostic.positionArgAfterNamedArg = () => getRawString('Diagnostic.positionArgAfterNamedArg');
|
459
|
+
Diagnostic.privateImportFromPyTypedModule = () => new ParameterizedString(getRawString('Diagnostic.privateImportFromPyTypedModule'));
|
460
|
+
Diagnostic.positionOnlyAfterArgs = () => getRawString('Diagnostic.positionOnlyAfterArgs');
|
461
|
+
Diagnostic.positionOnlyAfterKeywordOnly = () => getRawString('Diagnostic.positionOnlyAfterKeywordOnly');
|
462
|
+
Diagnostic.positionOnlyIncompatible = () => getRawString('Diagnostic.positionOnlyIncompatible');
|
463
|
+
Diagnostic.positionOnlyFirstParam = () => getRawString('Diagnostic.positionOnlyFirstParam');
|
464
|
+
Diagnostic.privateUsedOutsideOfClass = () => new ParameterizedString(getRawString('Diagnostic.privateUsedOutsideOfClass'));
|
465
|
+
Diagnostic.privateUsedOutsideOfModule = () => new ParameterizedString(getRawString('Diagnostic.privateUsedOutsideOfModule'));
|
466
|
+
Diagnostic.propertyOverridden = () => new ParameterizedString(getRawString('Diagnostic.propertyOverridden'));
|
467
|
+
Diagnostic.propertyStaticMethod = () => getRawString('Diagnostic.propertyStaticMethod');
|
468
|
+
Diagnostic.protectedUsedOutsideOfClass = () => new ParameterizedString(getRawString('Diagnostic.protectedUsedOutsideOfClass'));
|
469
|
+
Diagnostic.protocolBaseClass = () => new ParameterizedString(getRawString('Diagnostic.protocolBaseClass'));
|
470
|
+
Diagnostic.protocolIllegal = () => getRawString('Diagnostic.protocolIllegal');
|
471
|
+
Diagnostic.protocolMemberNotClassVar = () => new ParameterizedString(getRawString('Diagnostic.protocolMemberNotClassVar'));
|
472
|
+
Diagnostic.protocolNotAllowedInTypeArgument = () => getRawString('Diagnostic.protocolNotAllowedInTypeArgument');
|
473
|
+
Diagnostic.protocolUsedInCall = () => new ParameterizedString(getRawString('Diagnostic.protocolUsedInCall'));
|
474
|
+
Diagnostic.protocolVarianceContravariant = () => new ParameterizedString(getRawString('Diagnostic.protocolVarianceContravariant'));
|
475
|
+
Diagnostic.protocolVarianceCovariant = () => new ParameterizedString(getRawString('Diagnostic.protocolVarianceCovariant'));
|
476
|
+
Diagnostic.protocolVarianceInvariant = () => new ParameterizedString(getRawString('Diagnostic.protocolVarianceInvariant'));
|
477
|
+
Diagnostic.recursiveDefinition = () => new ParameterizedString(getRawString('Diagnostic.recursiveDefinition'));
|
478
|
+
Diagnostic.relativeImportNotAllowed = () => getRawString('Diagnostic.relativeImportNotAllowed');
|
479
|
+
Diagnostic.requiredArgCount = () => getRawString('Diagnostic.requiredArgCount');
|
480
|
+
Diagnostic.requiredNotInTypedDict = () => getRawString('Diagnostic.requiredNotInTypedDict');
|
481
|
+
Diagnostic.returnMissing = () => new ParameterizedString(getRawString('Diagnostic.returnMissing'));
|
482
|
+
Diagnostic.returnOutsideFunction = () => getRawString('Diagnostic.returnOutsideFunction');
|
483
|
+
Diagnostic.returnTypeContravariant = () => getRawString('Diagnostic.returnTypeContravariant');
|
484
|
+
Diagnostic.returnTypeMismatch = () => new ParameterizedString(getRawString('Diagnostic.returnTypeMismatch'));
|
485
|
+
Diagnostic.returnTypeUnknown = () => getRawString('Diagnostic.returnTypeUnknown');
|
486
|
+
Diagnostic.returnTypePartiallyUnknown = () => new ParameterizedString(getRawString('Diagnostic.returnTypePartiallyUnknown'));
|
487
|
+
Diagnostic.revealLocalsArgs = () => getRawString('Diagnostic.revealLocalsArgs');
|
488
|
+
Diagnostic.revealLocalsNone = () => getRawString('Diagnostic.revealLocalsNone');
|
489
|
+
Diagnostic.revealTypeArgs = () => getRawString('Diagnostic.revealTypeArgs');
|
490
|
+
Diagnostic.revealTypeExpectedTextArg = () => getRawString('Diagnostic.revealTypeExpectedTextArg');
|
491
|
+
Diagnostic.revealTypeExpectedTextMismatch = () => new ParameterizedString(getRawString('Diagnostic.revealTypeExpectedTextMismatch'));
|
492
|
+
Diagnostic.revealTypeExpectedTypeMismatch = () => new ParameterizedString(getRawString('Diagnostic.revealTypeExpectedTypeMismatch'));
|
493
|
+
Diagnostic.selfTypeContext = () => getRawString('Diagnostic.selfTypeContext');
|
494
|
+
Diagnostic.selfTypeWithTypedSelfOrCls = () => getRawString('Diagnostic.selfTypeWithTypedSelfOrCls');
|
495
|
+
Diagnostic.setterGetterTypeMismatch = () => getRawString('Diagnostic.setterGetterTypeMismatch');
|
496
|
+
Diagnostic.starPatternInAsPattern = () => getRawString('Diagnostic.starPatternInAsPattern');
|
497
|
+
Diagnostic.starPatternInOrPattern = () => getRawString('Diagnostic.starPatternInOrPattern');
|
498
|
+
Diagnostic.singleOverload = () => new ParameterizedString(getRawString('Diagnostic.singleOverload'));
|
499
|
+
Diagnostic.slotsAttributeError = () => new ParameterizedString(getRawString('Diagnostic.slotsAttributeError'));
|
500
|
+
Diagnostic.slotsClassVarConflict = () => new ParameterizedString(getRawString('Diagnostic.slotsClassVarConflict'));
|
501
|
+
Diagnostic.starStarWildcardNotAllowed = () => getRawString('Diagnostic.starStarWildcardNotAllowed');
|
502
|
+
Diagnostic.staticClsSelfParam = () => getRawString('Diagnostic.staticClsSelfParam');
|
503
|
+
Diagnostic.strictTypeGuardReturnType = () => new ParameterizedString(getRawString('Diagnostic.strictTypeGuardReturnType'));
|
504
|
+
Diagnostic.stringNonAsciiBytes = () => getRawString('Diagnostic.stringNonAsciiBytes');
|
505
|
+
Diagnostic.stringNotSubscriptable = () => getRawString('Diagnostic.stringNotSubscriptable');
|
506
|
+
Diagnostic.stringUnsupportedEscape = () => getRawString('Diagnostic.stringUnsupportedEscape');
|
507
|
+
Diagnostic.stringUnterminated = () => getRawString('Diagnostic.stringUnterminated');
|
508
|
+
Diagnostic.stubFileMissing = () => new ParameterizedString(getRawString('Diagnostic.stubFileMissing'));
|
509
|
+
Diagnostic.stubUsesGetAttr = () => getRawString('Diagnostic.stubUsesGetAttr');
|
510
|
+
Diagnostic.sublistParamsIncompatible = () => getRawString('Diagnostic.sublistParamsIncompatible');
|
511
|
+
Diagnostic.superCallArgCount = () => getRawString('Diagnostic.superCallArgCount');
|
512
|
+
Diagnostic.superCallFirstArg = () => new ParameterizedString(getRawString('Diagnostic.superCallFirstArg'));
|
513
|
+
Diagnostic.superCallSecondArg = () => new ParameterizedString(getRawString('Diagnostic.superCallSecondArg'));
|
514
|
+
Diagnostic.superCallZeroArgForm = () => getRawString('Diagnostic.superCallZeroArgForm');
|
515
|
+
Diagnostic.symbolIsUnbound = () => new ParameterizedString(getRawString('Diagnostic.symbolIsUnbound'));
|
516
|
+
Diagnostic.symbolIsUndefined = () => new ParameterizedString(getRawString('Diagnostic.symbolIsUndefined'));
|
517
|
+
Diagnostic.symbolIsPossiblyUnbound = () => new ParameterizedString(getRawString('Diagnostic.symbolIsPossiblyUnbound'));
|
518
|
+
Diagnostic.symbolOverridden = () => new ParameterizedString(getRawString('Diagnostic.symbolOverridden'));
|
519
|
+
Diagnostic.totalOrderingMissingMethod = () => getRawString('Diagnostic.totalOrderingMissingMethod');
|
520
|
+
Diagnostic.trailingCommaInFromImport = () => getRawString('Diagnostic.trailingCommaInFromImport');
|
521
|
+
Diagnostic.tryWithoutExcept = () => getRawString('Diagnostic.tryWithoutExcept');
|
522
|
+
Diagnostic.tupleAssignmentMismatch = () => new ParameterizedString(getRawString('Diagnostic.tupleAssignmentMismatch'));
|
523
|
+
Diagnostic.tupleInAnnotation = () => getRawString('Diagnostic.tupleInAnnotation');
|
524
|
+
Diagnostic.tupleIndexOutOfRange = () => new ParameterizedString(getRawString('Diagnostic.tupleIndexOutOfRange'));
|
525
|
+
Diagnostic.typeAliasIsRecursiveDirect = () => new ParameterizedString(getRawString('Diagnostic.typeAliasIsRecursiveDirect'));
|
526
|
+
Diagnostic.typeAliasIsRecursiveIndirect = () => new ParameterizedString(getRawString('Diagnostic.typeAliasIsRecursiveIndirect'));
|
527
|
+
Diagnostic.typeAliasNotInModuleOrClass = () => getRawString('Diagnostic.typeAliasNotInModuleOrClass');
|
528
|
+
Diagnostic.typeAliasRedeclared = () => new ParameterizedString(getRawString('Diagnostic.typeAliasRedeclared'));
|
529
|
+
Diagnostic.typeAnnotationCall = () => getRawString('Diagnostic.typeAnnotationCall');
|
530
|
+
Diagnostic.typeAnnotationVariable = () => getRawString('Diagnostic.typeAnnotationVariable');
|
531
|
+
Diagnostic.typeArgListExpected = () => getRawString('Diagnostic.typeArgListExpected');
|
532
|
+
Diagnostic.typeArgListNotAllowed = () => getRawString('Diagnostic.typeArgListNotAllowed');
|
533
|
+
Diagnostic.typeArgsExpectingNone = () => new ParameterizedString(getRawString('Diagnostic.typeArgsExpectingNone'));
|
534
|
+
Diagnostic.typeArgsMismatchOne = () => new ParameterizedString(getRawString('Diagnostic.typeArgsMismatchOne'));
|
535
|
+
Diagnostic.typeArgsMissingForAlias = () => new ParameterizedString(getRawString('Diagnostic.typeArgsMissingForAlias'));
|
536
|
+
Diagnostic.typeArgsMissingForClass = () => new ParameterizedString(getRawString('Diagnostic.typeArgsMissingForClass'));
|
537
|
+
Diagnostic.typeArgsTooFew = () => new ParameterizedString(getRawString('Diagnostic.typeArgsTooFew'));
|
538
|
+
Diagnostic.typeArgsTooMany = () => new ParameterizedString(getRawString('Diagnostic.typeArgsTooMany'));
|
539
|
+
Diagnostic.typeAssignmentMismatch = () => new ParameterizedString(getRawString('Diagnostic.typeAssignmentMismatch'));
|
540
|
+
Diagnostic.typeCallNotAllowed = () => getRawString('Diagnostic.typeCallNotAllowed');
|
541
|
+
Diagnostic.typeCommentDeprecated = () => getRawString('Diagnostic.typeCommentDeprecated');
|
542
|
+
Diagnostic.typedDictAccess = () => getRawString('Diagnostic.typedDictAccess');
|
543
|
+
Diagnostic.typedDictBadVar = () => getRawString('Diagnostic.typedDictBadVar');
|
544
|
+
Diagnostic.typedDictBaseClass = () => getRawString('Diagnostic.typedDictBaseClass');
|
545
|
+
Diagnostic.typedDictDelete = () => getRawString('Diagnostic.typedDictDelete');
|
546
|
+
Diagnostic.typedDictEmptyName = () => getRawString('Diagnostic.typedDictEmptyName');
|
547
|
+
Diagnostic.typedDictEntryName = () => getRawString('Diagnostic.typedDictEntryName');
|
548
|
+
Diagnostic.typedDictEntryUnique = () => getRawString('Diagnostic.typedDictEntryUnique');
|
549
|
+
Diagnostic.typedDictExtraArgs = () => getRawString('Diagnostic.typedDictExtraArgs');
|
550
|
+
Diagnostic.typedDictFieldRedefinition = () => new ParameterizedString(getRawString('Diagnostic.typedDictFieldRedefinition'));
|
551
|
+
Diagnostic.typedDictFirstArg = () => getRawString('Diagnostic.typedDictFirstArg');
|
552
|
+
Diagnostic.typedDictSecondArgDict = () => getRawString('Diagnostic.typedDictSecondArgDict');
|
553
|
+
Diagnostic.typedDictSecondArgDictEntry = () => getRawString('Diagnostic.typedDictSecondArgDictEntry');
|
554
|
+
Diagnostic.typedDictSet = () => getRawString('Diagnostic.typedDictSet');
|
555
|
+
Diagnostic.typedDictTotalParam = () => getRawString('Diagnostic.typedDictTotalParam');
|
556
|
+
Diagnostic.typeExpectedClass = () => new ParameterizedString(getRawString('Diagnostic.typeExpectedClass'));
|
557
|
+
Diagnostic.typeGuardArgCount = () => getRawString('Diagnostic.typeGuardArgCount');
|
558
|
+
Diagnostic.typeNotAwaitable = () => new ParameterizedString(getRawString('Diagnostic.typeNotAwaitable'));
|
559
|
+
Diagnostic.typeNotCallable = () => new ParameterizedString(getRawString('Diagnostic.typeNotCallable'));
|
560
|
+
Diagnostic.typeNotIntantiable = () => new ParameterizedString(getRawString('Diagnostic.typeNotIntantiable'));
|
561
|
+
Diagnostic.typeNotIterable = () => new ParameterizedString(getRawString('Diagnostic.typeNotIterable'));
|
562
|
+
Diagnostic.typeNotSpecializable = () => new ParameterizedString(getRawString('Diagnostic.typeNotSpecializable'));
|
563
|
+
Diagnostic.typeNotSubscriptable = () => new ParameterizedString(getRawString('Diagnostic.typeNotSubscriptable'));
|
564
|
+
Diagnostic.typeNotUsableWith = () => new ParameterizedString(getRawString('Diagnostic.typeNotUsableWith'));
|
565
|
+
Diagnostic.typeNotSupportBinaryOperator = () => new ParameterizedString(getRawString('Diagnostic.typeNotSupportBinaryOperator'));
|
566
|
+
Diagnostic.typeNotSupportBinaryOperatorBidirectional = () => new ParameterizedString(getRawString('Diagnostic.typeNotSupportBinaryOperatorBidirectional'));
|
567
|
+
Diagnostic.typeNotSupportUnaryOperator = () => new ParameterizedString(getRawString('Diagnostic.typeNotSupportUnaryOperator'));
|
568
|
+
Diagnostic.typeNotSupportUnaryOperatorBidirectional = () => new ParameterizedString(getRawString('Diagnostic.typeNotSupportUnaryOperatorBidirectional'));
|
569
|
+
Diagnostic.typePartiallyUnknown = () => new ParameterizedString(getRawString('Diagnostic.typePartiallyUnknown'));
|
570
|
+
Diagnostic.typeUnknown = () => new ParameterizedString(getRawString('Diagnostic.typeUnknown'));
|
571
|
+
Diagnostic.typeVarAssignedName = () => new ParameterizedString(getRawString('Diagnostic.typeVarAssignedName'));
|
572
|
+
Diagnostic.typeVarAssignmentMismatch = () => new ParameterizedString(getRawString('Diagnostic.typeVarAssignmentMismatch'));
|
573
|
+
Diagnostic.typeVarBoundAndConstrained = () => getRawString('Diagnostic.typeVarBoundAndConstrained');
|
574
|
+
Diagnostic.typeVarFirstArg = () => getRawString('Diagnostic.typeVarFirstArg');
|
575
|
+
Diagnostic.typeVarGeneric = () => getRawString('Diagnostic.typeVarGeneric');
|
576
|
+
Diagnostic.typeVarNoMember = () => new ParameterizedString(getRawString('Diagnostic.typeVarNoMember'));
|
577
|
+
Diagnostic.typeVarNotSubscriptable = () => new ParameterizedString(getRawString('Diagnostic.typeVarNotSubscriptable'));
|
578
|
+
Diagnostic.typeVarNotUsedByOuterScope = () => new ParameterizedString(getRawString('Diagnostic.typeVarNotUsedByOuterScope'));
|
579
|
+
Diagnostic.typeVarPossiblyUnsolvable = () => new ParameterizedString(getRawString('Diagnostic.typeVarPossiblyUnsolvable'));
|
580
|
+
Diagnostic.typeVarSingleConstraint = () => getRawString('Diagnostic.typeVarSingleConstraint');
|
581
|
+
Diagnostic.typeVarsNotInGenericOrProtocol = () => getRawString('Diagnostic.typeVarsNotInGenericOrProtocol');
|
582
|
+
Diagnostic.typeVarTupleMustBeUnpacked = () => getRawString('Diagnostic.typeVarTupleMustBeUnpacked');
|
583
|
+
Diagnostic.typeVarTupleContext = () => getRawString('Diagnostic.typeVarTupleContext');
|
584
|
+
Diagnostic.typeVarUnknownParam = () => new ParameterizedString(getRawString('Diagnostic.typeVarUnknownParam'));
|
585
|
+
Diagnostic.typeVarUsedByOuterScope = () => new ParameterizedString(getRawString('Diagnostic.typeVarUsedByOuterScope'));
|
586
|
+
Diagnostic.typeVarUsedOnlyOnce = () => new ParameterizedString(getRawString('Diagnostic.typeVarUsedOnlyOnce'));
|
587
|
+
Diagnostic.typeVarVariance = () => getRawString('Diagnostic.typeVarVariance');
|
588
|
+
Diagnostic.unaccessedClass = () => new ParameterizedString(getRawString('Diagnostic.unaccessedClass'));
|
589
|
+
Diagnostic.unaccessedFunction = () => new ParameterizedString(getRawString('Diagnostic.unaccessedFunction'));
|
590
|
+
Diagnostic.unaccessedImport = () => new ParameterizedString(getRawString('Diagnostic.unaccessedImport'));
|
591
|
+
Diagnostic.unaccessedSymbol = () => new ParameterizedString(getRawString('Diagnostic.unaccessedSymbol'));
|
592
|
+
Diagnostic.unaccessedVariable = () => new ParameterizedString(getRawString('Diagnostic.unaccessedVariable'));
|
593
|
+
Diagnostic.unexpectedAsyncToken = () => getRawString('Diagnostic.unexpectedAsyncToken');
|
594
|
+
Diagnostic.unexpectedExprToken = () => getRawString('Diagnostic.unexpectedExprToken');
|
595
|
+
Diagnostic.unexpectedIndent = () => getRawString('Diagnostic.unexpectedIndent');
|
596
|
+
Diagnostic.unexpectedUnindent = () => getRawString('Diagnostic.unexpectedUnindent');
|
597
|
+
Diagnostic.unionSyntaxIllegal = () => getRawString('Diagnostic.unionSyntaxIllegal');
|
598
|
+
Diagnostic.unionTypeArgCount = () => getRawString('Diagnostic.unionTypeArgCount');
|
599
|
+
Diagnostic.uninitializedInstanceVariable = () => new ParameterizedString(getRawString('Diagnostic.uninitializedInstanceVariable'));
|
600
|
+
Diagnostic.unnecessaryCast = () => new ParameterizedString(getRawString('Diagnostic.unnecessaryCast'));
|
601
|
+
Diagnostic.unnecessaryIsInstanceAlways = () => new ParameterizedString(getRawString('Diagnostic.unnecessaryIsInstanceAlways'));
|
602
|
+
Diagnostic.unnecessaryIsSubclassAlways = () => new ParameterizedString(getRawString('Diagnostic.unnecessaryIsSubclassAlways'));
|
603
|
+
Diagnostic.unnecessaryPyrightIgnore = () => getRawString('Diagnostic.unnecessaryPyrightIgnore');
|
604
|
+
Diagnostic.unnecessaryPyrightIgnoreRule = () => new ParameterizedString(getRawString('Diagnostic.unnecessaryPyrightIgnoreRule'));
|
605
|
+
Diagnostic.unnecessaryTypeIgnore = () => getRawString('Diagnostic.unnecessaryTypeIgnore');
|
606
|
+
Diagnostic.unpackArgCount = () => getRawString('Diagnostic.unpackArgCount');
|
607
|
+
Diagnostic.unpackedArgInTypeArgument = () => getRawString('Diagnostic.unpackedArgInTypeArgument');
|
608
|
+
Diagnostic.unpackedArgWithVariadicParam = () => getRawString('Diagnostic.unpackedArgWithVariadicParam');
|
609
|
+
Diagnostic.unpackedDictArgumentNotMapping = () => getRawString('Diagnostic.unpackedDictArgumentNotMapping');
|
610
|
+
Diagnostic.unpackedSubscriptIllegal = () => getRawString('Diagnostic.unpackedSubscriptIllegal');
|
611
|
+
Diagnostic.unpackedTypedDictArgument = () => getRawString('Diagnostic.unpackedTypedDictArgument');
|
612
|
+
Diagnostic.unpackedTypeVarTupleExpected = () => new ParameterizedString(getRawString('Diagnostic.unpackedTypeVarTupleExpected'));
|
613
|
+
Diagnostic.unpackExpectedTypedDict = () => getRawString('Diagnostic.unpackExpectedTypedDict');
|
614
|
+
Diagnostic.unpackExpectedTypeVarTuple = () => getRawString('Diagnostic.unpackExpectedTypeVarTuple');
|
615
|
+
Diagnostic.unpackIllegalInComprehension = () => getRawString('Diagnostic.unpackIllegalInComprehension');
|
616
|
+
Diagnostic.unpackInAnnotation = () => getRawString('Diagnostic.unpackInAnnotation');
|
617
|
+
Diagnostic.unpackInDict = () => getRawString('Diagnostic.unpackInDict');
|
618
|
+
Diagnostic.unpackInSet = () => getRawString('Diagnostic.unpackInSet');
|
619
|
+
Diagnostic.unpackNotAllowed = () => getRawString('Diagnostic.unpackNotAllowed');
|
620
|
+
Diagnostic.unpackOperatorNotAllowed = () => getRawString('Diagnostic.unpackOperatorNotAllowed');
|
621
|
+
Diagnostic.unpackTuplesIllegal = () => getRawString('Diagnostic.unpackTuplesIllegal');
|
622
|
+
Diagnostic.unreachableCode = () => getRawString('Diagnostic.unreachableCode');
|
623
|
+
Diagnostic.unreachableExcept = () => getRawString('Diagnostic.unreachableExcept');
|
624
|
+
Diagnostic.unsupportedDunderAllOperation = () => getRawString('Diagnostic.unsupportedDunderAllOperation');
|
625
|
+
Diagnostic.unusedCallResult = () => new ParameterizedString(getRawString('Diagnostic.unusedCallResult'));
|
626
|
+
Diagnostic.unusedCoroutine = () => getRawString('Diagnostic.unusedCoroutine');
|
627
|
+
Diagnostic.unusedExpression = () => getRawString('Diagnostic.unusedExpression');
|
628
|
+
Diagnostic.varAnnotationIllegal = () => getRawString('Diagnostic.varAnnotationIllegal');
|
629
|
+
Diagnostic.variadicTypeArgsTooMany = () => getRawString('Diagnostic.variadicTypeArgsTooMany');
|
630
|
+
Diagnostic.variadicTypeParamTooManyAlias = () => new ParameterizedString(getRawString('Diagnostic.variadicTypeParamTooManyAlias'));
|
631
|
+
Diagnostic.variadicTypeParamTooManyClass = () => new ParameterizedString(getRawString('Diagnostic.variadicTypeParamTooManyClass'));
|
632
|
+
Diagnostic.walrusIllegal = () => getRawString('Diagnostic.walrusIllegal');
|
633
|
+
Diagnostic.walrusNotAllowed = () => getRawString('Diagnostic.walrusNotAllowed');
|
634
|
+
Diagnostic.wildcardInFunction = () => getRawString('Diagnostic.wildcardInFunction');
|
635
|
+
Diagnostic.wildcardLibraryImport = () => getRawString('Diagnostic.wildcardLibraryImport');
|
636
|
+
Diagnostic.yieldFromIllegal = () => getRawString('Diagnostic.yieldFromIllegal');
|
637
|
+
Diagnostic.yieldFromOutsideAsync = () => getRawString('Diagnostic.yieldFromOutsideAsync');
|
638
|
+
Diagnostic.yieldOutsideFunction = () => getRawString('Diagnostic.yieldOutsideFunction');
|
639
|
+
Diagnostic.yieldTypeMismatch = () => new ParameterizedString(getRawString('Diagnostic.yieldTypeMismatch'));
|
640
|
+
Diagnostic.yieldWithinListCompr = () => getRawString('Diagnostic.yieldWithinListCompr');
|
641
|
+
Diagnostic.zeroCaseStatementsFound = () => getRawString('Diagnostic.zeroCaseStatementsFound');
|
642
|
+
Diagnostic.zeroLengthTupleNotAllowed = () => getRawString('Diagnostic.zeroLengthTupleNotAllowed');
|
643
|
+
})(Diagnostic = Localizer.Diagnostic || (Localizer.Diagnostic = {}));
|
644
|
+
let DiagnosticAddendum;
|
645
|
+
(function (DiagnosticAddendum) {
|
646
|
+
DiagnosticAddendum.argParam = () => new ParameterizedString(getRawString('DiagnosticAddendum.argParam'));
|
647
|
+
DiagnosticAddendum.argParamFunction = () => new ParameterizedString(getRawString('DiagnosticAddendum.argParamFunction'));
|
648
|
+
DiagnosticAddendum.argsParamMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.argsParamMissing'));
|
649
|
+
DiagnosticAddendum.argsPositionOnly = () => new ParameterizedString(getRawString('DiagnosticAddendum.argsPositionOnly'));
|
650
|
+
DiagnosticAddendum.argumentType = () => new ParameterizedString(getRawString('DiagnosticAddendum.argumentType'));
|
651
|
+
DiagnosticAddendum.argumentTypes = () => new ParameterizedString(getRawString('DiagnosticAddendum.argumentTypes'));
|
652
|
+
DiagnosticAddendum.assignToNone = () => getRawString('DiagnosticAddendum.assignToNone');
|
653
|
+
DiagnosticAddendum.asyncHelp = () => getRawString('DiagnosticAddendum.asyncHelp');
|
654
|
+
DiagnosticAddendum.baseClassProvidesType = () => new ParameterizedString(getRawString('DiagnosticAddendum.baseClassProvidesType'));
|
655
|
+
DiagnosticAddendum.dataClassFrozen = () => new ParameterizedString(getRawString('DiagnosticAddendum.dataClassFrozen'));
|
656
|
+
DiagnosticAddendum.dataClassFieldLocation = () => getRawString('DiagnosticAddendum.dataClassFieldLocation');
|
657
|
+
DiagnosticAddendum.finalMethod = () => getRawString('DiagnosticAddendum.finalMethod');
|
658
|
+
DiagnosticAddendum.functionParamDefaultMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.functionParamDefaultMissing'));
|
659
|
+
DiagnosticAddendum.functionParamName = () => new ParameterizedString(getRawString('DiagnosticAddendum.functionParamName'));
|
660
|
+
DiagnosticAddendum.functionReturnTypeMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.functionReturnTypeMismatch'));
|
661
|
+
DiagnosticAddendum.functionTooFewParams = () => new ParameterizedString(getRawString('DiagnosticAddendum.functionTooFewParams'));
|
662
|
+
DiagnosticAddendum.incompatibleGetter = () => getRawString('DiagnosticAddendum.incompatibleGetter');
|
663
|
+
DiagnosticAddendum.incompatibleSetter = () => getRawString('DiagnosticAddendum.incompatibleSetter');
|
664
|
+
DiagnosticAddendum.incompatibleDeleter = () => getRawString('DiagnosticAddendum.incompatibleDeleter');
|
665
|
+
DiagnosticAddendum.initMethodLocation = () => new ParameterizedString(getRawString('DiagnosticAddendum.initMethodLocation'));
|
666
|
+
DiagnosticAddendum.initMethodSignature = () => new ParameterizedString(getRawString('DiagnosticAddendum.initMethodSignature'));
|
667
|
+
DiagnosticAddendum.functionTooManyParams = () => new ParameterizedString(getRawString('DiagnosticAddendum.functionTooManyParams'));
|
668
|
+
DiagnosticAddendum.keyNotRequired = () => new ParameterizedString(getRawString('DiagnosticAddendum.keyNotRequired'));
|
669
|
+
DiagnosticAddendum.keyRequiredDeleted = () => new ParameterizedString(getRawString('DiagnosticAddendum.keyRequiredDeleted'));
|
670
|
+
DiagnosticAddendum.keyUndefined = () => new ParameterizedString(getRawString('DiagnosticAddendum.keyUndefined'));
|
671
|
+
DiagnosticAddendum.kwargsParamMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.kwargsParamMissing'));
|
672
|
+
DiagnosticAddendum.listAssignmentMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.listAssignmentMismatch'));
|
673
|
+
DiagnosticAddendum.literalAssignmentMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.literalAssignmentMismatch'));
|
674
|
+
DiagnosticAddendum.matchIsNotExhaustiveType = () => new ParameterizedString(getRawString('DiagnosticAddendum.matchIsNotExhaustiveType'));
|
675
|
+
DiagnosticAddendum.matchIsNotExhaustiveHint = () => getRawString('DiagnosticAddendum.matchIsNotExhaustiveHint');
|
676
|
+
DiagnosticAddendum.memberAssignment = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberAssignment'));
|
677
|
+
DiagnosticAddendum.memberIsAbstract = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberIsAbstract'));
|
678
|
+
DiagnosticAddendum.memberIsAbstractMore = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberIsAbstractMore'));
|
679
|
+
DiagnosticAddendum.memberIsFinalInProtocol = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberIsFinalInProtocol'));
|
680
|
+
DiagnosticAddendum.memberIsInitVar = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberIsInitVar'));
|
681
|
+
DiagnosticAddendum.memberIsInvariant = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberIsInvariant'));
|
682
|
+
DiagnosticAddendum.memberIsNotFinalInProtocol = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberIsNotFinalInProtocol'));
|
683
|
+
DiagnosticAddendum.memberSetClassVar = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberSetClassVar'));
|
684
|
+
DiagnosticAddendum.memberTypeMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberTypeMismatch'));
|
685
|
+
DiagnosticAddendum.memberUnknown = () => new ParameterizedString(getRawString('DiagnosticAddendum.memberUnknown'));
|
686
|
+
DiagnosticAddendum.missingProtocolMember = () => new ParameterizedString(getRawString('DiagnosticAddendum.missingProtocolMember'));
|
687
|
+
DiagnosticAddendum.missingGetter = () => getRawString('DiagnosticAddendum.missingGetter');
|
688
|
+
DiagnosticAddendum.missingSetter = () => getRawString('DiagnosticAddendum.missingSetter');
|
689
|
+
DiagnosticAddendum.missingDeleter = () => getRawString('DiagnosticAddendum.missingDeleter');
|
690
|
+
DiagnosticAddendum.namedParamMissingInDest = () => new ParameterizedString(getRawString('DiagnosticAddendum.namedParamMissingInDest'));
|
691
|
+
DiagnosticAddendum.namedParamMissingInSource = () => new ParameterizedString(getRawString('DiagnosticAddendum.namedParamMissingInSource'));
|
692
|
+
DiagnosticAddendum.namedParamTypeMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.namedParamTypeMismatch'));
|
693
|
+
DiagnosticAddendum.newMethodLocation = () => new ParameterizedString(getRawString('DiagnosticAddendum.newMethodLocation'));
|
694
|
+
DiagnosticAddendum.newMethodSignature = () => new ParameterizedString(getRawString('DiagnosticAddendum.newMethodSignature'));
|
695
|
+
DiagnosticAddendum.noOverloadAssignable = () => new ParameterizedString(getRawString('DiagnosticAddendum.noOverloadAssignable'));
|
696
|
+
DiagnosticAddendum.orPatternMissingName = () => new ParameterizedString(getRawString('DiagnosticAddendum.orPatternMissingName'));
|
697
|
+
DiagnosticAddendum.overloadSignature = () => getRawString('DiagnosticAddendum.overloadSignature');
|
698
|
+
DiagnosticAddendum.overloadNotAssignable = () => new ParameterizedString(getRawString('DiagnosticAddendum.overloadNotAssignable'));
|
699
|
+
DiagnosticAddendum.overloadWithImplementation = () => getRawString('DiagnosticAddendum.overloadWithImplementation');
|
700
|
+
DiagnosticAddendum.overriddenMethod = () => getRawString('DiagnosticAddendum.overriddenMethod');
|
701
|
+
DiagnosticAddendum.overriddenSymbol = () => getRawString('DiagnosticAddendum.overriddenSymbol');
|
702
|
+
DiagnosticAddendum.overrideNotClassMethod = () => getRawString('DiagnosticAddendum.overrideNotClassMethod');
|
703
|
+
DiagnosticAddendum.overrideNotInstanceMethod = () => getRawString('DiagnosticAddendum.overrideNotInstanceMethod');
|
704
|
+
DiagnosticAddendum.overrideNotStaticMethod = () => getRawString('DiagnosticAddendum.overrideNotStaticMethod');
|
705
|
+
DiagnosticAddendum.overrideParamKeywordNoDefault = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamKeywordNoDefault'));
|
706
|
+
DiagnosticAddendum.overrideParamKeywordType = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamKeywordType'));
|
707
|
+
DiagnosticAddendum.overrideParamName = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamName'));
|
708
|
+
DiagnosticAddendum.overrideParamNameExtra = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamNameExtra'));
|
709
|
+
DiagnosticAddendum.overrideParamNameMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamNameMissing'));
|
710
|
+
DiagnosticAddendum.overrideParamNamePositionOnly = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamNamePositionOnly'));
|
711
|
+
DiagnosticAddendum.overrideParamNoDefault = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamNoDefault'));
|
712
|
+
DiagnosticAddendum.overrideParamType = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideParamType'));
|
713
|
+
DiagnosticAddendum.overridePositionalParamCount = () => new ParameterizedString(getRawString('DiagnosticAddendum.overridePositionalParamCount'));
|
714
|
+
DiagnosticAddendum.overrideReturnType = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideReturnType'));
|
715
|
+
DiagnosticAddendum.overrideType = () => new ParameterizedString(getRawString('DiagnosticAddendum.overrideType'));
|
716
|
+
DiagnosticAddendum.paramAssignment = () => new ParameterizedString(getRawString('DiagnosticAddendum.paramAssignment'));
|
717
|
+
DiagnosticAddendum.paramSpecOverload = () => getRawString('DiagnosticAddendum.paramSpecOverload');
|
718
|
+
DiagnosticAddendum.paramType = () => new ParameterizedString(getRawString('DiagnosticAddendum.paramType'));
|
719
|
+
DiagnosticAddendum.privateImportFromPyTypedSource = () => new ParameterizedString(getRawString('DiagnosticAddendum.privateImportFromPyTypedSource'));
|
720
|
+
DiagnosticAddendum.propertyAccessFromProtocolClass = () => getRawString('DiagnosticAddendum.propertyAccessFromProtocolClass');
|
721
|
+
DiagnosticAddendum.propertyMethodIncompatible = () => new ParameterizedString(getRawString('DiagnosticAddendum.propertyMethodIncompatible'));
|
722
|
+
DiagnosticAddendum.propertyMethodMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.propertyMethodMissing'));
|
723
|
+
DiagnosticAddendum.propertyMissingDeleter = () => new ParameterizedString(getRawString('DiagnosticAddendum.propertyMissingDeleter'));
|
724
|
+
DiagnosticAddendum.propertyMissingSetter = () => new ParameterizedString(getRawString('DiagnosticAddendum.propertyMissingSetter'));
|
725
|
+
DiagnosticAddendum.protocolMemberClassVar = () => new ParameterizedString(getRawString('DiagnosticAddendum.protocolMemberClassVar'));
|
726
|
+
DiagnosticAddendum.protocolIncompatible = () => new ParameterizedString(getRawString('DiagnosticAddendum.protocolIncompatible'));
|
727
|
+
DiagnosticAddendum.protocolMemberMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.protocolMemberMissing'));
|
728
|
+
DiagnosticAddendum.protocolSourceIsNotConcrete = () => new ParameterizedString(getRawString('DiagnosticAddendum.protocolSourceIsNotConcrete'));
|
729
|
+
DiagnosticAddendum.readOnlyAttribute = () => new ParameterizedString(getRawString('DiagnosticAddendum.readOnlyAttribute'));
|
730
|
+
DiagnosticAddendum.seeDeclaration = () => getRawString('DiagnosticAddendum.seeDeclaration');
|
731
|
+
DiagnosticAddendum.seeClassDeclaration = () => getRawString('DiagnosticAddendum.seeClassDeclaration');
|
732
|
+
DiagnosticAddendum.seeFunctionDeclaration = () => getRawString('DiagnosticAddendum.seeFunctionDeclaration');
|
733
|
+
DiagnosticAddendum.seeMethodDeclaration = () => getRawString('DiagnosticAddendum.seeMethodDeclaration');
|
734
|
+
DiagnosticAddendum.seeParameterDeclaration = () => getRawString('DiagnosticAddendum.seeParameterDeclaration');
|
735
|
+
DiagnosticAddendum.seeVariableDeclaration = () => getRawString('DiagnosticAddendum.seeVariableDeclaration');
|
736
|
+
DiagnosticAddendum.tupleEntryTypeMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.tupleEntryTypeMismatch'));
|
737
|
+
DiagnosticAddendum.tupleAssignmentMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.tupleAssignmentMismatch'));
|
738
|
+
DiagnosticAddendum.tupleSizeMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.tupleSizeMismatch'));
|
739
|
+
DiagnosticAddendum.tupleSizeMismatchIndeterminate = () => new ParameterizedString(getRawString('DiagnosticAddendum.tupleSizeMismatchIndeterminate'));
|
740
|
+
DiagnosticAddendum.typeAssignmentMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeAssignmentMismatch'));
|
741
|
+
DiagnosticAddendum.typeBound = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeBound'));
|
742
|
+
DiagnosticAddendum.typeConstrainedTypeVar = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeConstrainedTypeVar'));
|
743
|
+
DiagnosticAddendum.typedDictFieldMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.typedDictFieldMissing'));
|
744
|
+
DiagnosticAddendum.typedDictFieldNotRequired = () => new ParameterizedString(getRawString('DiagnosticAddendum.typedDictFieldNotRequired'));
|
745
|
+
DiagnosticAddendum.typedDictFieldRedefinition = () => new ParameterizedString(getRawString('DiagnosticAddendum.typedDictFieldRedefinition'));
|
746
|
+
DiagnosticAddendum.typedDictFieldRequired = () => new ParameterizedString(getRawString('DiagnosticAddendum.typedDictFieldRequired'));
|
747
|
+
DiagnosticAddendum.typedDictFieldTypeMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.typedDictFieldTypeMismatch'));
|
748
|
+
DiagnosticAddendum.typedDictFieldUndefined = () => new ParameterizedString(getRawString('DiagnosticAddendum.typedDictFieldUndefined'));
|
749
|
+
DiagnosticAddendum.typedDictFinalMismatch = () => new ParameterizedString(getRawString('DiagnosticAddendum.typedDictFinalMismatch'));
|
750
|
+
DiagnosticAddendum.typeIncompatible = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeIncompatible'));
|
751
|
+
DiagnosticAddendum.typeNotCallable = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeNotCallable'));
|
752
|
+
DiagnosticAddendum.typeNotClass = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeNotClass'));
|
753
|
+
DiagnosticAddendum.typeParamSpec = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeParamSpec'));
|
754
|
+
DiagnosticAddendum.typeNotStringLiteral = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeNotStringLiteral'));
|
755
|
+
DiagnosticAddendum.typeOfSymbol = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeOfSymbol'));
|
756
|
+
DiagnosticAddendum.typeUnsupported = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeUnsupported'));
|
757
|
+
DiagnosticAddendum.typeVarIsContravariant = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeVarIsContravariant'));
|
758
|
+
DiagnosticAddendum.typeVarIsCovariant = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeVarIsCovariant'));
|
759
|
+
DiagnosticAddendum.typeVarIsInvariant = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeVarIsInvariant'));
|
760
|
+
DiagnosticAddendum.typeVarTupleRequiresKnownLength = () => getRawString('DiagnosticAddendum.typeVarTupleRequiresKnownLength');
|
761
|
+
DiagnosticAddendum.typeVarNotAllowed = () => getRawString('DiagnosticAddendum.typeVarNotAllowed');
|
762
|
+
DiagnosticAddendum.typeVarsMissing = () => new ParameterizedString(getRawString('DiagnosticAddendum.typeVarsMissing'));
|
763
|
+
DiagnosticAddendum.typeVarUnsolvableRemedy = () => getRawString('DiagnosticAddendum.typeVarUnsolvableRemedy');
|
764
|
+
DiagnosticAddendum.unreachableExcept = () => new ParameterizedString(getRawString('DiagnosticAddendum.unreachableExcept'));
|
765
|
+
DiagnosticAddendum.useDictInstead = () => getRawString('DiagnosticAddendum.useDictInstead');
|
766
|
+
DiagnosticAddendum.useListInstead = () => getRawString('DiagnosticAddendum.useListInstead');
|
767
|
+
DiagnosticAddendum.useTupleInstead = () => getRawString('DiagnosticAddendum.useTupleInstead');
|
768
|
+
DiagnosticAddendum.useTypeInstead = () => getRawString('DiagnosticAddendum.useTypeInstead');
|
769
|
+
})(DiagnosticAddendum = Localizer.DiagnosticAddendum || (Localizer.DiagnosticAddendum = {}));
|
770
|
+
let CodeAction;
|
771
|
+
(function (CodeAction) {
|
772
|
+
CodeAction.addOptionalToAnnotation = () => getRawString('CodeAction.addOptionalToAnnotation');
|
773
|
+
CodeAction.createTypeStub = () => getRawString('CodeAction.createTypeStub');
|
774
|
+
CodeAction.createTypeStubFor = () => new ParameterizedString(getRawString('CodeAction.createTypeStubFor'));
|
775
|
+
CodeAction.executingCommand = () => getRawString('CodeAction.executingCommand');
|
776
|
+
CodeAction.filesToAnalyzeOne = () => getRawString('CodeAction.filesToAnalyzeOne');
|
777
|
+
CodeAction.filesToAnalyzeCount = () => new ParameterizedString(getRawString('CodeAction.filesToAnalyzeCount'));
|
778
|
+
CodeAction.findingReferences = () => getRawString('CodeAction.findingReferences');
|
779
|
+
CodeAction.organizeImports = () => getRawString('CodeAction.organizeImports');
|
780
|
+
})(CodeAction = Localizer.CodeAction || (Localizer.CodeAction = {}));
|
781
|
+
let Refactoring;
|
782
|
+
(function (Refactoring) {
|
783
|
+
Refactoring.moveFile = () => new ParameterizedString(getRawString('Refactoring.moveFile'));
|
784
|
+
Refactoring.moveFileLabel = () => new ParameterizedString(getRawString('Refactoring.moveFileLabel'));
|
785
|
+
Refactoring.moveFileDescription = () => new ParameterizedString(getRawString('Refactoring.moveFileDescription'));
|
786
|
+
})(Refactoring = Localizer.Refactoring || (Localizer.Refactoring = {}));
|
787
|
+
})(Localizer = exports.Localizer || (exports.Localizer = {}));
|
788
|
+
//# sourceMappingURL=localize.js.map
|