Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: pkg/analyzer/lib/src/summary/idl.dart

Issue 2982463002: Deprecate UnlinkedVariable.visibleOffset/Length. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.fbs ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.fbs ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698