| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 * Not a synthetic element. | 287 * Not a synthetic element. |
| 288 */ | 288 */ |
| 289 notSynthetic, | 289 notSynthetic, |
| 290 | 290 |
| 291 /** | 291 /** |
| 292 * The unnamed synthetic constructor a class element. | 292 * The unnamed synthetic constructor a class element. |
| 293 */ | 293 */ |
| 294 constructor, | 294 constructor, |
| 295 | 295 |
| 296 /** | 296 /** |
| 297 * The synthetic field element. |
| 298 */ |
| 299 field, |
| 300 |
| 301 /** |
| 297 * The synthetic getter of a property introducing element. | 302 * The synthetic getter of a property introducing element. |
| 298 */ | 303 */ |
| 299 getter, | 304 getter, |
| 300 | 305 |
| 301 /** | 306 /** |
| 302 * The synthetic setter of a property introducing element. | 307 * The synthetic setter of a property introducing element. |
| 303 */ | 308 */ |
| 304 setter, | 309 setter, |
| 305 | 310 |
| 306 /** | 311 /** |
| (...skipping 2112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2419 */ | 2424 */ |
| 2420 @Id(11) | 2425 @Id(11) |
| 2421 int get visibleLength; | 2426 int get visibleLength; |
| 2422 | 2427 |
| 2423 /** | 2428 /** |
| 2424 * If a local variable, the beginning of the visible range; zero otherwise. | 2429 * If a local variable, the beginning of the visible range; zero otherwise. |
| 2425 */ | 2430 */ |
| 2426 @Id(12) | 2431 @Id(12) |
| 2427 int get visibleOffset; | 2432 int get visibleOffset; |
| 2428 } | 2433 } |
| OLD | NEW |