@@ -6,21 +6,6 @@ class Array
6
6
# Mark all javascript arrays as being valid ruby arrays
7
7
`def._isArray = true`
8
8
9
- def self . inherited ( klass )
10
- replace = Class . new ( Array ::Wrapper )
11
-
12
- %x{
13
- klass._proto = replace._proto;
14
- klass._proto._klass = klass;
15
- klass._alloc = replace._alloc;
16
- klass.__parent = #{ Array ::Wrapper } ;
17
-
18
- klass.$allocate = replace.$allocate;
19
- klass.$new = replace.$new;
20
- klass["$[]"] = replace["$[]"];
21
- }
22
- end
23
-
24
9
def self . []( *objects )
25
10
objects
26
11
end
@@ -1549,100 +1534,3 @@ def zip(*others, &block)
1549
1534
}
1550
1535
end
1551
1536
end
1552
-
1553
- class Array ::Wrapper
1554
- def self . allocate ( array = [ ] )
1555
- obj = super ( )
1556
- `obj.literal = array`
1557
- obj
1558
- end
1559
-
1560
- def self . new ( *args , &block )
1561
- obj = allocate
1562
- obj . initialize ( *args , &block )
1563
- obj
1564
- end
1565
-
1566
- def self . []( *objects )
1567
- allocate ( objects )
1568
- end
1569
-
1570
- def initialize ( *args , &block )
1571
- @literal = Array . new ( *args , &block )
1572
- end
1573
-
1574
- def method_missing ( *args , &block )
1575
- result = @literal . __send__ ( *args , &block )
1576
-
1577
- if `result === #@literal `
1578
- self
1579
- else
1580
- result
1581
- end
1582
- end
1583
-
1584
- def initialize_copy ( other )
1585
- @literal = `other.literal` . clone
1586
- end
1587
-
1588
- def respond_to? ( name , *)
1589
- super || @literal . respond_to? ( name )
1590
- end
1591
-
1592
- def ==( other )
1593
- @literal == other
1594
- end
1595
-
1596
- def eql? ( other )
1597
- @literal . eql? ( other )
1598
- end
1599
-
1600
- def to_a
1601
- @literal
1602
- end
1603
-
1604
- def to_ary
1605
- self
1606
- end
1607
-
1608
- def inspect
1609
- @literal . inspect
1610
- end
1611
-
1612
- # wrapped results
1613
- def *( other )
1614
- %x{
1615
- var result = #{ @literal * other } ;
1616
-
1617
- if (result._isArray) {
1618
- return #{ self . class . allocate ( `result` ) }
1619
- }
1620
- else {
1621
- return result;
1622
- }
1623
- }
1624
- end
1625
-
1626
- def []( index , length = undefined )
1627
- %x{
1628
- var result = #{ @literal . slice ( index , length ) } ;
1629
-
1630
- if (result._isArray && (index._isRange || length !== undefined)) {
1631
- return #{ self . class . allocate ( `result` ) }
1632
- }
1633
- else {
1634
- return result;
1635
- }
1636
- }
1637
- end
1638
-
1639
- alias slice []
1640
-
1641
- def uniq
1642
- self . class . allocate ( @literal . uniq )
1643
- end
1644
-
1645
- def flatten ( level = undefined )
1646
- self . class . allocate ( @literal . flatten ( level ) )
1647
- end
1648
- end
0 commit comments