| Index: packages/dart_style/test/regression/0100/0122.unit
|
| diff --git a/packages/dart_style/test/regression/0100/0122.unit b/packages/dart_style/test/regression/0100/0122.unit
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1a001a64061cb3930666d5c787f42125c36574b6
|
| --- /dev/null
|
| +++ b/packages/dart_style/test/regression/0100/0122.unit
|
| @@ -0,0 +1,25 @@
|
| +>>>
|
| +var xsrfValue = _urlIsSameOrigin(url) ?
|
| + _cookies[xsrfCookieName != null ?
|
| + xsrfCookieName :
|
| + defaults.xsrfCookieName] :
|
| + null;
|
| +<<<
|
| +var xsrfValue = _urlIsSameOrigin(url)
|
| + ? _cookies[
|
| + xsrfCookieName != null ? xsrfCookieName : defaults.xsrfCookieName]
|
| + : null;
|
| +>>>
|
| +class _Streams {
|
| + _Streams(this._scope, this._exceptionHandler, _Streams inheritStreams)
|
| + : _typeCounts = inheritStreams == null ?
|
| + new HashMap<String, int>() :
|
| + new HashMap.from(inheritStreams._typeCounts);
|
| +}
|
| +<<<
|
| +class _Streams {
|
| + _Streams(this._scope, this._exceptionHandler, _Streams inheritStreams)
|
| + : _typeCounts = inheritStreams == null
|
| + ? new HashMap<String, int>()
|
| + : new HashMap.from(inheritStreams._typeCounts);
|
| +}
|
|
|