Home
last modified time | relevance | path

Searched refs:c5 (Results 1 – 25 of 415) sorted by relevance

12345678910>>...17

/third_party/typescript/tests/baselines/reference/
DmergedClassInterface.types45 var c5 : C5;
46 >c5 : C5
48 c5.x1;
49 >c5.x1 : number
50 >c5 : C5
53 c5.x2;
54 >c5.x2 : number
55 >c5 : C5
58 c5.x3;
59 >c5.x3 : number
[all …]
DmergedClassInterface.js37 var c5 : C5; variable
38 c5.x1;
39 c5.x2;
40 c5.x3;
41 c5.x4;
65 var c5; variable
66 c5.x1;
67 c5.x2;
68 c5.x3;
69 c5.x4;
[all …]
DmergedClassInterface.symbols55 var c5 : C5;
56 >c5 : Symbol(c5, Decl(file1.ts, 33, 3))
59 c5.x1;
60 >c5.x1 : Symbol(C5.x1, Decl(file1.ts, 16, 14))
61 >c5 : Symbol(c5, Decl(file1.ts, 33, 3))
64 c5.x2;
65 >c5.x2 : Symbol(C5.x2, Decl(file1.ts, 20, 18))
66 >c5 : Symbol(c5, Decl(file1.ts, 33, 3))
69 c5.x3;
70 >c5.x3 : Symbol(C5.x3, Decl(file1.ts, 24, 14))
[all …]
DconstDeclarations.symbols9 const c3 = 0, c4 :string = "", c5 = null;
12 >c5 : Symbol(c5, Decl(constDeclarations.ts, 3, 30))
20 for(const c5 = 0, c6 = 0; c5 < c6; ) { break; }
21 >c5 : Symbol(c5, Decl(constDeclarations.ts, 9, 9))
23 >c5 : Symbol(c5, Decl(constDeclarations.ts, 9, 9))
DcommentsClass.js23 class c5 { class
26 var i5 = new c5();
27 var i5_c = c5;
102 var c5 = /** @class */ (function () { function
103 function c5() { function
105 return c5;
107 var i5 = new c5();
108 var i5_c = c5;
169 declare class c5 {
172 declare var i5: c5;
[all …]
DconstDeclarations.js5 const c3 = 0, c4 :string = "", c5 = null; constant
11 for(const c5 = 0, c6 = 0; c5 < c6; ) { break; }
17 const c3 = 0, c4 = "", c5 = null; constant
21 for (const c5 = 0, c6 = 0; c5 < c6;) {
29 declare const c3 = 0, c4: string, c5: any;
DaugmentedTypesExternalModule1.symbols5 class c5 { public foo() { } }
6 >c5 : Symbol(c5, Decl(augmentedTypesExternalModule1.ts, 0, 17), Decl(augmentedTypesExternalModule1.…
7 >foo : Symbol(c5.foo, Decl(augmentedTypesExternalModule1.ts, 1, 10))
9 module c5 { } // should be ok everywhere
10 >c5 : Symbol(c5, Decl(augmentedTypesExternalModule1.ts, 0, 17), Decl(augmentedTypesExternalModule1.…
DconstDeclarations.types11 const c3 = 0, c4 :string = "", c5 = null;
16 >c5 : any
28 for(const c5 = 0, c6 = 0; c5 < c6; ) { break; }
29 >c5 : 0
33 >c5 < c6 : boolean
34 >c5 : 0
DcommentsClass.types50 class c5 {
51 >c5 : c5
56 var i5 = new c5();
57 >i5 : c5
58 >new c5() : c5
59 >c5 : typeof c5
61 var i5_c = c5;
62 >i5_c : typeof c5
63 >c5 : typeof c5
DaugmentedTypesExternalModule1.js3 class c5 { public foo() { } } class
4 module c5 { } // should be ok everywhere
12 var c5 = /** @class */ (function () { function
13 function c5() { function
15 c5.prototype.foo = function () { };
16 return c5;
DaugmentedTypesClass3.js3 class c5 { public foo() { } } class
4 module c5 { } // should be ok
18 var c5 = /** @class */ (function () { function
19 function c5() { function
21 c5.prototype.foo = function () { };
22 return c5;
DbpSpan_const.baseline14 3 >const c3 = 0, c4 :string = "", c5 = null;
19 3 >const c3 = 0, c4 :string = "", c5 = null;
24 3 >const c3 = 0, c4 :string = "", c5 = null;
27 >c5 = null
46 5 >for(const c5 = 0, c6 = 0; c5 < c6; ) { break; }
49 >const c5 = 0
51 5 >for(const c5 = 0, c6 = 0; c5 < c6; ) { break; }
56 5 >for(const c5 = 0, c6 = 0; c5 < c6; ) { break; }
59 >c5 < c6
61 5 >for(const c5 = 0, c6 = 0; c5 < c6; ) { break; }
DaugmentedTypesClass3.symbols3 class c5 { public foo() { } }
4 >c5 : Symbol(c5, Decl(augmentedTypesClass3.ts, 0, 0), Decl(augmentedTypesClass3.ts, 1, 29))
5 >foo : Symbol(c5.foo, Decl(augmentedTypesClass3.ts, 1, 10))
7 module c5 { } // should be ok
8 >c5 : Symbol(c5, Decl(augmentedTypesClass3.ts, 0, 0), Decl(augmentedTypesClass3.ts, 1, 29))
DaugmentedTypesExternalModule1.types6 class c5 { public foo() { } }
7 >c5 : c5
10 module c5 { } // should be ok everywhere
DdestructuringVariableDeclaration2.js15 var [c1, c2, { c3: c4, c5 }, , ...c6] = [1, 2, { c3: 4, c5: 0 }]; // Error property
34 var _g = [1, 2, { c3: 4, c5: 0 }], c1 = _g[0], c2 = _g[1], _h = _g[2], c4 = _h.c3, c5 = _h.c5, c6 =… property
DcommentsClass.symbols47 class c5 {
48 >c5 : Symbol(c5, Decl(commentsClass.ts, 19, 14))
51 >s1 : Symbol(c5.s1, Decl(commentsClass.ts, 21, 10))
53 var i5 = new c5();
55 >c5 : Symbol(c5, Decl(commentsClass.ts, 19, 14))
57 var i5_c = c5;
59 >c5 : Symbol(c5, Decl(commentsClass.ts, 19, 14))
DmixinAccessModifiers.js71 f(c4: C4, c5: C5, c6: C6) {
73 c5.p;
84 f(c4: C4, c5: C5, c6: C6) {
86 c5.p;
97 f(c4: C4, c5: C5, c6: C6) {
99 c5.p;
250 C4.prototype.f = function (c4, c5, c6) { argument
252 c5.p;
267 C5.prototype.f = function (c4, c5, c6) { argument
269 c5.p;
[all …]
DmixinAccessModifiers.types173 f(c4: C4, c5: C5, c6: C6) {
174 >f : (c4: C4, c5: C5, c6: C6) => void
176 >c5 : C5
184 c5.p;
185 >c5.p : string
186 >c5 : C5
221 f(c4: C4, c5: C5, c6: C6) {
222 >f : (c4: C4, c5: C5, c6: C6) => void
224 >c5 : C5
232 c5.p;
[all …]
DdynamicNames.js54 export const c5 = 1; constant
59 [c5]: string;
64 [c5]: string;
71 [c5]: string;
129 [c5]: "a",
135 export const o1_c5 = o1[c5];
167 exports.o2 = exports.o1_s2 = exports.o1_c5 = exports.o1_c4 = exports.o1 = exports.s2 = exports.c5 =…
176 exports.c5 = 1;
206 [exports.c5]: "a",
211 exports.o1_c5 = exports.o1[exports.c5];
[all …]
DdestructuringVariableDeclaration2.types55 var [c1, c2, { c3: c4, c5 }, , ...c6] = [1, 2, { c3: 4, c5: 0 }]; // Error
60 >c5 : number
63 >[1, 2, { c3: 4, c5: 0 }] : [number, number, { c3: number; c5: number; }]
66 >{ c3: 4, c5: 0 } : { c3: number; c5: number; }
69 >c5 : number
DcommentsOverloads.types372 class c5 {
373 >c5 : c5
375 /** c5 1*/
379 /** c5 2*/
383 /** c5 implementation*/
441 var c5_i_1 = new c5(10);
442 >c5_i_1 : c5
443 >new c5(10) : c5
444 >c5 : typeof c5
447 var c5_i_2 = new c5("hello");
[all …]
DaugmentedTypesClass3.types3 class c5 { public foo() { } }
4 >c5 : c5
7 module c5 { } // should be ok
/third_party/typescript/tests/cases/conformance/classes/classDeclarations/
DmergedClassInterface.ts38 var c5 : C5; variable
39 c5.x1;
40 c5.x2;
41 c5.x3;
42 c5.x4;
/third_party/typescript/tests/cases/conformance/classes/
DmixinAccessModifiers.ts72 f(c4: C4, c5: C5, c6: C6) {
74 c5.p;
85 f(c4: C4, c5: C5, c6: C6) {
87 c5.p;
98 f(c4: C4, c5: C5, c6: C6) {
100 c5.p;
/third_party/typescript/tests/cases/compiler/
DconstDeclarations.ts7 const c3 = 0, c4 :string = "", c5 = null; constant
13 for(const c5 = 0, c6 = 0; c5 < c6; ) { break; } constant

12345678910>>...17