TypeScript/tests/baselines/reference/emitMemberAccessExpression.types

47 lines
2.5 KiB
Text
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, Symbol(OData,Decl(emitMemberAccessExpression_file3.ts,2,11))
2014-08-15 23:33:16 +02:00
module Microsoft.PeopleAtWork.Model {
>Microsoft : typeof Microsoft, Symbol(Microsoft,Decl(emitMemberAccessExpression_file2.ts,1,13),Decl(emitMemberAccessExpression_file3.ts,2,23))
>PeopleAtWork : typeof PeopleAtWork, Symbol(PeopleAtWork,Decl(emitMemberAccessExpression_file2.ts,2,17),Decl(emitMemberAccessExpression_file3.ts,3,17))
>Model : typeof Model, Symbol(Model,Decl(emitMemberAccessExpression_file2.ts,2,30),Decl(emitMemberAccessExpression_file3.ts,3,30))
2014-08-15 23:33:16 +02:00
export class KnockoutExtentions {
>KnockoutExtentions : KnockoutExtentions, Symbol(KnockoutExtentions,Decl(emitMemberAccessExpression_file3.ts,3,37))
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, Symbol(Microsoft,Decl(emitMemberAccessExpression_file2.ts,1,13),Decl(emitMemberAccessExpression_file3.ts,2,23))
>PeopleAtWork : typeof PeopleAtWork, Symbol(PeopleAtWork,Decl(emitMemberAccessExpression_file2.ts,2,17),Decl(emitMemberAccessExpression_file3.ts,3,17))
>Model : typeof Model, Symbol(Model,Decl(emitMemberAccessExpression_file2.ts,2,30),Decl(emitMemberAccessExpression_file3.ts,3,30))
2014-08-15 23:33:16 +02:00
export class _Person {
>_Person : _Person, Symbol(_Person,Decl(emitMemberAccessExpression_file2.ts,2,37))
2014-08-15 23:33:16 +02:00
public populate(raw: any) {
>populate : (raw: any) => void, Symbol(populate,Decl(emitMemberAccessExpression_file2.ts,3,26))
>raw : any, Symbol(raw,Decl(emitMemberAccessExpression_file2.ts,4,24))
2014-08-15 23:33:16 +02:00
var res = Model.KnockoutExtentions;
>res : typeof KnockoutExtentions, Symbol(res,Decl(emitMemberAccessExpression_file2.ts,5,15))
>Model.KnockoutExtentions : typeof KnockoutExtentions, Symbol(KnockoutExtentions,Decl(emitMemberAccessExpression_file3.ts,3,37))
>Model : typeof Model, Symbol(Model,Decl(emitMemberAccessExpression_file2.ts,2,30),Decl(emitMemberAccessExpression_file3.ts,3,30))
>KnockoutExtentions : typeof KnockoutExtentions, Symbol(KnockoutExtentions,Decl(emitMemberAccessExpression_file3.ts,3,37))
2014-08-15 23:33:16 +02:00
}
}
}