TypeScript/tests/baselines/reference/iterableArrayPattern4.types
2015-04-15 16:44:20 -07:00

56 lines
1,001 B
Plaintext

=== tests/cases/conformance/es6/destructuring/iterableArrayPattern4.ts ===
var a: Bar, b: Bar[];
>a : Bar
>Bar : Bar
>b : Bar[]
>Bar : Bar
[a, ...b] = new FooIterator;
>[a, ...b] = new FooIterator : FooIterator
>[a, ...b] : Bar[]
>a : Bar
>...b : Bar
>b : Bar[]
>new FooIterator : FooIterator
>FooIterator : typeof FooIterator
class Bar { x }
>Bar : Bar
>x : any
class Foo extends Bar { y }
>Foo : Foo
>Bar : Bar
>y : any
class FooIterator {
>FooIterator : FooIterator
next() {
>next : () => { value: Foo; done: boolean; }
return {
>{ value: new Foo, done: false } : { value: Foo; done: boolean; }
value: new Foo,
>value : Foo
>new Foo : Foo
>Foo : typeof Foo
done: false
>done : boolean
>false : boolean
};
}
[Symbol.iterator]() {
>Symbol.iterator : symbol
>Symbol : SymbolConstructor
>iterator : symbol
return this;
>this : FooIterator
}
}