TypeScript/tests/baselines/reference/emitMemberAccessExpression.types

47 lines
1.3 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/emitMemberAccessExpression_file3.ts ===
/// <reference path="emitMemberAccessExpression_file2.ts" />
/// <reference path="emitMemberAccessExpression_file1.ts" />
declare var OData: any;
>OData : any
2014-08-15 23:33:16 +02:00
module Microsoft.PeopleAtWork.Model {
>Microsoft : typeof Microsoft
>PeopleAtWork : typeof PeopleAtWork
>Model : typeof Model
2014-08-15 23:33:16 +02:00
export class KnockoutExtentions {
>KnockoutExtentions : KnockoutExtentions
2014-08-15 23:33:16 +02:00
}
}
=== tests/cases/compiler/emitMemberAccessExpression_file1.ts ===
/// <reference path="emitMemberAccessExpression_file3.ts" />
2015-04-13 21:36:11 +02:00
"use strict";
>"use strict" : string
=== tests/cases/compiler/emitMemberAccessExpression_file2.ts ===
2014-08-15 23:33:16 +02:00
/// <reference path="emitMemberAccessExpression_file3.ts" />
"use strict";
2015-04-13 21:36:11 +02:00
>"use strict" : string
2014-08-15 23:33:16 +02:00
module Microsoft.PeopleAtWork.Model {
>Microsoft : typeof Microsoft
>PeopleAtWork : typeof PeopleAtWork
>Model : typeof Model
2014-08-15 23:33:16 +02:00
export class _Person {
>_Person : _Person
2014-08-15 23:33:16 +02:00
public populate(raw: any) {
>populate : (raw: any) => void
>raw : any
2014-08-15 23:33:16 +02:00
var res = Model.KnockoutExtentions;
>res : typeof KnockoutExtentions
>Model.KnockoutExtentions : typeof KnockoutExtentions
>Model : typeof Model
>KnockoutExtentions : typeof KnockoutExtentions
2014-08-15 23:33:16 +02:00
}
}
}