Skip to content

Commit 9702a2e

Browse files
committed
Fix all at-internal comments, which need to be attached to a declaration
1 parent bb294f7 commit 9702a2e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+938
-424
lines changed

src/api-extractor-base.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,23 @@
379379
"default": {
380380
"logLevel": "warning"
381381
// "addToApiReportFile": false
382+
},
383+
384+
"ae-internal-missing-underscore": {
385+
"logLevel": "none",
386+
"addToApiReportFile": false
387+
},
388+
389+
// TODO(jakebailey): should we explicitly mark things as public?
390+
"ae-missing-release-tag": {
391+
"logLevel": "none",
392+
"addToApiReportFile": false
393+
},
394+
395+
// TODO(jakebailey): Fix these?
396+
"ae-unresolved-link": {
397+
"logLevel": "none",
398+
"addToApiReportFile": false
382399
}
383400

384401
// "ae-extra-release-tag": {
@@ -398,8 +415,8 @@
398415
*/
399416
"tsdocMessageReporting": {
400417
"default": {
401-
"logLevel": "warning"
402-
// "addToApiReportFile": false
418+
"logLevel": "none",
419+
"addToApiReportFile": false
403420
}
404421

405422
// "tsdoc-link-tag-unescaped-text": {

src/compiler/builder.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ export const enum BuilderFileEmit {
9292
Full
9393
}
9494

95-
/** @internal */
9695
/**
9796
* State to store the changed files, affected files and cache semantic diagnostics
97+
*
98+
* @internal
9899
*/
99100
// TODO: GH#18217 Properties of this interface are frequently asserted to be defined.
100101
export interface BuilderProgramState extends BuilderState, ReusableBuilderProgramState {
@@ -803,15 +804,17 @@ export type ProgramBuildInfoBuilderStateFileInfo = Omit<BuilderState.FileInfo, "
803804
*/
804805
signature: string | false | undefined;
805806
};
806-
/** @internal */
807807
/**
808808
* [fileId, signature] if different from file's signature
809809
* fileId if file wasnt emitted
810+
*
811+
* @internal
810812
*/
811813
export type ProgramBuildInfoEmitSignature = ProgramBuildInfoFileId | [fileId: ProgramBuildInfoFileId, signature: string];
812-
/** @internal */
813814
/**
814815
* ProgramBuildInfoFileInfo is string if FileInfo.version === FileInfo.signature && !FileInfo.affectsGlobalScope otherwise encoded FileInfo
816+
*
817+
* @internal
815818
*/
816819
export type ProgramBuildInfoFileInfo = string | ProgramBuildInfoBuilderStateFileInfo;
817820
/** @internal */

0 commit comments

Comments
 (0)