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

Unified Diff: pkg/dev_compiler/tool/input_sdk/patch/convert_patch.dart

Issue 2752163002: Format all dart dev compiler files (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
Index: pkg/dev_compiler/tool/input_sdk/patch/convert_patch.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/patch/convert_patch.dart b/pkg/dev_compiler/tool/input_sdk/patch/convert_patch.dart
index 54575b5700d8e8fd315b635dab59668e9d050565..41130a9973689fdd0f4c497d5e99372d82dd1261 100644
--- a/pkg/dev_compiler/tool/input_sdk/patch/convert_patch.dart
+++ b/pkg/dev_compiler/tool/input_sdk/patch/convert_patch.dart
@@ -33,8 +33,7 @@ _parseJson(String source, reviver(key, value)) {
var parsed;
try {
parsed = JS('=Object|JSExtendableArray|Null|bool|num|String',
- 'JSON.parse(#)',
- source);
+ 'JSON.parse(#)', source);
} catch (e) {
throw new FormatException(JS('String', 'String(#)', e));
}
@@ -88,7 +87,7 @@ _convertJsonToDart(json, reviver(key, value)) {
}
// Update the JSON map structure so future access is cheaper.
- map._original = processed; // Don't keep two objects around.
+ map._original = processed; // Don't keep two objects around.
return map;
}
@@ -140,10 +139,10 @@ class _JsonMap implements LinkedHashMap {
_JsonMap(this._original);
- operator[](key) {
+ operator [](key) {
if (_isUpgraded) {
return _upgradedMap[key];
- } else if (key is !String) {
+ } else if (key is! String) {
return null;
} else {
var result = _getProperty(_processed, key);
@@ -152,9 +151,7 @@ class _JsonMap implements LinkedHashMap {
}
}
- int get length => _isUpgraded
- ? _upgradedMap.length
- : _computeKeys().length;
+ int get length => _isUpgraded ? _upgradedMap.length : _computeKeys().length;
bool get isEmpty => length == 0;
bool get isNotEmpty => length > 0;
@@ -169,7 +166,7 @@ class _JsonMap implements LinkedHashMap {
return new MappedIterable(_computeKeys(), (each) => this[each]);
}
- operator[]=(key, value) {
+ operator []=(key, value) {
if (_isUpgraded) {
_upgradedMap[key] = value;
} else if (containsKey(key)) {
@@ -177,7 +174,7 @@ class _JsonMap implements LinkedHashMap {
_setProperty(processed, key, value);
var original = _original;
if (!identical(original, processed)) {
- _setProperty(original, key, null); // Reclaim memory.
+ _setProperty(original, key, null); // Reclaim memory.
}
} else {
_upgrade()[key] = value;
@@ -202,7 +199,7 @@ class _JsonMap implements LinkedHashMap {
bool containsKey(key) {
if (_isUpgraded) return _upgradedMap.containsKey(key);
- if (key is !String) return false;
+ if (key is! String) return false;
return _hasProperty(_original, key);
}
@@ -260,7 +257,6 @@ class _JsonMap implements LinkedHashMap {
String toString() => Maps.mapToString(this);
-
// ------------------------------------------
// Private helper methods.
// ------------------------------------------
@@ -319,23 +315,20 @@ class _JsonMap implements LinkedHashMap {
return _setProperty(_processed, key, result);
}
-
// ------------------------------------------
// Private JavaScript helper methods.
// ------------------------------------------
- static bool _hasProperty(object, String key)
- => JS('bool', 'Object.prototype.hasOwnProperty.call(#,#)', object, key);
- static _getProperty(object, String key)
- => JS('', '#[#]', object, key);
- static _setProperty(object, String key, value)
- => JS('', '#[#]=#', object, key, value);
- static List _getPropertyNames(object)
- => JS('JSExtendableArray', 'Object.keys(#)', object);
- static bool _isUnprocessed(object)
- => JS('bool', 'typeof(#)=="undefined"', object);
- static _newJavaScriptObject()
- => JS('=Object', 'Object.create(null)');
+ static bool _hasProperty(object, String key) =>
+ JS('bool', 'Object.prototype.hasOwnProperty.call(#,#)', object, key);
+ static _getProperty(object, String key) => JS('', '#[#]', object, key);
+ static _setProperty(object, String key, value) =>
+ JS('', '#[#]=#', object, key, value);
+ static List _getPropertyNames(object) =>
+ JS('JSExtendableArray', 'Object.keys(#)', object);
+ static bool _isUnprocessed(object) =>
+ JS('bool', 'typeof(#)=="undefined"', object);
+ static _newJavaScriptObject() => JS('=Object', 'Object.create(null)');
}
class _JsonMapKeyIterable extends ListIterable {
@@ -346,16 +339,18 @@ class _JsonMapKeyIterable extends ListIterable {
int get length => _parent.length;
String elementAt(int index) {
- return _parent._isUpgraded ? _parent.keys.elementAt(index)
- : _parent._computeKeys()[index];
+ return _parent._isUpgraded
+ ? _parent.keys.elementAt(index)
+ : _parent._computeKeys()[index];
}
/// Although [ListIterable] defines its own iterator, we return the iterator
/// of the underlying list [_keys] in order to propagate
/// [ConcurrentModificationError]s.
Iterator get iterator {
- return _parent._isUpgraded ? _parent.keys.iterator
- : _parent._computeKeys().iterator;
+ return _parent._isUpgraded
+ ? _parent.keys.iterator
+ : _parent._computeKeys().iterator;
}
/// Delegate to [parent.containsKey] to ensure the performance expected
@@ -363,7 +358,8 @@ class _JsonMapKeyIterable extends ListIterable {
bool contains(Object key) => _parent.containsKey(key);
}
-@patch class JsonDecoder {
+@patch
+class JsonDecoder {
@patch
StringConversionSink startChunkedConversion(Sink<Object> sink) {
return new _JsonDecoderSink(_reviver, sink);
@@ -381,8 +377,7 @@ class _JsonDecoderSink extends _StringSinkConversionSink {
final _Reviver _reviver;
final Sink<Object> _sink;
- _JsonDecoderSink(this._reviver, this._sink)
- : super(new StringBuffer());
+ _JsonDecoderSink(this._reviver, this._sink) : super(new StringBuffer());
void close() {
super.close();
@@ -395,17 +390,18 @@ class _JsonDecoderSink extends _StringSinkConversionSink {
}
}
-@patch class Utf8Decoder {
+@patch
+class Utf8Decoder {
@patch
- Converter<List<int>, dynamic/*=T*/> fuse/*<T>*/(
- Converter<String, dynamic/*=T*/> next) {
+ Converter<List<int>, dynamic/*=T*/ > fuse/*<T>*/(
+ Converter<String, dynamic/*=T*/ > next) {
return super.fuse/*<T>*/(next);
}
// Currently not intercepting UTF8 decoding.
@patch
- static String _convertIntercepted(bool allowMalformed, List<int> codeUnits,
- int start, int end) {
- return null; // This call was not intercepted.
+ static String _convertIntercepted(
+ bool allowMalformed, List<int> codeUnits, int start, int end) {
+ return null; // This call was not intercepted.
}
}
« no previous file with comments | « pkg/dev_compiler/tool/input_sdk/patch/collection_patch.dart ('k') | pkg/dev_compiler/tool/input_sdk/patch/core_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698