@@ -7273,8 +7273,11 @@ const syntheticFactory: BaseNodeFactory = {
72737273
72747274export const factory = createNodeFactory ( NodeFactoryFlags . NoIndentationOnFreshPropertyAccess , syntheticFactory ) ;
72757275
7276+ /** @deprecated */
72767277export function createUnparsedSourceFile ( text : string ) : UnparsedSource ;
7278+ /** @deprecated */
72777279export function createUnparsedSourceFile ( inputFile : InputFiles , type : "js" | "dts" , stripInternal ?: boolean ) : UnparsedSource ;
7280+ /** @deprecated */
72787281export function createUnparsedSourceFile ( text : string , mapPath : string | undefined , map : string | undefined ) : UnparsedSource ;
72797282export function createUnparsedSourceFile ( textOrInputFiles : string | InputFiles , mapPathOrType ?: string , mapTextOrStripInternal ?: string | boolean ) : UnparsedSource {
72807283 let stripInternal : boolean | undefined ;
@@ -7445,10 +7448,12 @@ function parseOldFileOfCurrentEmit(bundleFileInfo: BundleFileInfo) {
74457448}
74467449
74477450// TODO(rbuckton): Move part of this to factory
7451+ /** @deprecated */
74487452export function createInputFiles (
74497453 javascriptText : string ,
74507454 declarationText : string
74517455) : InputFiles ;
7456+ /** @deprecated */
74527457export function createInputFiles (
74537458 javascriptText : string ,
74547459 declarationText : string ,
@@ -7457,6 +7462,7 @@ export function createInputFiles(
74577462 declarationMapPath : string | undefined ,
74587463 declarationMapText : string | undefined
74597464) : InputFiles ;
7465+ /** @deprecated */
74607466export function createInputFiles (
74617467 readFileText : ( path : string ) => string | undefined ,
74627468 javascriptPath : string ,
@@ -7493,7 +7499,7 @@ export function createInputFiles(
74937499 declarationMapTextOrBuildInfoPath ,
74947500 ) ;
74957501}
7496- /** @internal */
7502+ /** @deprecated @ internal */
74977503export function createInputFilesWithFilePaths (
74987504 readFileText : ( path : string ) => string | undefined ,
74997505 javascriptPath : string ,
@@ -7546,7 +7552,7 @@ export function createInputFilesWithFilePaths(
75467552 } ) ;
75477553 return node ;
75487554}
7549- /** @internal */
7555+ /** @deprecated @ internal */
75507556export function createInputFilesWithFileTexts (
75517557 javascriptPath : string | undefined ,
75527558 javascriptText : string ,
0 commit comments