Home
last modified time | relevance | path

Searched refs:transformSourceFile (Results 1 – 25 of 31) sorted by relevance

12

/third_party/typescript/src/compiler/transformers/module/
Dnode.ts64 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);
DesnextAnd2015.ts22 return chainBundle(context, transformSourceFile);
24 function transformSourceFile(node: SourceFile) {
Dsystem.ts43 return chainBundle(context, transformSourceFile);
50 function transformSourceFile(node: SourceFile) {
Dmodule.ts51 return chainBundle(context, transformSourceFile);
58 function transformSourceFile(node: SourceFile) {
/third_party/typescript/src/testRunner/unittests/
Dtransform.ts63 … 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
DcustomTransforms.ts144 …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/
Desnext.ts4 return chainBundle(context, transformSourceFile);
6 function transformSourceFile(node: SourceFile) {
Des2019.ts5 return chainBundle(context, transformSourceFile);
7 function transformSourceFile(node: SourceFile) {
Des2021.ts8 return chainBundle(context, transformSourceFile);
10 function transformSourceFile(node: SourceFile) {
Des2016.ts9 return chainBundle(context, transformSourceFile);
11 function transformSourceFile(node: SourceFile) {
Des5.ts28 return chainBundle(context, transformSourceFile);
35 function transformSourceFile(node: SourceFile) {
Dutilities.ts28 …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);
Des2020.ts9 return chainBundle(context, transformSourceFile);
11 function transformSourceFile(node: SourceFile) {
DlegacyDecorators.ts26 return chainBundle(context, transformSourceFile);
28 function transformSourceFile(node: SourceFile) {
Djsx.ts18 return chainBundle(context, transformSourceFile);
70 function transformSourceFile(node: SourceFile) {
Des2017.ts61 return chainBundle(context, transformSourceFile);
63 function transformSourceFile(node: SourceFile) {
Dts.ts86 return transformSourceFile(node);
90 …return factory.createBundle(node.sourceFiles.map(transformSourceFile), mapDefined(node.prepends, p…
103 function transformSourceFile(node: SourceFile) {
Des2018.ts76 return chainBundle(context, transformSourceFile);
108 function transformSourceFile(node: SourceFile) {
Dgenerators.ts295 return chainBundle(context, transformSourceFile);
297 function transformSourceFile(node: SourceFile) {
DclassFields.ts202 return chainBundle(context, transformSourceFile);
204 function transformSourceFile(node: SourceFile) {
Des2015.ts305 return chainBundle(context, transformSourceFile);
307 function transformSourceFile(node: SourceFile) {
/third_party/typescript/src/compiler/
DohApi.ts407 return transformSourceFile;
409 function transformSourceFile(node: SourceFile): SourceFile {
Dtransformer.ts114 …node => isBundle(node) ? transformer.transformBundle(node) : transformer.transformSourceFile(node);
/third_party/typescript/lib/
DtypingsInstaller.js46694 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 …]
Dtsc.js38445 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 …]

12