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

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

Issue 1896023005: Issue 26207. Fix for renaming top-level functions with offset 0. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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