| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library test.index.store_single_source_container; |
| 6 |
| 7 import 'package:analyzer/src/generated/source.dart'; |
| 8 |
| 9 |
| 10 /** |
| 11 * A [SourceContainer] with a single [Source]. |
| 12 */ |
| 13 class SingleSourceContainer implements SourceContainer { |
| 14 final Source _source; |
| 15 |
| 16 SingleSourceContainer(this._source); |
| 17 |
| 18 @override |
| 19 bool contains(Source source) => source == _source; |
| 20 } |
| OLD | NEW |