1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
=== tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration9.ts ===
interface I1 {
>I1 : Symbol(I1, Decl(parserInterfaceDeclaration9.ts, 0, 0))
get foo(): number,
>foo : Symbol(I1.foo, Decl(parserInterfaceDeclaration9.ts, 0, 14), Decl(parserInterfaceDeclaration9.ts, 1, 22))
set foo(value: number),
>foo : Symbol(I1.foo, Decl(parserInterfaceDeclaration9.ts, 0, 14), Decl(parserInterfaceDeclaration9.ts, 1, 22))
>value : Symbol(value, Decl(parserInterfaceDeclaration9.ts, 2, 12))
}
interface I2 {
>I2 : Symbol(I2, Decl(parserInterfaceDeclaration9.ts, 3, 1))
get foo(): number;
>foo : Symbol(I2.foo, Decl(parserInterfaceDeclaration9.ts, 5, 14), Decl(parserInterfaceDeclaration9.ts, 6, 22))
set foo(value: number);
>foo : Symbol(I2.foo, Decl(parserInterfaceDeclaration9.ts, 5, 14), Decl(parserInterfaceDeclaration9.ts, 6, 22))
>value : Symbol(value, Decl(parserInterfaceDeclaration9.ts, 7, 12))
}
interface I3 {
>I3 : Symbol(I3, Decl(parserInterfaceDeclaration9.ts, 8, 1))
get foo(): number
>foo : Symbol(I3.foo, Decl(parserInterfaceDeclaration9.ts, 10, 14), Decl(parserInterfaceDeclaration9.ts, 11, 21))
set foo(value: number)
>foo : Symbol(I3.foo, Decl(parserInterfaceDeclaration9.ts, 10, 14), Decl(parserInterfaceDeclaration9.ts, 11, 21))
>value : Symbol(value, Decl(parserInterfaceDeclaration9.ts, 12, 12))
}
|