@@ -168,12 +168,12 @@ var _interceptors;
168
168
fold ( initialValue , combine ) {
169
169
return _internal . IterableMixinWorkaround . fold ( this , initialValue , combine ) ;
170
170
}
171
- firstWhere ( test , opt$ ) {
172
- let orElse = opt$ && 'orElse' in opt$ ? opt$ . orElse : null ;
171
+ firstWhere ( test , opts ) {
172
+ let orElse = opts && 'orElse' in opts ? opts . orElse : null ;
173
173
return dart . as ( _internal . IterableMixinWorkaround . firstWhere ( this , test , orElse ) , E ) ;
174
174
}
175
- lastWhere ( test , opt$ ) {
176
- let orElse = opt$ && 'orElse' in opt$ ? opt$ . orElse : null ;
175
+ lastWhere ( test , opts ) {
176
+ let orElse = opts && 'orElse' in opts ? opts . orElse : null ;
177
177
return dart . as ( _internal . IterableMixinWorkaround . lastWhereList ( this , test , orElse ) , E ) ;
178
178
}
179
179
singleWhere ( test ) {
@@ -298,8 +298,8 @@ var _interceptors;
298
298
toString ( ) {
299
299
return collection . ListBase . listToString ( this ) ;
300
300
}
301
- toList ( opt$ ) {
302
- let growable = opt$ && 'growable' in opt$ ? opt$ . growable : true ;
301
+ toList ( opts ) {
302
+ let growable = opts && 'growable' in opts ? opts . growable : true ;
303
303
if ( growable ) {
304
304
return new JSArray . markGrowable ( this . slice ( ) ) ;
305
305
} else {
@@ -372,7 +372,7 @@ var _interceptors;
372
372
return JSExtendableArray ;
373
373
} ) ;
374
374
let JSExtendableArray = JSExtendableArray$ ( dart . dynamic ) ;
375
- let _handleIEtoString = Symbol ( '_handleIEtoString' ) ;
375
+ let _handleIEtoString$ = Symbol ( '_handleIEtoString' ) ;
376
376
let _isInt32 = Symbol ( '_isInt32' ) ;
377
377
let _tdivFast = Symbol ( '_tdivFast' ) ;
378
378
let _tdivSlow = Symbol ( '_tdivSlow' ) ;
@@ -536,7 +536,7 @@ var _interceptors;
536
536
}
537
537
return _handleIEtoString ( result ) ;
538
538
}
539
- static [ _handleIEtoString ] ( result ) {
539
+ static [ _handleIEtoString$ ] ( result ) {
540
540
let match = / ^ ( [ \d a - z ] + ) (?: \. ( [ \d a - z ] + ) ) ? \( e \+ ( \d + ) \) $ / . exec ( result ) ;
541
541
if ( match === null ) {
542
542
throw new core . UnsupportedError ( `Unexpected toString result: ${ result } ` ) ;
@@ -687,11 +687,11 @@ var _interceptors;
687
687
}
688
688
JSNumber . _MIN_INT32 = - 2147483648 ;
689
689
JSNumber . _MAX_INT32 = 2147483647 ;
690
- let _bitCount = Symbol ( '_bitCount' ) ;
691
- let _shru = Symbol ( '_shru' ) ;
692
- let _shrs = Symbol ( '_shrs' ) ;
693
- let _ors = Symbol ( '_ors' ) ;
694
- let _spread = Symbol ( '_spread' ) ;
690
+ let _bitCount$ = Symbol ( '_bitCount' ) ;
691
+ let _shru$ = Symbol ( '_shru' ) ;
692
+ let _shrs$ = Symbol ( '_shrs' ) ;
693
+ let _ors$ = Symbol ( '_ors' ) ;
694
+ let _spread$ = Symbol ( '_spread' ) ;
695
695
class JSInt extends JSNumber {
696
696
JSInt ( ) {
697
697
super . JSNumber ( ) ;
@@ -717,24 +717,24 @@ var _interceptors;
717
717
}
718
718
return _bitCount ( _spread ( nonneg ) ) ;
719
719
}
720
- static [ _bitCount ] ( i ) {
720
+ static [ _bitCount$ ] ( i ) {
721
721
i = dart . as ( dart . dbinary ( _shru ( i , 0 ) , '-' , dart . dbinary ( _shru ( i , 1 ) , '&' , 1431655765 ) ) , core . int ) ;
722
722
i = ( dart . notNull ( i ) & 858993459 ) [ '+' ] ( dart . dbinary ( _shru ( i , 2 ) , '&' , 858993459 ) ) ;
723
723
i = 252645135 & i [ '+' ] ( _shru ( i , 4 ) ) ;
724
724
i = dart . as ( _shru ( i , 8 ) , core . int ) ;
725
725
i = dart . as ( _shru ( i , 16 ) , core . int ) ;
726
726
return dart . notNull ( i ) & 63 ;
727
727
}
728
- static [ _shru ] ( value , shift ) {
728
+ static [ _shru$ ] ( value , shift ) {
729
729
return value >>> shift ;
730
730
}
731
- static [ _shrs ] ( value , shift ) {
731
+ static [ _shrs$ ] ( value , shift ) {
732
732
return value >> shift ;
733
733
}
734
- static [ _ors ] ( a , b ) {
734
+ static [ _ors$ ] ( a , b ) {
735
735
return a | b ;
736
736
}
737
- static [ _spread ] ( i ) {
737
+ static [ _spread$ ] ( i ) {
738
738
i = dart . as ( _ors ( i , dart . as ( _shrs ( i , 1 ) , core . int ) ) , core . int ) ;
739
739
i = dart . as ( _ors ( i , dart . as ( _shrs ( i , 2 ) , core . int ) ) , core . int ) ;
740
740
i = dart . as ( _ors ( i , dart . as ( _shrs ( i , 4 ) , core . int ) ) , core . int ) ;
@@ -764,9 +764,9 @@ var _interceptors;
764
764
class JSUInt31 extends JSUInt32 {
765
765
}
766
766
let _defaultSplit = Symbol ( '_defaultSplit' ) ;
767
- let _isWhitespace = Symbol ( '_isWhitespace' ) ;
768
- let _skipLeadingWhitespace = Symbol ( '_skipLeadingWhitespace' ) ;
769
- let _skipTrailingWhitespace = Symbol ( '_skipTrailingWhitespace' ) ;
767
+ let _isWhitespace$ = Symbol ( '_isWhitespace' ) ;
768
+ let _skipLeadingWhitespace$ = Symbol ( '_skipLeadingWhitespace' ) ;
769
+ let _skipTrailingWhitespace$ = Symbol ( '_skipTrailingWhitespace' ) ;
770
770
class JSString extends Interceptor {
771
771
JSString ( ) {
772
772
super . Interceptor ( ) ;
@@ -824,9 +824,9 @@ var _interceptors;
824
824
replaceAllMapped ( from , convert ) {
825
825
return this . splitMapJoin ( from , { onMatch : convert } ) ;
826
826
}
827
- splitMapJoin ( from , opt$ ) {
828
- let onMatch = opt$ && 'onMatch' in opt$ ? opt$ . onMatch : null ;
829
- let onNonMatch = opt$ && 'onNonMatch' in opt$ ? opt$ . onNonMatch : null ;
827
+ splitMapJoin ( from , opts ) {
828
+ let onMatch = opts && 'onMatch' in opts ? opts . onMatch : null ;
829
+ let onNonMatch = opts && 'onNonMatch' in opts ? opts . onNonMatch : null ;
830
830
return dart . as ( _js_helper . stringReplaceAllFuncUnchecked ( this , from , onMatch , onNonMatch ) , core . String ) ;
831
831
}
832
832
replaceFirst ( from , to , startIndex ) {
@@ -908,7 +908,7 @@ var _interceptors;
908
908
toUpperCase ( ) {
909
909
return this . toUpperCase ( ) ;
910
910
}
911
- static [ _isWhitespace ] ( codeUnit ) {
911
+ static [ _isWhitespace$ ] ( codeUnit ) {
912
912
if ( dart . notNull ( codeUnit ) < 256 ) {
913
913
switch ( codeUnit ) {
914
914
case 9 :
@@ -949,7 +949,7 @@ var _interceptors;
949
949
return false ;
950
950
}
951
951
}
952
- static [ _skipLeadingWhitespace ] ( string , index ) {
952
+ static [ _skipLeadingWhitespace$ ] ( string , index ) {
953
953
let SPACE = 32 ;
954
954
let CARRIAGE_RETURN = 13 ;
955
955
while ( dart . notNull ( index ) < dart . notNull ( string . length ) ) {
@@ -961,7 +961,7 @@ var _interceptors;
961
961
}
962
962
return index ;
963
963
}
964
- static [ _skipTrailingWhitespace ] ( string , index ) {
964
+ static [ _skipTrailingWhitespace$ ] ( string , index ) {
965
965
let SPACE = 32 ;
966
966
let CARRIAGE_RETURN = 13 ;
967
967
while ( dart . notNull ( index ) > 0 ) {
@@ -1178,8 +1178,8 @@ var _interceptors;
1178
1178
}
1179
1179
let _string = Symbol ( '_string' ) ;
1180
1180
class _CodeUnits extends _internal . UnmodifiableListBase$ ( core . int ) {
1181
- _CodeUnits ( $_string ) {
1182
- this [ _string ] = $_string ;
1181
+ _CodeUnits ( string$ ) {
1182
+ this [ _string ] = string$ ;
1183
1183
super . UnmodifiableListBase ( ) ;
1184
1184
}
1185
1185
get length ( ) {
0 commit comments