/third_party/typescript/tests/baselines/reference/ |
D | moduleOuterQualification.symbols | 5 interface Beta { } 6 >Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 0, 22)) 11 // .d.ts emit: should be 'extends outer.Beta' 12 export interface Beta extends outer.Beta { } 13 >Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 2, 16)) 14 >outer.Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 0, 22)) 16 >Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 0, 22))
|
D | extendedInterfaceGenericType.types | 7 makeBetaOfNumber(): Beta<number>; 8 >makeBetaOfNumber : () => Beta<number> 10 interface Beta<T> extends Alpha<T> { 17 >betaOfNumber : Beta<number> 18 >alpha.makeBetaOfNumber() : Beta<number> 19 >alpha.makeBetaOfNumber : () => Beta<number> 21 >makeBetaOfNumber : () => Beta<number> 26 >betaOfNumber : Beta<number>
|
D | constructorTagOnClassConstructor.types | 5 export class Beta { 6 >Beta : Beta 15 const arr = [Alpha, Beta]; 17 >[Alpha, Beta] : (typeof Alpha)[] 19 >Beta : typeof Beta
|
D | elaboratedErrors.types | 30 interface Beta { y: number; } 36 var y: Beta; 37 >y : Beta 41 >x = y : Beta 43 >y : Beta 46 >x = y : Beta 48 >y : Beta 53 >y : Beta 58 >y : Beta
|
D | moduleOuterQualification.js | 3 interface Beta { } 6 export interface Beta extends outer.Beta { } 16 interface Beta { 19 interface Beta extends outer.Beta {
|
D | elaboratedErrors.errors.txt | 3 tests/cases/compiler/elaboratedErrors.ts(20,1): error TS2741: Property 'x' is missing in type 'Beta… 4 tests/cases/compiler/elaboratedErrors.ts(21,1): error TS2322: Type 'Beta' is not assignable to type… 5 …Errors.ts(24,1): error TS2741: Property 'y' is missing in type 'Alpha' but required in type 'Beta'. 6 …es/compiler/elaboratedErrors.ts(25,1): error TS2322: Type 'Alpha' is not assignable to type 'Beta'. 27 interface Beta { y: number; } 29 var y: Beta; 34 !!! error TS2741: Property 'x' is missing in type 'Beta' but required in type 'Alpha'. 38 !!! error TS2322: Type 'Beta' is not assignable to type 'Alpha'. 43 !!! error TS2741: Property 'y' is missing in type 'Alpha' but required in type 'Beta'. 47 !!! error TS2322: Type 'Alpha' is not assignable to type 'Beta'.
|
D | constructorTagOnClassConstructor.symbols | 5 export class Beta { 6 >Beta : Symbol(Beta, Decl(bug27025.js, 0, 22)) 15 const arr = [Alpha, Beta]; 18 >Beta : Symbol(Beta, Decl(bug27025.js, 0, 22))
|
D | qualifiedName_entity-name-resolution-does-not-affect-class-heritage.js | 6 class Beta extends Alpha.x { class 29 var Beta = /** @class */ (function (_super) { 30 __extends(Beta, _super); 31 function Beta() { class in Beta 34 return Beta;
|
D | extendedInterfaceGenericType.symbols | 13 makeBetaOfNumber(): Beta<number>; 15 >Beta : Symbol(Beta, Decl(extendedInterfaceGenericType.ts, 3, 1)) 17 interface Beta<T> extends Alpha<T> { 18 >Beta : Symbol(Beta, Decl(extendedInterfaceGenericType.ts, 3, 1))
|
D | elaboratedErrors.symbols | 38 interface Beta { y: number; } 39 >Beta : Symbol(Beta, Decl(elaboratedErrors.ts, 13, 30)) 40 >y : Symbol(Beta.y, Decl(elaboratedErrors.ts, 14, 16)) 46 var y: Beta; 48 >Beta : Symbol(Beta, Decl(elaboratedErrors.ts, 13, 30))
|
D | moduleOuterQualification.types | 3 interface Beta { } 5 // .d.ts emit: should be 'extends outer.Beta' 6 export interface Beta extends outer.Beta { }
|
D | qualifiedName_entity-name-resolution-does-not-affect-class-heritage.types | 10 class Beta extends Alpha.x { 11 >Beta : Beta
|
D | qualifiedName_entity-name-resolution-does-not-affect-class-heritage.symbols | 9 class Beta extends Alpha.x { 10 >Beta : Symbol(Beta, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts, 2…
|
D | instanceOfAssignability.types | 166 interface Beta { b } 178 function fn8(x: Alpha|Beta|Gamma) { 179 >fn8 : (x: Alpha | Beta | Gamma) => void 180 >x : Alpha | Beta | Gamma 184 >x : Alpha | Beta | Gamma
|
D | qualifiedName_ImportDeclarations-entity-names-referencing-a-var.symbols | 9 module Beta { 10 >Beta : Symbol(Beta, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 2, 1))
|
D | instanceOfAssignability.symbols | 176 interface Beta { b } 177 >Beta : Symbol(Beta, Decl(instanceOfAssignability.ts, 77, 21)) 178 >b : Symbol(Beta.b, Decl(instanceOfAssignability.ts, 78, 16)) 190 function fn8(x: Alpha|Beta|Gamma) { 194 >Beta : Symbol(Beta, Decl(instanceOfAssignability.ts, 77, 21))
|
D | extendedInterfaceGenericType.js | 4 makeBetaOfNumber(): Beta<number>; 6 interface Beta<T> extends Alpha<T> {
|
D | elaboratedErrors.js | 16 interface Beta { y: number; } 18 var y: Beta;
|
/third_party/rust/crates/version_check/src/ |
D | channel.rs | 7 Beta, enumerator 63 Some(Channel(Kind::Beta)) in parse() 75 Kind::Beta => "beta", in as_str() 104 Kind::Beta | Kind::Stable => false in supports_features() 163 Kind::Beta => true, in is_beta()
|
/third_party/typescript/tests/cases/compiler/ |
D | moduleOuterQualification.ts | 4 interface Beta { } interface 7 export interface Beta extends outer.Beta { } interface
|
D | extendedInterfaceGenericType.ts | 3 makeBetaOfNumber(): Beta<number>; 5 interface Beta<T> extends Alpha<T> { interface
|
D | elaboratedErrors.ts | 15 interface Beta { y: number; } interface 17 var y: Beta;
|
D | instanceOfAssignability.ts | 79 interface Beta { b } interface 82 function fn8(x: Alpha|Beta|Gamma) {
|
/third_party/typescript/tests/cases/conformance/jsdoc/ |
D | constructorTagOnClassConstructor.ts | 6 export class Beta { class 14 const arr = [Alpha, Beta]; constant
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | mock_distributions_test.cc | 51 EXPECT_NE(absl::Beta<double>(gen, 3.0, 2.0), 0.567); in TEST() 54 EXPECT_EQ(absl::Beta<double>(gen, 3.0, 2.0), 0.567); in TEST()
|