/third_party/typescript/tests/baselines/reference/ |
D | allowImportClausesToMergeWithTypes.symbols | 2 export const zzz = 123; 3 >zzz : Symbol(zzz, Decl(b.ts, 0, 12)) 5 export default zzz; 6 >zzz : Symbol(zzz, Decl(b.ts, 0, 12)) 9 export default interface zzz { 10 >zzz : Symbol(zzz, Decl(a.ts, 0, 0), Decl(a.ts, 9, 8)) 13 >x : Symbol(zzz.x, Decl(a.ts, 0, 30)) 16 import zzz from "./b"; 17 >zzz : Symbol(zzz, Decl(a.ts, 0, 0), Decl(a.ts, 4, 6)) 19 const x: zzz = { x: "" }; [all …]
|
D | allowImportClausesToMergeWithTypes.types | 2 export const zzz = 123; 3 >zzz : 123 6 export default zzz; 7 >zzz : 123 10 export default interface zzz { 15 import zzz from "./b"; 16 >zzz : 123 18 const x: zzz = { x: "" }; 19 >x : zzz 24 zzz; [all …]
|
D | allowImportClausesToMergeWithTypes.js | 4 export const zzz = 123; constant 5 export default zzz; 8 export default interface zzz { 12 import zzz from "./b"; 14 const x: zzz = { x: "" }; 15 zzz; 17 export { zzz as default }; 20 import zzz from "./a"; 22 const x: zzz = { x: "" }; 23 zzz; [all …]
|
D | noCrashOnImportShadowing.types | 2 export const zzz = 123; 3 >zzz : 123 21 B.zzz; 22 >B.zzz : 123 24 >zzz : 123 39 B.zzz; 40 >B.zzz : any 42 >zzz : any 47 OriginalB.zzz; 48 >OriginalB.zzz : 123 [all …]
|
D | allowImportClausesToMergeWithTypes.errors.txt | 1 tests/cases/compiler/index.ts(4,1): error TS2693: 'zzz' only refers to a type, but is being used as… 6 export const zzz = 123; 7 export default zzz; 10 export default interface zzz { 14 import zzz from "./b"; 16 const x: zzz = { x: "" }; 17 zzz; 19 export { zzz as default }; 22 import zzz from "./a"; 24 const x: zzz = { x: "" }; [all …]
|
D | noCrashOnImportShadowing.symbols | 2 export const zzz = 123; 3 >zzz : Symbol(zzz, Decl(b.ts, 0, 12)) 21 B.zzz; 22 >B.zzz : Symbol(B.zzz, Decl(b.ts, 0, 12)) 24 >zzz : Symbol(B.zzz, Decl(b.ts, 0, 12)) 38 B.zzz; 43 OriginalB.zzz; 44 >OriginalB.zzz : Symbol(OriginalB.zzz, Decl(b.ts, 0, 12)) 46 >zzz : Symbol(OriginalB.zzz, Decl(b.ts, 0, 12))
|
D | noCrashOnImportShadowing.js | 4 export const zzz = 123; constant 14 B.zzz; 22 B.zzz; 25 OriginalB.zzz; 32 exports.zzz = void 0; 33 exports.zzz = 123; 39 B.zzz; 44 B.zzz; 46 OriginalB.zzz;
|
D | thisInConstructorParameter2.js | 6 constructor(public z = this, zz = this, zzz = (p = this) => this) { argument 7 zzz = (p = this) => this; function 16 function P(z, zz, zzz) { argument 20 if (zzz === void 0) { zzz = function (p) { function in P.P 26 zzz = function (p) { method in P.P
|
D | thisInConstructorParameter2.types | 13 constructor(public z = this, zz = this, zzz = (p = this) => this) { 18 >zzz : (p?: this) => this 24 zzz = (p = this) => this; 25 >zzz = (p = this) => this : (p?: this) => this 26 >zzz : (p?: this) => this
|
D | thisInConstructorParameter2.symbols | 13 constructor(public z = this, zz = this, zzz = (p = this) => this) { 18 >zzz : Symbol(zzz, Decl(thisInConstructorParameter2.ts, 4, 43)) 23 zzz = (p = this) => this; 24 >zzz : Symbol(zzz, Decl(thisInConstructorParameter2.ts, 4, 43))
|
D | noCrashOnImportShadowing.errors.txt | 6 export const zzz = 123; 16 B.zzz; 24 B.zzz; 29 OriginalB.zzz;
|
D | superAccess2.js | 12 constructor(public z = super, zz = super, zzz = () => super) { argument 53 function Q(z, zz, zzz) { argument 56 if (zzz === void 0) { zzz = function () { return _super.prototype.; }; } function in Q.Q
|
D | spreadOverwritesPropertyStrict.types | 132 return { a: 'zzz', ...anyrequired } // error 133 >{ a: 'zzz', ...anyrequired } : { a: any; } 135 >'zzz' : "zzz" 143 return { a: 'zzz', ...anyoptional } // ok 144 >{ a: 'zzz', ...anyoptional } : { a: any; } 146 >'zzz' : "zzz"
|
/third_party/typescript/tests/cases/compiler/ |
D | allowImportClausesToMergeWithTypes.ts | 2 export const zzz = 123; constant 3 export default zzz; 6 export default interface zzz { interface 10 import zzz from "./b"; 12 const x: zzz = { x: "" }; 13 zzz; 15 export { zzz as default }; 18 import zzz from "./a"; 20 const x: zzz = { x: "" }; 21 zzz;
|
D | noCrashOnImportShadowing.ts | 2 export const zzz = 123; constant 12 B.zzz; 20 B.zzz; 23 OriginalB.zzz;
|
/third_party/python/Lib/test/test_email/data/ |
D | msg_20.txt | 1 Return-Path: <bbb@zzz.org> 2 Delivered-To: bbb@zzz.org 3 Received: by mail.zzz.org (Postfix, from userid 889) 8 Message-ID: <15090.61304.110929.45684@aaa.zzz.org> 10 To: bbb@zzz.org 11 Cc: ccc@zzz.org 12 CC: ddd@zzz.org 13 cc: eee@zzz.org
|
D | msg_02.txt | 2 From: ppp-request@zzz.org 3 Sender: ppp-admin@zzz.org 4 To: ppp@zzz.org 16 ppp@zzz.org 19 http://www.zzz.org/mailman/listinfo/ppp 21 ppp-request@zzz.org 24 ppp-admin@zzz.org 51 To: ppp@zzz.org 66 To: ppp@zzz.org 80 To: ppp@zzz.org [all …]
|
D | msg_19.txt | 2 ppp@zzz.org 5 http://www.zzz.org/mailman/listinfo/ppp 7 ppp-request@zzz.org 10 ppp-admin@zzz.org 41 Ppp@zzz.org 42 http://www.zzz.org/mailman/listinfo/ppp
|
D | msg_03.txt | 1 Return-Path: <bbb@zzz.org> 2 Delivered-To: bbb@zzz.org 3 Received: by mail.zzz.org (Postfix, from userid 889) 5 Message-ID: <15090.61304.110929.45684@aaa.zzz.org> 7 To: bbb@zzz.org
|
D | msg_01.txt | 1 Return-Path: <bbb@zzz.org> 2 Delivered-To: bbb@zzz.org 3 Received: by mail.zzz.org (Postfix, from userid 889) 8 Message-ID: <15090.61304.110929.45684@aaa.zzz.org> 10 To: bbb@zzz.org
|
D | msg_29.txt | 1 Return-Path: <bbb@zzz.org> 2 Delivered-To: bbb@zzz.org 3 Received: by mail.zzz.org (Postfix, from userid 889) 11 Message-ID: <15090.61304.110929.45684@aaa.zzz.org> 13 To: bbb@zzz.org
|
D | msg_14.txt | 1 Return-Path: <bbb@zzz.org> 2 Delivered-To: bbb@zzz.org 3 Received: by mail.zzz.org (Postfix, from userid 889) 8 Message-ID: <15090.61304.110929.45684@aaa.zzz.org> 10 To: bbb@zzz.org
|
/third_party/boost/libs/vmd/test/ |
D | test_assert_fail_identifier.cxx | 18 #define A_TUPLE (*,#,zzz ()) in main() 20 #define BOOST_VMD_REGISTER_zzz (zzz) in main() 30 …BOOST_VMD_ELEM(0,BOOST_PP_TUPLE_ELEM(2,A_TUPLE),(dummy1,zzz),BOOST_VMD_RETURN_AFTER,BOOST_VMD_RETU… in main()
|
D | test_assert_is_identifier.cxx | 18 #define A_TUPLE (*,#,zzz) in main() 23 #define BOOST_VMD_REGISTER_zzz (zzz) in main() 34 BOOST_VMD_ASSERT_IS_IDENTIFIER(BOOST_PP_TUPLE_ELEM(2,A_TUPLE),zzz) in main()
|
D | test_is_identifier.cxx | 18 #define A_TUPLE (*,#,zzz) in main() 23 #define BOOST_VMD_REGISTER_zzz (zzz) in main() 34 BOOST_TEST(BOOST_VMD_IS_IDENTIFIER(BOOST_PP_TUPLE_ELEM(2,A_TUPLE),zzz)); in main()
|