Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
b27d665d
Commit
b27d665d
authored
Apr 23, 2014
by
mirichi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'remotes/mruby/master' into enhance
parents
e6c757b5
f2204ee5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
0 deletions
+44
-0
mrbgems/mruby-array-ext/mrblib/array.rb
mrbgems/mruby-array-ext/mrblib/array.rb
+19
-0
mrbgems/mruby-array-ext/test/array.rb
mrbgems/mruby-array-ext/test/array.rb
+9
-0
mrbgems/mruby-bin-mruby/bintest/mruby.rb
mrbgems/mruby-bin-mruby/bintest/mruby.rb
+16
-0
No files found.
mrbgems/mruby-array-ext/mrblib/array.rb
View file @
b27d665d
...
@@ -490,4 +490,23 @@ class Array
...
@@ -490,4 +490,23 @@ class Array
self
self
end
end
end
end
##
# call-seq:
# ary.insert(index, obj...) -> ary
#
# Inserts the given values before the element with the given +index+.
#
# Negative indices count backwards from the end of the array, where +-1+ is
# the last element.
#
# a = %w{ a b c d }
# a.insert(2, 99) #=> ["a", "b", 99, "c", "d"]
# a.insert(-2, 1, 2, 3) #=> ["a", "b", 99, "c", 1, 2, 3, "d"]
def
insert
(
idx
,
*
args
)
idx
+=
self
.
size
+
1
if
idx
<
0
self
[
idx
,
0
]
=
args
self
end
end
end
mrbgems/mruby-array-ext/test/array.rb
View file @
b27d665d
...
@@ -197,3 +197,12 @@ assert("Array#reject!") do
...
@@ -197,3 +197,12 @@ assert("Array#reject!") do
assert_equal
[
1
,
2
,
3
],
a
.
reject!
{
|
val
|
val
>
3
}
assert_equal
[
1
,
2
,
3
],
a
.
reject!
{
|
val
|
val
>
3
}
assert_equal
[
1
,
2
,
3
],
a
assert_equal
[
1
,
2
,
3
],
a
end
end
assert
(
"Array#insert"
)
do
a
=
[
"a"
,
"b"
,
"c"
,
"d"
]
assert_equal
[
"a"
,
"b"
,
99
,
"c"
,
"d"
],
a
.
insert
(
2
,
99
)
assert_equal
[
"a"
,
"b"
,
99
,
"c"
,
1
,
2
,
3
,
"d"
],
a
.
insert
(
-
2
,
1
,
2
,
3
)
b
=
[
"a"
,
"b"
,
"c"
,
"d"
]
assert_equal
[
"a"
,
"b"
,
"c"
,
"d"
,
nil
,
nil
,
99
],
b
.
insert
(
6
,
99
)
end
mrbgems/mruby-bin-mruby/bintest/mruby.rb
View file @
b27d665d
...
@@ -14,3 +14,19 @@ assert('regression for #1572') do
...
@@ -14,3 +14,19 @@ assert('regression for #1572') do
o
=
`bin/mruby -b
#{
bin
.
path
}
`
.
strip
o
=
`bin/mruby -b
#{
bin
.
path
}
`
.
strip
assert_equal
o
,
'"ok"'
assert_equal
o
,
'"ok"'
end
end
assert
'$0 value'
do
script
,
bin
=
Tempfile
.
new
(
'test.rb'
),
Tempfile
.
new
(
'test.mrb'
)
# .rb script
script
.
write
"p $0
\n
"
script
.
flush
assert_equal
"
\"
#{
script
.
path
}
\"
"
,
`./bin/mruby "
#{
script
.
path
}
"`
.
chomp
# .mrb file
`./bin/mrbc -o "
#{
bin
.
path
}
" "
#{
script
.
path
}
"`
assert_equal
"
\"
#{
bin
.
path
}
\"
"
,
`./bin/mruby -b "
#{
bin
.
path
}
"`
.
chomp
# one liner
assert_equal
'"-e"'
,
`./bin/mruby -e 'p $0'`
.
chomp
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment