Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reject internal tag on private decls, strip comments from private decls in dtsBundler #58869

Merged
merged 4 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions scripts/dtsBundler.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ console.log(`Bundling ${entrypoint} to ${output} and ${internalOutput}`);
const newLineKind = ts.NewLineKind.LineFeed;
const newLine = newLineKind === ts.NewLineKind.LineFeed ? "\n" : "\r\n";

/**
* @param {ts.Node} node
*/
function removeAllComments(node) {
/** @type {any} */ (ts).removeAllComments(node);
}

/**
* @param {ts.VariableDeclaration} node
* @returns {ts.VariableStatement}
Expand Down Expand Up @@ -422,6 +429,15 @@ function emitAsNamespace(name, parent, moduleSymbol, needExportModifier) {
if (ts.isInternalDeclaration(node)) {
return undefined;
}
// TODO: remove after https://github.com/microsoft/TypeScript/pull/58187 is released
if (ts.canHaveModifiers(node)) {
for (const modifier of ts.getModifiers(node) ?? []) {
if (modifier.kind === ts.SyntaxKind.PrivateKeyword) {
removeAllComments(node);
break;
}
}
}
return node;
}, /*context*/ undefined);

Expand Down
16 changes: 7 additions & 9 deletions scripts/eslint/rules/jsdoc-format.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = createRule({
multipleJSDocError: `Declaration has multiple JSDoc comments.`,
internalCommentOnParameterProperty: `@internal cannot appear on a JSDoc comment; use a declared property and an assignment in the constructor instead.`,
internalCommentOnUnexported: `@internal should not appear on an unexported declaration.`,
internalCommentOnPrivate: `@internal should not appear on a private declaration.`,
},
schema: [],
type: "problem",
Expand Down Expand Up @@ -56,16 +57,9 @@ module.exports = createRule({

/** @type {(c: import("@typescript-eslint/utils").TSESTree.Comment, indexInComment: number) => import("@typescript-eslint/utils").TSESTree.SourceLocation} */
const getAtInternalLoc = (c, indexInComment) => {
const line = c.loc.start.line;
return {
start: {
line,
column: c.loc.start.column + indexInComment,
},
end: {
line,
column: c.loc.start.column + indexInComment + atInternal.length,
},
start: context.sourceCode.getLocFromIndex(c.range[0] + indexInComment),
end: context.sourceCode.getLocFromIndex(c.range[0] + indexInComment + atInternal.length),
};
};

Expand Down Expand Up @@ -113,6 +107,10 @@ module.exports = createRule({
else if (!isExported(node)) {
context.report({ messageId: "internalCommentOnUnexported", node: c, loc: getAtInternalLoc(c, indexInComment) });
}
// eslint-disable-next-line local/no-in-operator
else if ("accessibility" in node && node.accessibility === "private") {
context.report({ messageId: "internalCommentOnPrivate", node: c, loc: getAtInternalLoc(c, indexInComment) });
}
else if (i !== last) {
context.report({ messageId: "internalCommentNotLastError", node: c, loc: getAtInternalLoc(c, indexInComment) });
}
Expand Down
17 changes: 0 additions & 17 deletions src/server/editorServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1303,16 +1303,12 @@ export class ProjectService {
/** @internal */
readonly watchFactory: WatchFactory<WatchType, Project | NormalizedPath>;

/** @internal */
private readonly sharedExtendedConfigFileWatchers = new Map<Path, SharedExtendedConfigFileWatcher<NormalizedPath>>();
/** @internal */
private readonly extendedConfigCache = new Map<string, ExtendedConfigCacheEntry>();

/** @internal */
readonly packageJsonCache: PackageJsonCache;
/** @internal */
private packageJsonFilesMap: Map<Path, PackageJsonWatcher> | undefined;
/** @internal */
private incompleteCompletionsCache: IncompleteCompletionsCache | undefined;
/** @internal */
readonly session: Session<unknown> | undefined;
Expand Down Expand Up @@ -1842,8 +1838,6 @@ export class ProjectService {

/**
* This is to watch whenever files are added or removed to the wildcard directories
*
* @internal
*/
private watchWildcardDirectory(directory: string, flags: WatchDirectoryFlags, configFileName: NormalizedPath, config: ParsedConfig) {
let watcher: FileWatcher | undefined = this.watchFactory.watchDirectory(
Expand Down Expand Up @@ -1942,7 +1936,6 @@ export class ProjectService {
return result;
}

/** @internal */
private delayUpdateProjectsFromParsedConfigOnConfigFileChange(canonicalConfigFilePath: NormalizedPath, loadReason: string) {
const configFileExistenceInfo = this.configFileExistenceInfoCache.get(canonicalConfigFilePath);
if (!configFileExistenceInfo?.config) return false;
Expand Down Expand Up @@ -1979,7 +1972,6 @@ export class ProjectService {
return scheduledAnyProjectUpdate;
}

/** @internal */
private onConfigFileChanged(configFileName: NormalizedPath, canonicalConfigFilePath: NormalizedPath, eventKind: FileWatcherEventKind) {
const configFileExistenceInfo = this.configFileExistenceInfoCache.get(canonicalConfigFilePath)!;
const project = this.getConfiguredProjectByCanonicalConfigFilePath(canonicalConfigFilePath);
Expand Down Expand Up @@ -2281,7 +2273,6 @@ export class ProjectService {
return exists;
}

/** @internal */
private createConfigFileWatcherForParsedConfig(configFileName: NormalizedPath, canonicalConfigFilePath: NormalizedPath, forProject: ConfiguredProject) {
const configFileExistenceInfo = this.configFileExistenceInfoCache.get(canonicalConfigFilePath)!;
// When watching config file for parsed config, remove the noopFileWatcher that can be created for open files impacted by config file and watch for real
Expand Down Expand Up @@ -2746,8 +2737,6 @@ export class ProjectService {

/**
* Read the config file of the project, and update the project root file names.
*
* @internal
*/
private loadConfiguredProject(project: ConfiguredProject, reason: string) {
tracing?.push(tracing.Phase.Session, "loadConfiguredProject", { configFilePath: project.canonicalConfigFilePath });
Expand Down Expand Up @@ -3032,7 +3021,6 @@ export class ProjectService {
return project.updateGraph();
}

/** @internal */
private reloadFileNamesOfParsedConfig(configFileName: NormalizedPath, config: ParsedConfig) {
if (config.updateLevel === undefined) return config.parsedCommandLine!.fileNames;
Debug.assert(config.updateLevel === ProgramUpdateLevel.RootNamesAndUpdate);
Expand Down Expand Up @@ -3086,7 +3074,6 @@ export class ProjectService {
updateWithTriggerFile(project, project.triggerFileForConfigFileDiag ?? project.getConfigFilePath(), /*isReload*/ true);
}

/** @internal */
private clearSemanticCache(project: Project) {
project.originalConfiguredProjects = undefined;
project.resolutionCache.clear();
Expand Down Expand Up @@ -3801,7 +3788,6 @@ export class ProjectService {
return this.getWatchOptionsFromProjectWatchOptions(project.getWatchOptions(), project.getCurrentDirectory());
}

/** @internal */
private getWatchOptionsFromProjectWatchOptions(projectOptions: WatchOptions | undefined, basePath: string) {
const hostWatchOptions = !this.hostConfiguration.beforeSubstitution ? this.hostConfiguration.watchOptions :
handleWatchOptionsConfigDirTemplateSubstitution(
Expand Down Expand Up @@ -5007,7 +4993,6 @@ export class ProjectService {

/**
* Performs the remaining steps of enabling a plugin after its module has been instantiated.
* @internal
*/
private endEnablePlugin(project: Project, { pluginConfigEntry, resolvedModule, errorLogs }: BeginEnablePluginResult) {
if (resolvedModule) {
Expand Down Expand Up @@ -5162,7 +5147,6 @@ export class ProjectService {
});
}

/** @internal */
private watchPackageJsonFile(file: string, path: Path, project: Project | WildcardWatcher) {
Debug.assert(project !== undefined);
let result = (this.packageJsonFilesMap ??= new Map()).get(path);
Expand Down Expand Up @@ -5204,7 +5188,6 @@ export class ProjectService {
(project.packageJsonWatches ??= new Set()).add(result);
}

/** @internal */
private onPackageJsonChange(result: PackageJsonWatcher) {
result.projects.forEach(project => (project as Project).onPackageJsonChange?.());
}
Expand Down
15 changes: 0 additions & 15 deletions src/server/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,7 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo

/** @internal */
lastCachedUnresolvedImportsList: SortedReadonlyArray<string> | undefined;
/** @internal */
private hasAddedorRemovedFiles = false;
/** @internal */
private hasAddedOrRemovedSymlinks = false;

/** @internal */
Expand Down Expand Up @@ -390,7 +388,6 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo
/** @internal */
typingFiles: SortedReadonlyArray<string> = emptyArray;

/** @internal */
private typingWatchers: TypingWatchers | undefined;

/** @internal */
Expand Down Expand Up @@ -492,13 +489,9 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo
/** @internal */
public readonly getCanonicalFileName: GetCanonicalFileName;

/** @internal */
private exportMapCache: ExportInfoMap | undefined;
/** @internal */
private changedFilesForExportMapCache: Set<Path> | undefined;
/** @internal */
private moduleSpecifierCache = createModuleSpecifierCache(this);
/** @internal */
private symlinks: SymlinkCache | undefined;
/** @internal */
autoImportProviderHost: AutoImportProviderProject | false | undefined;
Expand Down Expand Up @@ -1418,13 +1411,11 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo
}
}

/** @internal */
private closeWatchingTypingLocations() {
if (this.typingWatchers) clearMap(this.typingWatchers, closeFileWatcher);
this.typingWatchers = undefined;
}

/** @internal */
private onTypingInstallerWatchInvoke() {
this.typingWatchers!.isInvoked = true;
this.projectService.updateTypingsForProject({ projectName: this.getProjectName(), kind: ActionInvalidate });
Expand Down Expand Up @@ -1828,7 +1819,6 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo
return this.filesToStringWorker(writeProjectFileNames, /*writeFileExplaination*/ true, /*writeFileVersionAndText*/ false);
}

/** @internal */
private filesToStringWorker(writeProjectFileNames: boolean, writeFileExplaination: boolean, writeFileVersionAndText: boolean) {
if (this.isInitialLoadPending()) return "\tFiles (0) InitialLoadPending\n";
if (!this.program) return "\tFiles (0) NoProgram\n";
Expand Down Expand Up @@ -2203,7 +2193,6 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo
}
}

/** @internal */
private isDefaultProjectForOpenFiles(): boolean {
return !!forEachEntry(
this.projectService.openFiles,
Expand Down Expand Up @@ -2250,7 +2239,6 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo
}
}

/** @internal */
private getCompilerOptionsForNoDtsResolutionProject() {
return {
...this.getCompilerOptions(),
Expand Down Expand Up @@ -2443,7 +2431,6 @@ export class AuxiliaryProject extends Project {
}

export class AutoImportProviderProject extends Project {
/** @internal */
private static readonly maxDependencies = 10;

/** @internal */
Expand Down Expand Up @@ -2781,7 +2768,6 @@ export class ConfiguredProject extends Project {
/** @internal */
sendLoadingProjectFinish = false;

/** @internal */
private compilerHost?: CompilerHost;

/** @internal */
Expand Down Expand Up @@ -2845,7 +2831,6 @@ export class ConfiguredProject extends Project {
this.releaseParsedConfig(asNormalizedPath(this.projectService.toCanonicalFileName(asNormalizedPath(normalizePath(fileName)))));
}

/** @internal */
private releaseParsedConfig(canonicalConfigFilePath: NormalizedPath) {
this.projectService.stopWatchingWildCards(canonicalConfigFilePath, this);
this.projectService.releaseParsedConfig(canonicalConfigFilePath, this);
Expand Down
2 changes: 0 additions & 2 deletions src/server/scriptInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,6 @@ export class ScriptInfo {

/**
* Set to real path if path is different from info.path
*
* @internal
*/
private realpath: Path | undefined;

Expand Down
1 change: 0 additions & 1 deletion src/typingsInstallerCore/typingsInstaller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ export abstract class TypingsInstaller {
private readonly knownCachesSet = new Set<string>();
private readonly projectWatchers = new Map<string, Set<string>>();
private safeList: JsTyping.SafeList | undefined;
/** @internal */
private pendingRunRequests: PendingRequest[] = [];

private installRunCount = 1;
Expand Down
Loading