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

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

Issue 1856883002: Serialize assignment expressions. (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
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 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after
1821 * Perform `target *= operand`. 1821 * Perform `target *= operand`.
1822 */ 1822 */
1823 multiply, 1823 multiply,
1824 1824
1825 /** 1825 /**
1826 * Perform `target /= operand`. 1826 * Perform `target /= operand`.
1827 */ 1827 */
1828 divide, 1828 divide,
1829 1829
1830 /** 1830 /**
1831 * Perform `target ~= operand`. 1831 * Perform `target ~/= operand`.
1832 */ 1832 */
1833 floorDivide, 1833 floorDivide,
1834 1834
1835 /** 1835 /**
1836 * Perform `target %= operand`. 1836 * Perform `target %= operand`.
1837 */ 1837 */
1838 modulo, 1838 modulo,
1839 1839
1840 /** 1840 /**
1841 * Perform `target += operand`. 1841 * Perform `target += operand`.
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
2567 */ 2567 */
2568 @Id(11) 2568 @Id(11)
2569 int get visibleLength; 2569 int get visibleLength;
2570 2570
2571 /** 2571 /**
2572 * If a local variable, the beginning of the visible range; zero otherwise. 2572 * If a local variable, the beginning of the visible range; zero otherwise.
2573 */ 2573 */
2574 @Id(12) 2574 @Id(12)
2575 int get visibleOffset; 2575 int get visibleOffset;
2576 } 2576 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.fbs ('k') | pkg/analyzer/lib/src/summary/summarize_const_expr.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698