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

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

Issue 1816583002: Issue 26034#3. Fix for indexing references to synthetic fields. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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') | pkg/analyzer/lib/src/summary/index_unit.dart » ('j') | 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.fbs ('k') | pkg/analyzer/lib/src/summary/index_unit.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698