Home
last modified time | relevance | path

Searched refs:M2 (Results 1 - 25 of 72) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
H A DmergeTwoInterfaces2.js5 module M2 {
15 module M2 {
26 module M2 {
38 module M2 {
53 var M2; variable
54 (function (M2) {
58 })(M2 || (M2 = {}));
59 (function (M2) {
63 })(M2 || (M
[all...]
H A DmergeThreeInterfaces2.js5 module M2 {
15 module M2 {
31 module M2 {
43 module M2 {
57 module M2 {
73 var M2; variable
74 (function (M2) {
78 })(M2 || (M2 = {}));
79 (function (M2) {
[all...]
H A DassignmentToParenthesizedIdentifiers.js21 module M2 {
28 M2.M3 = { x: 3 }; // OK
29 (M2).M3 = { x: 3 }; // OK
30 (M2.M3) = { x: 3 }; // OK
32 M2.M3 = { x: '' }; // Error
33 (M2).M3 = { x: '' }; // Error
34 (M2.M3) = { x: '' }; // Error
91 var M2; variable
92 (function (M2) {
95 })(M3 = M2
[all...]
H A DenumMergingErrors.js32 module M2 {
35 module M2 {
38 module M2 {
111 var M2; variable
112 (function (M2) {
116 })(E1 = M2.E1 || (M2.E1 = {}));
117 })(M2 || (M2 = {}));
118 (function (M2) {
[all...]
H A DinvalidNestedModules.js17 module M2.X {
23 module M2 {
59 var M2; variable
60 (function (M2) {
69 })(X = M2.X || (M2.X = {}));
70 })(M2 || (M2 = {}));
71 (function (M2) {
74 })(X = M2
[all...]
H A DinstantiatedModule.js22 module M2 {
32 var m2: typeof M2;
33 var m2 = M2;
36 var a2: typeof M2.Point;
38 var a2 = M2.Point;
39 var o: M2.Point = a2.Origin();
42 var p2: M2.Point;
44 var p2 = new M2.Point();
79 var M2; variable
80 (function (M2) {
[all...]
H A DnestedModules.js15 module M2.X {
21 module M2 {
27 var m = M2.X;
32 var p: M2.X.Point;
43 var M2; variable
44 (function (M2) {
47 })(X = M2.X || (M2.X = {}));
48 })(M2 || (M2
[all...]
H A DnameWithRelativePaths.js12 export module M2 {
21 if(foo2.M2.x){
42 exports.M2 = void 0;
43 var M2; variable
44 (function (M2) {
45 M2.x = true;
46 })(M2 = exports.M2 || (exports.M2 = {}));
53 if (foo2.M2
[all...]
H A DexternalModuleResolution.js10 module M2 {
13 export = M2
21 var M2; variable
22 (function (M2) {
23 M2.Y = 1;
24 })(M2 || (M2 = {}));
25 module.exports = M2;
H A DexternalModuleResolution2.js4 module M2 {
7 export = M2
22 var M2; variable
23 (function (M2) {
24 M2.X = 1;
25 })(M2 || (M2 = {}));
26 module.exports = M2;
H A DinvalidInstantiatedModule.js7 module M2 {
12 var m = M2;
29 var M2; variable
30 (function (M2) {
31 M2.Point = 1;
32 })(M2 || (M2 = {}));
33 var m = M2;
H A DnonInstantiatedModule.js17 module M2 {
31 var p: M2.Point;
34 var p2: typeof M2.Point;
60 var M2; variable
61 (function (M2) {
68 })(Point = M2.Point || (M2.Point = {}));
69 })(M2 || (M2 = {}));
H A DcircularBaseTypes.js5 interface M2 extends M<M3> {}; // Error
6 type M3 = M2[keyof M2]; // Error
26 interface M2 extends M<M3> {
28 type M3 = M2[keyof M2];
H A DmoduleProperty1.js8 module M2 {
21 var M2; variable
22 (function (M2) {
25 M2.z = y; // property visible to any code
26 })(M2 || (M2 = {}));
H A DparserSuperExpression1.js8 module M1.M2 {
27 var M2;
28 (function (M2) {
37 })(M2 = M1.M2 || (M1.M2 = {}));
H A DparserSuperExpression4.js8 module M1.M2 {
27 var M2;
28 (function (M2) {
37 })(M2 = M1.M2 || (M1.M2 = {}));
H A DreturnTypeParameterWithModules.js7 module M2 {
27 var M2; variable
28 (function (M2) {
33 M2.compose = compose;
38 M2.compose2 = compose2;
40 })(M2 || (M2 = {}));
H A DrelativePathToDeclarationFile.js4 export declare module M2 {
9 export declare module M2 {
24 if(foo.M2.x){
25 var x = new relMod(other.M2.x.charCodeAt(0));
35 if (foo.M2.x) {
36 var x = new relMod(other.M2.x.charCodeAt(0));
H A DclassImplementsImportedInterface.js8 module M2 {
16 var M2; variable
17 (function (M2) {
24 })(M2 || (M2 = {}));
H A DambientInsideNonAmbient.js10 module M2 {
22 var M2; variable
23 (function (M2) {
24 })(M2 || (M2 = {}));
H A DenumMerging.js25 module M2 {
99 var M2; variable
100 (function (M2) {
106 })(EComp2 = M2.EComp2 || (M2.EComp2 = {}));
111 })(EComp2 = M2.EComp2 || (M2.EComp2 = {}));
113 })(M2 || (M2 = {}));
H A DtwoInterfacesDifferentRootModule.js14 module M2 {
34 var M2; variable
35 (function (M2) {
42 })(M2 || (M2 = {}));
H A DletAndVarRedeclaration.js48 module M2 {
96 var M2; variable
97 (function (M2) {
101 })(M2 || (M2 = {}));
H A DdeclFileTypeAnnotationVisibilityErrorTypeAlias.js22 module M2 {
68 var M2; variable
69 (function (M2) {
89 })(M2 || (M2 = {}));
113 declare module M2 {
H A Dwitness.js114 module M2 {
115 export var x = M2.x;
242 var M2; variable
243 (function (M2) {
244 M2.x = M2.x;
245 var y = M2.x;
247 })(M2 || (M2 = {}));

Completed in 11 milliseconds

123