mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
b986c54079
Closes #3511
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import {List} from 'angular2/src/facade/collection';
|
|
|
|
export class TestIterable {
|
|
list: List<number>;
|
|
constructor() { this.list = []; }
|
|
|
|
[Symbol.iterator]() { return this.list[Symbol.iterator](); }
|
|
}
|