@@ -1626,17 +1626,17 @@ var collection;
1626
1626
[ core . $add ] ( element ) {
1627
1627
dart . as ( element , E ) ;
1628
1628
this [ core . $set ] ( ( ( ) => {
1629
- let o = this , x = o [ core . $length ] ;
1630
- o [ core . $length ] = dart . notNull ( x ) + 1 ;
1629
+ let x = this [ core . $length ] ;
1630
+ this [ core . $length ] = dart . notNull ( x ) + 1 ;
1631
1631
return x ;
1632
1632
} ) . bind ( this ) ( ) , element ) ;
1633
1633
}
1634
1634
[ core . $addAll ] ( iterable ) {
1635
1635
dart . as ( iterable , core . Iterable$ ( E ) ) ;
1636
1636
for ( let element of iterable ) {
1637
1637
this [ core . $set ] ( ( ( ) => {
1638
- let o = this , x = o [ core . $length ] ;
1639
- o [ core . $length ] = dart . notNull ( x ) + 1 ;
1638
+ let x = this [ core . $length ] ;
1639
+ this [ core . $length ] = dart . notNull ( x ) + 1 ;
1640
1640
return x ;
1641
1641
} ) . bind ( this ) ( ) , element ) ;
1642
1642
}
@@ -1645,8 +1645,7 @@ var collection;
1645
1645
for ( let i = 0 ; dart . notNull ( i ) < dart . notNull ( this [ core . $length ] ) ; i = dart . notNull ( i ) + 1 ) {
1646
1646
if ( dart . equals ( this [ core . $get ] ( i ) , element ) ) {
1647
1647
this [ core . $setRange ] ( i , dart . notNull ( this [ core . $length ] ) - 1 , this , dart . notNull ( i ) + 1 ) ;
1648
- let o = this ;
1649
- o [ core . $length ] = dart . notNull ( o [ core . $length ] ) - 1 ;
1648
+ this [ core . $length ] = dart . notNull ( this [ core . $length ] ) - 1 ;
1650
1649
return true ;
1651
1650
}
1652
1651
}
@@ -1739,8 +1738,7 @@ var collection;
1739
1738
core . RangeError . checkValidRange ( start , end , this [ core . $length ] ) ;
1740
1739
let length = dart . notNull ( end ) - dart . notNull ( start ) ;
1741
1740
this [ core . $setRange ] ( start , dart . notNull ( this [ core . $length ] ) - dart . notNull ( length ) , this , end ) ;
1742
- let o = this ;
1743
- o [ core . $length ] = dart . notNull ( o [ core . $length ] ) - dart . notNull ( length ) ;
1741
+ this [ core . $length ] = dart . notNull ( this [ core . $length ] ) - dart . notNull ( length ) ;
1744
1742
}
1745
1743
[ core . $fillRange ] ( start , end , fill ) {
1746
1744
if ( fill === void 0 )
@@ -1853,8 +1851,7 @@ var collection;
1853
1851
}
1854
1852
if ( ! ( typeof index == 'number' ) )
1855
1853
throw new core . ArgumentError ( index ) ;
1856
- let o = this ;
1857
- o [ core . $length ] = dart . notNull ( o [ core . $length ] ) + 1 ;
1854
+ this [ core . $length ] = dart . notNull ( this [ core . $length ] ) + 1 ;
1858
1855
this [ core . $setRange ] ( dart . notNull ( index ) + 1 , this [ core . $length ] , this , index ) ;
1859
1856
this [ core . $set ] ( index , element ) ;
1860
1857
}
@@ -1871,8 +1868,7 @@ var collection;
1871
1868
iterable = iterable [ core . $toList ] ( ) ;
1872
1869
}
1873
1870
let insertionLength = iterable [ core . $length ] ;
1874
- let o = this ;
1875
- o [ core . $length ] = dart . notNull ( o [ core . $length ] ) + dart . notNull ( insertionLength ) ;
1871
+ this [ core . $length ] = dart . notNull ( this [ core . $length ] ) + dart . notNull ( insertionLength ) ;
1876
1872
this [ core . $setRange ] ( dart . notNull ( index ) + dart . notNull ( insertionLength ) , this [ core . $length ] , this , index ) ;
1877
1873
this [ core . $setAll ] ( index , iterable ) ;
1878
1874
}
0 commit comments