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

Unified Diff: runtime/lib/expando_patch.dart

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (Closed)
Patch Set: Created 3 years, 9 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 | « runtime/lib/errors_patch.dart ('k') | runtime/lib/function.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/expando_patch.dart
diff --git a/runtime/lib/expando_patch.dart b/runtime/lib/expando_patch.dart
index 85105b8a0a61df7c0c3c18278eefc430c5644b73..af55a4dc95325b574ba8d546b3e6c844bf606242 100644
--- a/runtime/lib/expando_patch.dart
+++ b/runtime/lib/expando_patch.dart
@@ -2,10 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-@patch
-class Expando<T> {
- @patch
- Expando([String name])
+@patch class Expando<T> {
+ @patch Expando([String name])
: name = name,
_data = new List(_minSize),
_used = 0;
@@ -13,8 +11,7 @@ class Expando<T> {
static const _minSize = 8;
static final _deletedEntry = new _WeakProperty(null, null);
- @patch
- T operator [](Object object) {
+ @patch T operator[](Object object) {
_checkType(object);
var mask = _size - 1;
@@ -35,8 +32,7 @@ class Expando<T> {
return null;
}
- @patch
- void operator []=(Object object, T value) {
+ @patch void operator[]=(Object object, T value) {
_checkType(object);
var mask = _size - 1;
@@ -55,12 +51,12 @@ class Expando<T> {
}
return;
} else if ((empty_idx < 0) && identical(wp, _deletedEntry)) {
- empty_idx = idx; // Insert at this location if not found.
+ empty_idx = idx; // Insert at this location if not found.
} else if (wp.key == null) {
// This entry has been cleared by the GC.
_data[idx] = _deletedEntry;
if (empty_idx < 0) {
- empty_idx = idx; // Insert at this location if not found.
+ empty_idx = idx; // Insert at this location if not found.
}
}
idx = (idx + 1) & mask;
@@ -87,7 +83,7 @@ class Expando<T> {
// Grow/reallocate if too many slots have been used.
_rehash();
- this[object] = value; // Recursively add the value.
+ this[object] = value; // Recursively add the value.
}
_rehash() {
@@ -133,9 +129,9 @@ class Expando<T> {
static _checkType(object) {
if ((object == null) ||
- (object is bool) ||
- (object is num) ||
- (object is String)) {
+ (object is bool) ||
+ (object is num) ||
+ (object is String)) {
throw new ArgumentError.value(object,
"Expandos are not allowed on strings, numbers, booleans or null");
}
@@ -145,5 +141,5 @@ class Expando<T> {
get _limit => (3 * (_size ~/ 4));
List _data;
- int _used; // Number of used (active and deleted) slots.
+ int _used; // Number of used (active and deleted) slots.
}
« no previous file with comments | « runtime/lib/errors_patch.dart ('k') | runtime/lib/function.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698