| 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 3330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3341 | 3341 |
| 3342 /** | 3342 /** |
| 3343 * Declared type of the variable. Absent if the type is implicit. | 3343 * Declared type of the variable. Absent if the type is implicit. |
| 3344 */ | 3344 */ |
| 3345 @Id(3) | 3345 @Id(3) |
| 3346 EntityRef get type; | 3346 EntityRef get type; |
| 3347 | 3347 |
| 3348 /** | 3348 /** |
| 3349 * If a local variable, the length of the visible range; zero otherwise. | 3349 * If a local variable, the length of the visible range; zero otherwise. |
| 3350 */ | 3350 */ |
| 3351 @deprecated |
| 3351 @informative | 3352 @informative |
| 3352 @Id(11) | 3353 @Id(11) |
| 3353 int get visibleLength; | 3354 int get visibleLength; |
| 3354 | 3355 |
| 3355 /** | 3356 /** |
| 3356 * If a local variable, the beginning of the visible range; zero otherwise. | 3357 * If a local variable, the beginning of the visible range; zero otherwise. |
| 3357 */ | 3358 */ |
| 3359 @deprecated |
| 3358 @informative | 3360 @informative |
| 3359 @Id(12) | 3361 @Id(12) |
| 3360 int get visibleOffset; | 3362 int get visibleOffset; |
| 3361 } | 3363 } |
| OLD | NEW |