| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * This file is an "idl" style description of the summary format. It | 6 * This file is an "idl" style description of the summary format. It |
| 7 * contains abstract classes which declare the interface for reading data from | 7 * contains abstract classes which declare the interface for reading data from |
| 8 * summaries. It is parsed and transformed into code that implements the | 8 * summaries. It is parsed and transformed into code that implements the |
| 9 * summary format. | 9 * summary format. |
| 10 * | 10 * |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 loadLibrary, | 334 loadLibrary, |
| 335 | 335 |
| 336 /** | 336 /** |
| 337 * The synthetic `index` getter of an enum. | 337 * The synthetic `index` getter of an enum. |
| 338 */ | 338 */ |
| 339 enumIndex, | 339 enumIndex, |
| 340 | 340 |
| 341 /** | 341 /** |
| 342 * The synthetic `values` getter of an enum. | 342 * The synthetic `values` getter of an enum. |
| 343 */ | 343 */ |
| 344 enumValues | 344 enumValues, |
| 345 |
| 346 /** |
| 347 * The containing unit itself. |
| 348 */ |
| 349 unit |
| 345 } | 350 } |
| 346 | 351 |
| 347 /** | 352 /** |
| 348 * Information about a dependency that exists between one library and another | 353 * Information about a dependency that exists between one library and another |
| 349 * due to an "import" declaration. | 354 * due to an "import" declaration. |
| 350 */ | 355 */ |
| 351 abstract class LinkedDependency extends base.SummaryClass { | 356 abstract class LinkedDependency extends base.SummaryClass { |
| 352 /** | 357 /** |
| 353 * URI for the compilation units listed in the library's `part` declarations. | 358 * URI for the compilation units listed in the library's `part` declarations. |
| 354 * These URIs are relative to the importing library. | 359 * These URIs are relative to the importing library. |
| (...skipping 2324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2679 */ | 2684 */ |
| 2680 @Id(11) | 2685 @Id(11) |
| 2681 int get visibleLength; | 2686 int get visibleLength; |
| 2682 | 2687 |
| 2683 /** | 2688 /** |
| 2684 * If a local variable, the beginning of the visible range; zero otherwise. | 2689 * If a local variable, the beginning of the visible range; zero otherwise. |
| 2685 */ | 2690 */ |
| 2686 @Id(12) | 2691 @Id(12) |
| 2687 int get visibleOffset; | 2692 int get visibleOffset; |
| 2688 } | 2693 } |
| OLD | NEW |