| 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 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |