fleuria
e648abf1c1
fix #1542
2013-10-23 15:39:52 +08:00
Yukihiro "Matz" Matsumoto
9eadd05f32
modify upto/downto for compatibility
2013-10-23 10:34:00 +09:00
Yukihiro "Matz" Matsumoto
2607970ed9
move some methods to make floats and integers compatible [mruby special]
2013-10-22 16:18:11 +09:00
Yukihiro "Matz" Matsumoto
620f8b2721
implement some Numeric methods in Ruby
2013-10-22 15:59:41 +09:00
Yukihiro "Matz" Matsumoto
3ae0616710
implement Integer#succ in Ruby
2013-10-21 07:42:50 +09:00
Yukihiro "Matz" Matsumoto
9cb58a2252
Fixnum#succ may overflow
2013-10-20 00:43:39 +09:00
Yukihiro "Matz" Matsumoto
9b2f4c4423
move declarations to the beginning of blocks
2013-10-16 08:21:06 +09:00
Yukihiro "Matz" Matsumoto
def683ae72
Merge pull request #1538 from carsonmcdonald/conststackfix
...
Set regs to stack on return of const_get calls before use
2013-10-15 15:34:33 -07:00
Carson McDonald
11c4d81539
Set regs to stack on return of const_get calls before use
2013-10-15 07:33:41 -04:00
Yukihiro "Matz" Matsumoto
a7c9a71684
better error position display
2013-10-15 12:49:41 +09:00
Yukihiro "Matz" Matsumoto
8ecbff3f7b
define Module#const_missing
2013-10-15 11:12:22 +09:00
Yukihiro "Matz" Matsumoto
480e329721
Merge pull request #1534 from skandhas/pr-add-some-symbol-methods
...
Add some methods to Symbol
2013-10-09 23:33:05 -07:00
Yukihiro "Matz" Matsumoto
7b0baded5a
Merge pull request #1535 from matsumoto-r/del_unused_varaiable
...
remove unused value for mrb_gv_remove
2013-10-09 23:31:35 -07:00
Yukihiro "Matz" Matsumoto
400ccecf0a
add mrb_gv_remove(); untested
2013-10-10 12:12:29 +09:00
MATSUMOTO Ryosuke
d41425edd4
remove unused value for mrb_gv_remove
2013-10-10 00:29:20 +09:00
skandhas
81c0fda8ec
add some methods to Symbol
2013-10-08 21:47:11 +08:00
Yukihiro "Matz" Matsumoto
9295f6ae49
simplify stack_clear()
2013-10-05 18:50:55 +09:00
Yukihiro "Matz" Matsumoto
250b62d925
Merge pull request #1528 from Ahti/master
...
fix no multiline strings in mirb
2013-10-03 23:27:09 -07:00
Lukas Stabe
5692b5ade1
fix no multiline strings in mirb
2013-10-04 06:03:53 +02:00
Yukihiro "Matz" Matsumoto
fe8fd13deb
Merge pull request #1522 from bovi/patch-1
...
Improve Grammar of Documentation
2013-10-02 02:38:38 -07:00
Yukihiro "Matz" Matsumoto
34cdc21c57
Merge pull request #1523 from wrl/relative-gembox-nokeyword
...
Implement gembox-relative gemdir paths
2013-10-01 16:52:07 -07:00
William Light
72d6db8bc4
Fix for caller_dir relative gems
2013-10-01 21:27:34 +02:00
William Light
7c3f06ddd8
Implement gembox-relative gemdir paths
...
In the case where a relative path is specified to a gembox from
build_config.rb, it was previously tricky to specify relative gem paths
from inside that gembox.
For example, consider a project in which mruby is checked out as a
submodule in the project root:
+- project_root
|
+- mruby/
| |
| +- build_config.rb
| |
| +- ...
|
+- my_gembox/
|
+- my_gembox.gembox
|
+- my_gem/
|
+- mrbgem.rake
|
+- ...
If build_config.rb refers to my_gembox with a relative path, it's
difficult for my_gembox to then refer to my_gem. With this proposed
change, my_gembox.gembox can look like this:
MRuby::GemBox.new do |conf|
conf.gem "my_gem"
end
2013-10-01 20:21:46 +02:00
Daniel Bovensiepen
302e20333b
Improve Grammar of Documentation
2013-10-02 00:50:55 +08:00
Yukihiro "Matz" Matsumoto
e06a0e39f8
Merge pull request #1520 from pbosetti/master
...
Added test for inline arrays longer than 126 elements.
2013-10-01 08:07:49 -07:00
Yukihiro "Matz" Matsumoto
1ba6995a7a
Merge pull request #1521 from Fleurer/issue-1519
...
fix #1519
2013-10-01 08:07:19 -07:00
fleuria
af5bec1fbc
fix #1519
...
the 128th element in an array literal would trigger a corner case on
splat mode checking, in which mruby will splat an that value into its
parent array. the issue was masked by the fact of ary_concat() also
accept non-array value:
1.9.3p286 :002> a = 1
1.9.3p286 :003> [*a]
=> [1]
the expected behaviour should be OP_ARYPUSH the 128th element, instead of
splat it by OP_ARYCAT.
2013-10-01 21:32:16 +08:00
Paolo Bosetti
6d5bd14481
Added test for inline arrays longer than 126 elements.
2013-10-01 14:47:58 +02:00
Yukihiro "Matz" Matsumoto
e870ed708b
Merge pull request #1518 from dmajkic/master
...
Remove function delaration not implemented in code
2013-09-29 10:02:54 -07:00
Dusan D. Majkic
1228415c97
Remove function delaration not implemented in code
2013-09-28 22:10:44 +02:00
Yukihiro "Matz" Matsumoto
ee953abe47
Merge pull request #1515 from mynz/master
...
fix build error when ENABLE_DEBUG is defined
2013-09-26 09:22:52 -07:00
Atsushi_Morimoto
86f0912bcc
fix build error when ENABLE_DEBUG is defined
2013-09-26 18:36:08 +09:00
Yukihiro "Matz" Matsumoto
11b0dda641
Merge pull request #1509 from FUKUZAWA-Tadashi/heredoc-bugfix
...
fix bugs on Heredocument
2013-09-25 18:02:00 -07:00
Yukihiro "Matz" Matsumoto
9194047791
change type of mrb->c->status from uint8_t to enum mrb_fiber_state; #1511
2013-09-25 02:39:59 +09:00
Yukihiro "Matz" Matsumoto
fe1f121640
Merge pull request #1512 from wasabiz/eliminate-mrb-intern
...
eliminate use of traditional intern API (mrb_intern()) completely
2013-09-24 10:31:00 -07:00
Yuichi Nishiwaki
6e47c9dfc1
fix a bug introduced in prev commit
2013-09-23 19:59:24 -07:00
Yuichi Nishiwaki
0e4a7b2a03
eliminate use of traditional intern API (mrb_intern()) completely
2013-09-23 19:36:50 -07:00
FUKUZAWA-Tadashi
8d34e00102
fix bugs on Heredocument
...
- heredoc in array literal
- heredoc in args
- heredoc in expression expand
2013-09-22 18:14:40 +09:00
Yukihiro "Matz" Matsumoto
eeac4be4ce
Merge pull request #1507 from ktaobo/yield-self
...
Use self for the given proc in mrb_yield
2013-09-21 04:16:28 -07:00
Yukihiro "Matz" Matsumoto
3995e7ff8f
rename voidp to cptr
2013-09-21 17:28:47 +09:00
Yukihiro "Matz" Matsumoto
fdb58b4734
voidp should be an Object; close #1508
2013-09-21 17:18:56 +09:00
Yukihiro "Matz" Matsumoto
97ce25fbd0
index to mrb_digitmap[] should always be positive
2013-09-21 17:15:58 +09:00
Keita Obo
862517d540
Use self for the given proc
2013-09-20 17:40:55 +09:00
Yukihiro "Matz" Matsumoto
d74887f582
incomplete renaming node->filename -> node->filename_index
2013-09-20 15:41:59 +09:00
Yukihiro "Matz" Matsumoto
4c1c7166bf
remove unreferenced local variables caused by mrb_assert()
2013-09-20 06:11:07 +09:00
Yukihiro "Matz" Matsumoto
12183fa250
rename node->filename to node->filename_index
2013-09-20 06:09:41 +09:00
Yukihiro "Matz" Matsumoto
58b1c0883b
refactor genop_peep(); ref #1505
2013-09-20 06:08:01 +09:00
Yukihiro "Matz" Matsumoto
e7082a5092
Merge pull request #1505 from ktaobo/return-breaks-self
...
Fixed self value in a block is changed with return value
2013-09-19 13:40:32 -07:00
Yukihiro "Matz" Matsumoto
f65a39f4d1
Merge pull request #1503 from digitaltom/master
...
remove executable bit from include/mruby/dump.h file
2013-09-18 20:00:35 -07:00
Keita Obo
c4e5a8b167
Fix self value in a block is changed with return value for Fixnum, nil, instance variable.
...
Fix #1504
2013-09-18 00:57:23 +09:00