/third_party/typescript/src/compiler/transformers/module/ |
D | node.ts | 64 function transformSourceFile(node: SourceFile) { 77 … return node.kind === SyntaxKind.SourceFile ? transformSourceFile(node) : transformBundle(node); 81 … return context.factory.createBundle(map(node.sourceFiles, transformSourceFile), node.prepends);
|
D | esnextAnd2015.ts | 22 return chainBundle(context, transformSourceFile); 24 function transformSourceFile(node: SourceFile) {
|
D | system.ts | 43 return chainBundle(context, transformSourceFile); 50 function transformSourceFile(node: SourceFile) {
|
D | module.ts | 51 return chainBundle(context, transformSourceFile); 58 function transformSourceFile(node: SourceFile) {
|
/third_party/typescript/src/testRunner/unittests/ |
D | transform.ts | 63 … function transformSourceFile(sourceText: string, transformers: TransformerFactory<SourceFile>[]) { function 99 return transformSourceFile(`var a = undefined;`, [replaceUndefinedWithVoid0]); 103 return transformSourceFile(`let a: () => void`, [ 111 return transformSourceFile(`let a!: () => void`, [ 158 return transformSourceFile(` 540 …source.ts", "class X { echo(x: string) { return x; } }", ScriptTarget.ES3), [transformSourceFile]); 553 function transformSourceFile(context: TransformationContext) { function 582 before: [transformSourceFile] 586 function transformSourceFile(context: TransformationContext): Transformer<SourceFile> { function
|
D | customTransforms.ts | 144 …const transformSourceFile: Transformer<SourceFile> = node => visitNode(node, function visitor(node… constant 158 transformSourceFile, 159 …ransformBundle: node => factory.createBundle(map(node.sourceFiles, transformSourceFile), node.prep…
|
/third_party/typescript/src/compiler/transformers/ |
D | esnext.ts | 4 return chainBundle(context, transformSourceFile); 6 function transformSourceFile(node: SourceFile) {
|
D | es2019.ts | 5 return chainBundle(context, transformSourceFile); 7 function transformSourceFile(node: SourceFile) {
|
D | es2021.ts | 8 return chainBundle(context, transformSourceFile); 10 function transformSourceFile(node: SourceFile) {
|
D | es2016.ts | 9 return chainBundle(context, transformSourceFile); 11 function transformSourceFile(node: SourceFile) {
|
D | es5.ts | 28 return chainBundle(context, transformSourceFile); 35 function transformSourceFile(node: SourceFile) {
|
D | utilities.ts | 28 …export function chainBundle(context: CoreTransformationContext, transformSourceFile: (x: SourceFil… 32 … return node.kind === SyntaxKind.SourceFile ? transformSourceFile(node) : transformBundle(node); 36 … return context.factory.createBundle(map(node.sourceFiles, transformSourceFile), node.prepends);
|
D | es2020.ts | 9 return chainBundle(context, transformSourceFile); 11 function transformSourceFile(node: SourceFile) {
|
D | legacyDecorators.ts | 26 return chainBundle(context, transformSourceFile); 28 function transformSourceFile(node: SourceFile) {
|
D | jsx.ts | 18 return chainBundle(context, transformSourceFile); 70 function transformSourceFile(node: SourceFile) {
|
D | es2017.ts | 61 return chainBundle(context, transformSourceFile); 63 function transformSourceFile(node: SourceFile) {
|
D | ts.ts | 86 return transformSourceFile(node); 90 …return factory.createBundle(node.sourceFiles.map(transformSourceFile), mapDefined(node.prepends, p… 103 function transformSourceFile(node: SourceFile) {
|
D | es2018.ts | 76 return chainBundle(context, transformSourceFile); 108 function transformSourceFile(node: SourceFile) {
|
D | generators.ts | 295 return chainBundle(context, transformSourceFile); 297 function transformSourceFile(node: SourceFile) {
|
D | classFields.ts | 202 return chainBundle(context, transformSourceFile); 204 function transformSourceFile(node: SourceFile) {
|
D | es2015.ts | 305 return chainBundle(context, transformSourceFile); 307 function transformSourceFile(node: SourceFile) {
|
/third_party/typescript/src/compiler/ |
D | ohApi.ts | 407 return transformSourceFile; 409 function transformSourceFile(node: SourceFile): SourceFile {
|
D | transformer.ts | 114 …node => isBundle(node) ? transformer.transformBundle(node) : transformer.transformSourceFile(node);
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 46694 return transformSourceFile; 46695 function transformSourceFile(node) { function 94799 function chainBundle(context, transformSourceFile) { argument 94802 …return node.kind === 311 /* SyntaxKind.SourceFile */ ? transformSourceFile(node) : transformBundle… 94805 … return context.factory.createBundle(ts.map(node.sourceFiles, transformSourceFile), node.prepends); 95871 return transformSourceFile(node); 95874 …return factory.createBundle(node.sourceFiles.map(transformSourceFile), ts.mapDefined(node.prepends… 95886 function transformSourceFile(node) { function 97802 return ts.chainBundle(context, transformSourceFile); 97803 function transformSourceFile(node) { function [all …]
|
D | tsc.js | 38445 return transformSourceFile; 38446 function transformSourceFile(node) { function 80224 function chainBundle(context, transformSourceFile) { argument 80227 return node.kind === 311 ? transformSourceFile(node) : transformBundle(node); 80230 … return context.factory.createBundle(ts.map(node.sourceFiles, transformSourceFile), node.prepends); 81029 return transformSourceFile(node); 81032 …return factory.createBundle(node.sourceFiles.map(transformSourceFile), ts.mapDefined(node.prepends… 81039 function transformSourceFile(node) { function 82278 return ts.chainBundle(context, transformSourceFile); 82279 function transformSourceFile(node) { function [all …]
|