TypeScript/tests/baselines/reference/iterableArrayPattern13.types
2015-04-13 14:29:37 -07:00

52 lines
2 KiB
Plaintext

=== tests/cases/conformance/es6/destructuring/iterableArrayPattern13.ts ===
function fun([a, ...b]) { }
>fun : ([a, ...b]: Iterable<any>) => void, Symbol(fun, Decl(iterableArrayPattern13.ts, 0, 0))
>a : any, Symbol(a, Decl(iterableArrayPattern13.ts, 0, 14))
>b : any[], Symbol(b, Decl(iterableArrayPattern13.ts, 0, 16))
fun(new FooIterator);
>fun(new FooIterator) : void
>fun : ([a, ...b]: Iterable<any>) => void, Symbol(fun, Decl(iterableArrayPattern13.ts, 0, 0))
>new FooIterator : FooIterator
>FooIterator : typeof FooIterator, Symbol(FooIterator, Decl(iterableArrayPattern13.ts, 3, 27))
class Bar { x }
>Bar : Bar, Symbol(Bar, Decl(iterableArrayPattern13.ts, 1, 21))
>x : any, Symbol(x, Decl(iterableArrayPattern13.ts, 2, 11))
class Foo extends Bar { y }
>Foo : Foo, Symbol(Foo, Decl(iterableArrayPattern13.ts, 2, 15))
>Bar : Bar, Symbol(Bar, Decl(iterableArrayPattern13.ts, 1, 21))
>y : any, Symbol(y, Decl(iterableArrayPattern13.ts, 3, 23))
class FooIterator {
>FooIterator : FooIterator, Symbol(FooIterator, Decl(iterableArrayPattern13.ts, 3, 27))
next() {
>next : () => { value: Foo; done: boolean; }, Symbol(next, Decl(iterableArrayPattern13.ts, 4, 19))
return {
>{ value: new Foo, done: false } : { value: Foo; done: boolean; }
value: new Foo,
>value : Foo, Symbol(value, Decl(iterableArrayPattern13.ts, 6, 16))
>new Foo : Foo
>Foo : typeof Foo, Symbol(Foo, Decl(iterableArrayPattern13.ts, 2, 15))
done: false
>done : boolean, Symbol(done, Decl(iterableArrayPattern13.ts, 7, 27))
>false : boolean
};
}
[Symbol.iterator]() {
>Symbol.iterator : symbol, Symbol(SymbolConstructor.iterator, Decl(lib.d.ts, 1236, 31))
>Symbol : SymbolConstructor, Symbol(Symbol, Decl(lib.d.ts, 1186, 52), Decl(lib.d.ts, 1262, 11))
>iterator : symbol, Symbol(SymbolConstructor.iterator, Decl(lib.d.ts, 1236, 31))
return this;
>this : FooIterator, Symbol(FooIterator, Decl(iterableArrayPattern13.ts, 3, 27))
}
}