7458abc8b3
git-svn-id: file:///home/svn/framework3/trunk@12815 4d416f70-5f16-0410-b530-b9f4589650da
16 lines
216 B
Ruby
16 lines
216 B
Ruby
module RKelly
|
|
module JS
|
|
class Array < Base
|
|
class << self
|
|
def create(*args)
|
|
self.new(*args)
|
|
end
|
|
end
|
|
|
|
def initialize(*args)
|
|
super()
|
|
end
|
|
end
|
|
end
|
|
end
|