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

Side by Side Diff: pkg/compiler/lib/src/util/enumset.dart

Issue 1859343004: dartfmt pkg/compiler (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/compiler/lib/src/util/emptyset.dart ('k') | pkg/compiler/lib/src/util/indentation.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 library dart2js.util.enumset; 5 library dart2js.util.enumset;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 8
9 /// A set of enum values based on a bit mask of the shifted enum indices. 9 /// A set of enum values based on a bit mask of the shifted enum indices.
10 abstract class EnumSet<E> { 10 abstract class EnumSet<E> {
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 } 189 }
190 _mask >>= 1; 190 _mask >>= 1;
191 _index--; 191 _index--;
192 if (_current != null) { 192 if (_current != null) {
193 break; 193 break;
194 } 194 }
195 } 195 }
196 return _current != null; 196 return _current != null;
197 } 197 }
198 } 198 }
199 } 199 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/util/emptyset.dart ('k') | pkg/compiler/lib/src/util/indentation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698