Accepted baselines.

This commit is contained in:
Daniel Rosenwasser 2015-09-30 14:32:11 -07:00
parent 48de0b6ff6
commit cbca15435f
2 changed files with 2 additions and 2 deletions

View file

@ -11,6 +11,6 @@ module Foo {
interface B extends A { b: string; } interface B extends A { b: string; }
>B : Symbol(B, Decl(reboundBaseClassSymbol.ts, 2, 14)) >B : Symbol(B, Decl(reboundBaseClassSymbol.ts, 2, 14))
>A : Symbol(A, Decl(reboundBaseClassSymbol.ts, 2, 7)) >A : Symbol(A, Decl(reboundBaseClassSymbol.ts, 0, 0))
>b : Symbol(b, Decl(reboundBaseClassSymbol.ts, 3, 27)) >b : Symbol(b, Decl(reboundBaseClassSymbol.ts, 3, 27))
} }

View file

@ -12,6 +12,6 @@ module Foo {
interface B extends A { b: string; } interface B extends A { b: string; }
>B : B >B : B
>A : any >A : A
>b : string >b : string
} }