TypeScript/tests/baselines/reference/iterableArrayPattern4.types

56 lines
2.1 KiB
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/destructuring/iterableArrayPattern4.ts ===
var a: Bar, b: Bar[];
2015-04-13 23:01:57 +02:00
>a : Bar, Symbol(a, Decl(iterableArrayPattern4.ts, 0, 3))
>Bar : Bar, Symbol(Bar, Decl(iterableArrayPattern4.ts, 1, 28))
>b : Bar[], Symbol(b, Decl(iterableArrayPattern4.ts, 0, 11))
>Bar : Bar, Symbol(Bar, Decl(iterableArrayPattern4.ts, 1, 28))
[a, ...b] = new FooIterator;
>[a, ...b] = new FooIterator : FooIterator
>[a, ...b] : Bar[]
2015-04-13 23:01:57 +02:00
>a : Bar, Symbol(a, Decl(iterableArrayPattern4.ts, 0, 3))
>...b : Bar
2015-04-13 23:01:57 +02:00
>b : Bar[], Symbol(b, Decl(iterableArrayPattern4.ts, 0, 11))
>new FooIterator : FooIterator
2015-04-13 23:01:57 +02:00
>FooIterator : typeof FooIterator, Symbol(FooIterator, Decl(iterableArrayPattern4.ts, 3, 27))
class Bar { x }
2015-04-13 23:01:57 +02:00
>Bar : Bar, Symbol(Bar, Decl(iterableArrayPattern4.ts, 1, 28))
>x : any, Symbol(x, Decl(iterableArrayPattern4.ts, 2, 11))
class Foo extends Bar { y }
2015-04-13 23:01:57 +02:00
>Foo : Foo, Symbol(Foo, Decl(iterableArrayPattern4.ts, 2, 15))
>Bar : Bar, Symbol(Bar, Decl(iterableArrayPattern4.ts, 1, 28))
>y : any, Symbol(y, Decl(iterableArrayPattern4.ts, 3, 23))
class FooIterator {
2015-04-13 23:01:57 +02:00
>FooIterator : FooIterator, Symbol(FooIterator, Decl(iterableArrayPattern4.ts, 3, 27))
next() {
2015-04-13 23:01:57 +02:00
>next : () => { value: Foo; done: boolean; }, Symbol(next, Decl(iterableArrayPattern4.ts, 4, 19))
return {
>{ value: new Foo, done: false } : { value: Foo; done: boolean; }
value: new Foo,
2015-04-13 23:01:57 +02:00
>value : Foo, Symbol(value, Decl(iterableArrayPattern4.ts, 6, 16))
>new Foo : Foo
2015-04-13 23:01:57 +02:00
>Foo : typeof Foo, Symbol(Foo, Decl(iterableArrayPattern4.ts, 2, 15))
done: false
2015-04-13 23:01:57 +02:00
>done : boolean, Symbol(done, Decl(iterableArrayPattern4.ts, 7, 27))
2015-04-13 21:36:11 +02:00
>false : boolean
};
}
[Symbol.iterator]() {
2015-04-13 23:01:57 +02:00
>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;
2015-04-13 23:01:57 +02:00
>this : FooIterator, Symbol(FooIterator, Decl(iterableArrayPattern4.ts, 3, 27))
}
}