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

Unified Diff: pkg/compiler/lib/src/util/emptyset.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/util/command_line.dart ('k') | pkg/compiler/lib/src/util/enumset.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/util/emptyset.dart
diff --git a/pkg/compiler/lib/src/util/emptyset.dart b/pkg/compiler/lib/src/util/emptyset.dart
index d70376f470bcb42c1488ef39cdf7ab57ce0b49ef..da9942c4ff3cb022df303b766aab4edca1607822 100644
--- a/pkg/compiler/lib/src/util/emptyset.dart
+++ b/pkg/compiler/lib/src/util/emptyset.dart
@@ -15,7 +15,7 @@ class ImmutableEmptySet<E> extends IterableBase<E> implements Set<E> {
get _immutableError => throw new UnsupportedError("EmptySet is immutable");
- bool add (E element) => _immutableError;
+ bool add(E element) => _immutableError;
void addAll(Iterable<E> elements) => _immutableError;
E lookup(E element) => null;
« no previous file with comments | « pkg/compiler/lib/src/util/command_line.dart ('k') | pkg/compiler/lib/src/util/enumset.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698