/third_party/typescript/tests/baselines/reference/ |
D | mixinClassesAnnotated.types | 67 interface Tagged { 72 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T { 73 >Tagged : <T extends Constructor<{}>>(superClass: T) => Constructor<Tagged> & T 101 >C : { new (...args: any[]): C; prototype: Tagged<any>.C; } & T 104 const Thing1 = Tagged(Derived); 105 >Thing1 : Constructor<Tagged> & typeof Derived 106 >Tagged(Derived) : Constructor<Tagged> & typeof Derived 107 >Tagged : <T extends Constructor<{}>>(superClass: T) => Constructor<Tagged> & T 110 const Thing2 = Tagged(Printable(Derived)); 111 >Thing2 : Constructor<Tagged> & Constructor<Printable> & { message: string; } & typeof Derived [all …]
|
D | mixinClassesAnonymous.types | 59 function Tagged<T extends Constructor<{}>>(superClass: T) { 60 >Tagged : <T extends Constructor<{}>>(superClass: T) => { new (...args: any[]): C; prototype: Tagge… 88 >C : { new (...args: any[]): C; prototype: Tagged<any>.C; } & T 91 const Thing1 = Tagged(Derived); 92 >Thing1 : { new (...args: any[]): Tagged<typeof Derived>.C; prototype: Tagged<any>.C; } & typeof De… 93 >Tagged(Derived) : { new (...args: any[]): Tagged<typeof Derived>.C; prototype: Tagged<any>.C; } & … 94 >Tagged : <T extends Constructor<{}>>(superClass: T) => { new (...args: any[]): C; prototype: Tagge… 97 const Thing2 = Tagged(Printable(Derived)); 98 …Tagged<{ new (...args: any[]): Printable<typeof Derived>.(Anonymous class); prototype: Printable<a… 99 …Tagged(Printable(Derived)) : { new (...args: any[]): Tagged<{ new (...args: any[]): Printable<type… [all …]
|
D | mixinClassesAnnotated.symbols | 71 interface Tagged { 72 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, … 75 >_tag : Symbol(Tagged._tag, Decl(mixinClassesAnnotated.ts, 24, 18)) 78 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T { 79 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, … 85 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, … 112 const Thing1 = Tagged(Derived); 114 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, … 117 const Thing2 = Tagged(Printable(Derived)); 119 >Tagged : Symbol(Tagged, Decl(mixinClassesAnnotated.ts, 26, 1), Decl(mixinClassesAnnotated.ts, 22, … [all …]
|
D | mixinClassesAnnotated.js | 26 interface Tagged { 30 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T { 41 const Thing1 = Tagged(Derived); 42 const Thing2 = Tagged(Printable(Derived)); 113 function Tagged(superClass) { class 129 var Thing1 = Tagged(Derived); 130 var Thing2 = Tagged(Printable(Derived)); 174 interface Tagged { 177 declare function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T; 178 declare const Thing1: Constructor<Tagged> & typeof Derived; [all …]
|
D | mixingApparentTypeOverrides.types | 6 function Tagged<T extends Constructor<{}>>(Base: T) { 7 >Tagged : <T extends Constructor<{}>>(Base: T) => { new (...args: any[]): (Anonymous class); protot… 11 …ag = ""; } } : { new (...args: any[]): (Anonymous class); prototype: Tagged<any>.(Anonymous cl… 47 class B extends Tagged(A) { 49 >Tagged(A) : Tagged<typeof A>.(Anonymous class) & A 50 >Tagged : <T extends Constructor<{}>>(Base: T) => { new (...args: any[]): (Anonymous class); protot…
|
D | mixingApparentTypeOverrides.symbols | 8 function Tagged<T extends Constructor<{}>>(Base: T) { 9 >Tagged : Symbol(Tagged, Decl(mixingApparentTypeOverrides.ts, 0, 47)) 46 class B extends Tagged(A) { 48 >Tagged : Symbol(Tagged, Decl(mixingApparentTypeOverrides.ts, 0, 47))
|
D | mixinClassesAnonymous.js | 21 function Tagged<T extends Constructor<{}>>(superClass: T) { 32 const Thing1 = Tagged(Derived); 33 const Thing2 = Tagged(Printable(Derived)); 112 function Tagged(superClass) { class 128 var Thing1 = Tagged(Derived); 129 var Thing2 = Tagged(Printable(Derived));
|
D | taggedTemplateChain.errors.txt | 1 …lChaining/taggedTemplateChain/taggedTemplateChain.ts(2,4): error TS1358: Tagged template expressio… 2 …lChaining/taggedTemplateChain/taggedTemplateChain.ts(4,4): error TS1358: Tagged template expressio… 9 !!! error TS1358: Tagged template expressions are not permitted in an optional chain. 13 !!! error TS1358: Tagged template expressions are not permitted in an optional chain.
|
D | mixingApparentTypeOverrides.js | 3 function Tagged<T extends Constructor<{}>>(Base: T) { 19 class B extends Tagged(A) { 47 function Tagged(Base) { class 79 }(Tagged(A)));
|
D | mixinClassesAnonymous.symbols | 58 function Tagged<T extends Constructor<{}>>(superClass: T) { 59 >Tagged : Symbol(Tagged, Decl(mixinClassesAnonymous.ts, 17, 1)) 89 const Thing1 = Tagged(Derived); 91 >Tagged : Symbol(Tagged, Decl(mixinClassesAnonymous.ts, 17, 1)) 94 const Thing2 = Tagged(Printable(Derived)); 96 >Tagged : Symbol(Tagged, Decl(mixinClassesAnonymous.ts, 17, 1))
|
D | operatorsAndIntersectionTypes.types | 2 type Guid = string & { $Guid }; // Tagged string type 6 type SerialNo = number & { $SerialNo }; // Tagged number type
|
D | operatorsAndIntersectionTypes.symbols | 2 type Guid = string & { $Guid }; // Tagged string type 6 type SerialNo = number & { $SerialNo }; // Tagged number type
|
/third_party/typescript/tests/cases/conformance/classes/ |
D | mixinClassesAnnotated.ts | 27 interface Tagged { interface 31 function Tagged<T extends Constructor<{}>>(superClass: T): Constructor<Tagged> & T { function 42 const Thing1 = Tagged(Derived); 43 const Thing2 = Tagged(Printable(Derived));
|
D | mixinClassesAnonymous.ts | 20 function Tagged<T extends Constructor<{}>>(superClass: T) { function 31 const Thing1 = Tagged(Derived); 32 const Thing2 = Tagged(Printable(Derived));
|
/third_party/openssl/test/recipes/30-test_evp_data/ |
D | evpmac_common.txt | 343 Custom = "My Tagged Application" 349 Custom = "My Tagged Application" 356 Custom = "My Tagged Application" 370 Custom = "My Tagged Application" 385 Custom = "My Tagged Application" 392 Custom = "My Tagged Application" 400 Custom = "My Tagged Application" 414 Custom = "My Tagged Application" 440 Custom = "My Tagged Application" 447 Custom = "My Tagged Application" [all …]
|
/third_party/icu/vendor/double-conversion/upstream/ |
D | Changelog | 105 Tagged v3.0.0. 134 Tagged v2.0.1. 140 Tagged v2.0.0. 145 Tagged v1.1.2. 152 Tagged v1.1.1. 158 Tagged v1.1 (based on b28450f33e1db493948a535d8f84e88fa211bd10). 161 Tagged v1.0 (based on eda0196e9ac8fcdf59e92cb62885ee0af5391969).
|
/third_party/typescript/tests/cases/compiler/ |
D | mixingApparentTypeOverrides.ts | 2 function Tagged<T extends Constructor<{}>>(Base: T) { function 18 class B extends Tagged(A) {
|
/third_party/node/deps/v8/src/objects/ |
D | property.cc | 112 Representation::Tagged(), any_type); in DataConstant() 120 PropertyConstness::kConst, Representation::Tagged(), 0); in AccessorConstant()
|
D | property-details.h | 115 static constexpr Representation Tagged() { return Representation(kTagged); } in Tagged() function 178 return Representation::Tagged(); in MostGenericInPlaceChange() 194 return Representation::Tagged(); in generalize()
|
D | field-index.h | 30 Representation representation = Representation::Tagged());
|
/third_party/PyYAML/tests/data/ |
D | spec-08-12.canonical | 6 !!str "Tagged",
|
D | spec-08-12.data | 4 !!str 'Tagged',
|
/third_party/json/docs/mkdocs/docs/features/binary_formats/ |
D | cbor.md | 89 !!! info "Tagged items" 167 !!! warning "Tagged items" 169 …Tagged items will throw a parse error by default. They can be ignored by passing `cbor_tag_handler…
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-struct.cc | 61 PropertyConstness::kMutable, Representation::Tagged(), i); in BUILTIN()
|
/third_party/node/deps/ngtcp2/ |
D | README.md | 12 in the default branch (currently named `main` in each). Tagged versions do not
|