| OLD | NEW |
| 1 // Copyright 2013 Google Inc. All Rights Reserved. | 1 // Copyright 2013 Google Inc. All Rights Reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 _CountIterator(num this._start, this._step); | 38 _CountIterator(num this._start, this._step); |
| 39 | 39 |
| 40 num get current => _current; | 40 num get current => _current; |
| 41 | 41 |
| 42 bool moveNext() { | 42 bool moveNext() { |
| 43 _current = (_current == null) ? _start : _current + _step; | 43 _current = (_current == null) ? _start : _current + _step; |
| 44 return true; | 44 return true; |
| 45 } | 45 } |
| 46 } | 46 } |
| OLD | NEW |