/third_party/typescript/tests/baselines/reference/ |
D | unionReductionMutualSubtypes.types | 5 something(): void; 6 >something : () => void 9 const k: ReturnVal = { something() { } } 11 >{ something() { } } : { something(): void; } 12 >something : () => void 17 function run(options: { something?(b?: string): void }) { 18 >run : (options: { something?(b?: string): void; }) => void 19 >options : { something?(b?: string): void; } 20 >something : ((b?: string) => void) | undefined 23 const something = options.something ?? val.something; [all …]
|
D | unionReductionMutualSubtypes.symbols | 7 something(): void; 8 >something : Symbol(ReturnVal.something, Decl(unionReductionMutualSubtypes.ts, 2, 21)) 11 const k: ReturnVal = { something() { } } 14 >something : Symbol(something, Decl(unionReductionMutualSubtypes.ts, 6, 22)) 20 function run(options: { something?(b?: string): void }) { 23 >something : Symbol(something, Decl(unionReductionMutualSubtypes.ts, 9, 23)) 26 const something = options.something ?? val.something; 27 >something : Symbol(something, Decl(unionReductionMutualSubtypes.ts, 10, 9)) 28 >options.something : Symbol(something, Decl(unionReductionMutualSubtypes.ts, 9, 23)) 30 >something : Symbol(something, Decl(unionReductionMutualSubtypes.ts, 9, 23)) [all …]
|
D | unionReductionMutualSubtypes.js | 5 something(): void; 8 const k: ReturnVal = { something() { } } method 11 function run(options: { something?(b?: string): void }) { field 12 const something = options.something ?? val.something; 13 something(''); 20 var k = { something: function () { } }; method 23 var something = (_a = options.something) !== null && _a !== void 0 ? _a : val.something; 24 something('');
|
D | importCallExpressionInExportEqualsCJS.types | 1 === tests/cases/conformance/dynamicImport/something.ts === 7 >async function() { const something = await import("./something");} : () => Promise<void> 9 const something = await import("./something"); 10 >something : 42 11 >await import("./something") : 42 12 >import("./something") : Promise<42> 13 >"./something" : "./something"
|
D | importCallExpressionInExportEqualsUMD.types | 1 === tests/cases/conformance/dynamicImport/something.ts === 7 >async function() { const something = await import("./something");} : () => Promise<void> 9 const something = await import("./something"); 10 >something : 42 11 >await import("./something") : 42 12 >import("./something") : Promise<42> 13 >"./something" : "./something"
|
D | importCallExpressionInExportEqualsAMD.types | 1 === tests/cases/conformance/dynamicImport/something.ts === 7 >async function() { const something = await import("./something");} : () => Promise<void> 9 const something = await import("./something"); 10 >something : 42 11 >await import("./something") : 42 12 >import("./something") : Promise<42> 13 >"./something" : "./something"
|
D | exportSpecifiers.symbols | 2 import { type, as, something, foo, bar } from "./exports.js"; 5 >something : Symbol(something, Decl(imports.ts, 0, 18)) 15 something; // Error (used in emitting position) 16 >something : Symbol(something, Decl(imports.ts, 0, 18)) 31 const something = 0; 32 >something : Symbol(something, Decl(exports.ts, 2, 5)) 40 export { type something }; 41 >something : Symbol(something, Decl(exports.ts, 5, 8)) 51 export type { type something as whatever }; // Error 52 >something : Symbol(something, Decl(exports.ts, 2, 5))
|
D | exportSpecifiers.js | 4 import { type, as, something, foo, bar } from "./exports.js"; 7 something; // Error (used in emitting position) 14 const something = 0; constant 17 export { type something }; 20 export type { type something as whatever }; // Error 26 var something = 0; variable 32 something; // Error (used in emitting position) 40 declare const something = 0; 43 export { type something }; 46 export type { type something as whatever };
|
D | exportSpecifiers.types | 2 import { type, as, something, foo, bar } from "./exports.js"; 5 >something : 0 15 something; // Error (used in emitting position) 16 >something : 0 33 const something = 0; 34 >something : 0 43 export { type something }; 44 >something : 0 54 export type { type something as whatever }; // Error 55 >something : 0
|
D | jsDeclarationsTypeReferences2.symbols | 2 const{ a, m } = require("./something").o; 5 >require("./something").o : Symbol(o, Decl(something.ts, 0, 12)) 7 >"./something" : Symbol("tests/cases/conformance/jsdoc/declarations/something", Decl(something.ts, … 8 >o : Symbol(o, Decl(something.ts, 0, 12)) 25 === tests/cases/conformance/jsdoc/declarations/something.ts === 27 >o : Symbol(o, Decl(something.ts, 0, 12)) 30 >a : Symbol(a, Decl(something.ts, 0, 18)) 33 >m : Symbol(m, Decl(something.ts, 1, 9))
|
D | unionTypeReduction2.js | 56 something(): void; 59 const k: ReturnVal = { something() { } } method 62 function run(options: { something?(b?: string): void }) { field 63 const something = options.something ?? val.something; 64 something(''); 105 var k = { something: function () { } }; method 108 var something = (_a = options.something) !== null && _a !== void 0 ? _a : val.something; 109 something('');
|
D | importCallExpressionInExportEqualsCJS.symbols | 1 === tests/cases/conformance/dynamicImport/something.ts === 7 const something = await import("./something"); 8 >something : Symbol(something, Decl(index.ts, 1, 9)) 9 >"./something" : Symbol("tests/cases/conformance/dynamicImport/something", Decl(something.ts, 0, 0))
|
D | importCallExpressionInExportEqualsUMD.symbols | 1 === tests/cases/conformance/dynamicImport/something.ts === 7 const something = await import("./something"); 8 >something : Symbol(something, Decl(index.ts, 1, 9)) 9 >"./something" : Symbol("tests/cases/conformance/dynamicImport/something", Decl(something.ts, 0, 0))
|
D | importCallExpressionInExportEqualsAMD.symbols | 1 === tests/cases/conformance/dynamicImport/something.ts === 7 const something = await import("./something"); 8 >something : Symbol(something, Decl(index.ts, 1, 9)) 9 >"./something" : Symbol("tests/cases/conformance/dynamicImport/something", Decl(something.ts, 0, 0))
|
D | importSpecifiers1.symbols | 8 export const something = 0; 9 >something : Symbol(something, Decl(mod.ts, 2, 12)) 75 import { type something } from "./mod.js"; 76 >something : Symbol(something, Decl(f.ts, 3, 8)) 78 import { type something as s } from "./mod.js"; 79 >something : Symbol(something, Decl(mod.ts, 2, 12)) 84 something; // Error (used in emitting position) 85 >something : Symbol(something, Decl(f.ts, 3, 8)) 91 import type { type something } from "./mod.js"; // Error 92 >something : Symbol(something, Decl(g.ts, 0, 13))
|
D | amdLikeInputDeclarationEmit.types | 25 …edClass = BaseClass.extends({ f: function() { return "something"; } })… 37 …edClass = BaseClass.extends({ f: function() { return "something"; } })… 41 >ExtendedClass : new () => { f: () => "something"; } & import("deps/BaseClass") 42 …s({ f: function() { return "something"; } }) : new () => { f: () => "s… 46 >{ f: function() { return "something"; } } : { f: () => "something"; } 49 >f : () => "something" 50 >function() { return "something"; } : () => "something" 52 return "something"; 53 >"something" : "something" 67 >ExtendedClass : new () => { f: () => "something"; } & import("deps/BaseClass")
|
D | unionTypeReduction2.types | 217 something(): void; 218 >something : () => void 221 const k: ReturnVal = { something() { } } 223 >{ something() { } } : { something(): void; } 224 >something : () => void 229 function run(options: { something?(b?: string): void }) { 230 >run : (options: { something?(b?: string): void; }) => void 231 >options : { something?(b?: string): void; } 232 >something : ((b?: string) => void) | undefined 235 const something = options.something ?? val.something; [all …]
|
D | unionTypeReduction2.symbols | 172 something(): void; 173 >something : Symbol(ReturnVal.something, Decl(unionTypeReduction2.ts, 53, 21)) 176 const k: ReturnVal = { something() { } } 179 >something : Symbol(something, Decl(unionTypeReduction2.ts, 57, 22)) 185 function run(options: { something?(b?: string): void }) { 188 >something : Symbol(something, Decl(unionTypeReduction2.ts, 60, 23)) 191 const something = options.something ?? val.something; 192 >something : Symbol(something, Decl(unionTypeReduction2.ts, 61, 9)) 193 >options.something : Symbol(something, Decl(unionTypeReduction2.ts, 60, 23)) 195 >something : Symbol(something, Decl(unionTypeReduction2.ts, 60, 23)) [all …]
|
D | importSpecifiers1.js | 6 export const something = 0; constant 37 import { type something } from "./mod.js"; 38 import { type something as s } from "./mod.js"; 41 something; // Error (used in emitting position) 45 import type { type something } from "./mod.js"; // Error 51 export var something = 0; variable 73 something; // Error (used in emitting position) 83 export declare const something = 0;
|
/third_party/typescript/tests/cases/compiler/ |
D | unionReductionMutualSubtypes.ts | 6 something(): void; method 9 const k: ReturnVal = { something() { } } 12 function run(options: { something?(b?: string): void }) { 13 const something = options.something ?? val.something; constant 14 something('');
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.basic.geom.out | 12 0:16 'OutputStream' ( out structure{ temp float myfloat, temp int something}) 16 0:19 'Vert' ( temp structure{ temp float myfloat, temp int something}) 35 0:20 something: direct index for structure ( temp int) 36 0:20 'Vert' ( temp structure{ temp float myfloat, temp int something}) 49 0:22 'Vert' ( temp structure{ temp float myfloat, temp int something}) 53 0:? 'OutputStream.something' (layout( location=1) out int) 54 0:22 something: direct index for structure ( temp int) 55 0:22 'Vert' ( temp structure{ temp float myfloat, temp int something}) 64 0:23 'Vert' ( temp structure{ temp float myfloat, temp int something}) 68 0:? 'OutputStream.something' (layout( location=1) out int) [all …]
|
/third_party/typescript/tests/baselines/reference/tsbuild/amdModulesWithOut/ |
D | stripInternal.js | 58 /*@internal*/ export namespace someOther.something { export class someClass {} } 67 /*@internal*/ export namespace internalOther.something { export class someClass {} } 221 > /*@internal*/ export namespace someOther.something { export class someClass {} } 380 var something; 381 (function (something) { 387 something.someClass = someClass; 388 })(something = someOther.something || (someOther.something = {})); 418 var something; 419 (function (something) { 425 something.someClass = someClass; [all …]
|
/third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/ |
D | stripInternal-when-one-two-three-are-prepended-in-order.js | 86 /*@internal*/ export namespace someOther.something { export class someClass {} } 95 /*@internal*/ namespace internalOther.something { export class someClass {} } 229 namespace someOther.something { 249 declare namespace internalOther.something { 634 >>> namespace someOther.something { 646 5 > something 876 >>>declare namespace internalOther.something { 888 5 > something 1125 var something; 1126 (function (something) { [all …]
|
D | stripInternal-jsdoc-style-comment.js | 86 /**@internal*/ export namespace someOther.something { export class someClass {} } 95 /**@internal*/ namespace internalOther.something { export class someClass {} } 200 namespace someOther.something { 220 declare namespace internalOther.something { 485 >>> namespace someOther.something { 497 5 > something 727 >>>declare namespace internalOther.something { 739 5 > something 970 var something; 971 (function (something) { [all …]
|
D | stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js | 86 /**@internal*/ export namespace someOther.something { export class someClass {} } 95 /**@internal*/ namespace internalOther.something { export class someClass {} } 209 /**@internal*/ namespace someOther.something { 229 /**@internal*/ declare namespace internalOther.something { 672 >>> /**@internal*/ namespace someOther.something { 688 7 > something 962 >>>/**@internal*/ declare namespace internalOther.something { 978 7 > something 1241 var something; 1242 (function (something) { [all …]
|