| 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 /** | |
| 6 * Format-agnostic infrastructure for building summary objects. | |
| 7 */ | |
| 8 library analyzer.src.summary.builder; | |
| 9 | |
| 10 /** | |
| 11 * Instances of this class encapsulate the necessary state to keep track of a | |
| 12 * serialized summary that is in the process of being built. | |
| 13 * | |
| 14 * This class is intended to be passed to the constructors of the summary | |
| 15 * Builder classes. | |
| 16 */ | |
| 17 class BuilderContext { | |
| 18 // Note: at the moment this is a placeholder class since the current | |
| 19 // serialization format (JSON) doesn't require any state tracking. If/when | |
| 20 // we switch to a serialization format that requires state tracking, the | |
| 21 // state will be stored here. | |
| 22 } | |
| OLD | NEW |