Yukihiro "Matz" Matsumoto
e1a7fa925e
add "fall through" comment
2014-11-26 01:03:57 +09:00
Robert Mosolgo
0133d9ac70
fix(String) String#[] accepts float; close #2650 #2651
2014-11-26 01:03:38 +09:00
Yukihiro "Matz" Matsumoto
28bd33297a
wrong register number adjustment in multiple assignment; fix #2654
2014-11-26 00:43:39 +09:00
Yukihiro "Matz" Matsumoto
c424892c5e
OP_APOST local variable display was wrong
2014-11-26 00:43:39 +09:00
cremno
553b9df306
free memory used by breakpoints
2014-11-26 00:43:39 +09:00
cremno
1cc6eaca2a
free return value of dirname()
2014-11-26 00:43:39 +09:00
Hiroshi Mimaki
251dbca8e2
Merge pull request #2644 from cremno/mrdb-minor-changes
...
mrdb: minor changes
2014-11-25 14:11:57 +09:00
Yukihiro "Matz" Matsumoto
0a8e8bd046
Merge pull request #2653 from cremno/remove-unnecessary-_win32-preprocessor-check
...
remove unnecessary _WIN32 preprocessor check
2014-11-25 12:09:39 +09:00
cremno
94f1ad6cc1
remove unnecessary _WIN32 preprocessor check
...
SIZE_MAX < UINT32_MAX is false on Win32 / Win64.
2014-11-25 02:04:30 +01:00
Yukihiro "Matz" Matsumoto
87ce13f91d
Merge branch 'master' of github.com:mruby/mruby
2014-11-23 23:31:47 +09:00
Yukihiro "Matz" Matsumoto
6d00974a98
Merge pull request #2649 from tmtm/fix-string-slice
...
Fix String#slice! raise TypeError or return invalid value.
2014-11-23 23:31:36 +09:00
TOMITA Masahiro
0a0afa7c6a
Fix String#slice! raise TypeError or return invalid value.
2014-11-23 21:26:50 +09:00
Yukihiro "Matz" Matsumoto
9ec00ef182
align indent of local variable names in codedump()
2014-11-23 07:36:58 +09:00
Yukihiro "Matz" Matsumoto
2c04f4029f
Merge pull request #2648 from cubicdaiya/use_lit_for_mrdb
...
use mrb_str_xxx_lit for mrdb.
2014-11-22 17:39:56 +09:00
Yukihiro "Matz" Matsumoto
bce75e2746
should support recursive mlhs decomposition, e.g. (a,b),c = [1,2],3
2014-11-22 12:16:59 +09:00
Tatsuhiko Kubo
48a04ff1b4
use mrb_str_xxx_lit for mrdb.
2014-11-22 10:43:01 +09:00
Yukihiro "Matz" Matsumoto
b28ec1bc88
Merge pull request #2645 from cremno/mrdb-fix-heap-use-after-free
...
mrdb: fix heap-use-after-free
2014-11-20 12:46:07 +09:00
cremno
c9c0f9a79b
remove const type qualifier
...
clang 3.5.0 with -Wextra produces a -Wignored-qualifiers diagnostic.
2014-11-20 02:39:48 +01:00
cremno
c2bc44e131
don't convert function pointer to object pointer
2014-11-20 02:39:47 +01:00
cremno
337395c1ee
remove cast
...
C99+TC3, 7.19.7.1p2: [...] the fgetc function obtains that character as
an unsigned char converted to an int [...]
2014-11-20 02:39:46 +01:00
cremno
83c48ff966
fix heap-use-after-free
2014-11-20 00:55:46 +01:00
Yukihiro "Matz" Matsumoto
88195a7c99
Merge pull request #2641 from sdottaka/super-fix
...
Fix an error when calling a method implemented in C by super() with argu...
2014-11-19 19:27:57 +09:00
Yukihiro "Matz" Matsumoto
4eabf7d91c
[ci skip] run spell checker on doc/debugger/README.md and fixed typos mentioned from @bovi and @rmosolgo; ref #2640
2014-11-19 19:25:08 +09:00
sdottaka
820f6d147f
Fix an error when calling a method implemented in C by super() with arguments. This fix makes the following code workable:
...
Expected:
class MRBTime < Time; def self.new; super(2012, 4, 21); end; end
MRBTime.new # => Sat Apr 21 00:00:00 2012
Actual:
class MRBTime < Time; def self.new; super(2012, 4, 21); end; end
MRBTime.new # => can't convert nil into Integer (TypeError)
2014-11-19 13:29:22 +09:00
Hiroshi Mimaki
4e4bfb08cb
Merge pull request #2640 from mruby-Forum/v1.1.0
...
mruby-1.1.0
1.1.0
2014-11-19 09:02:10 +09:00
Yukihiro "Matz" Matsumoto
5c6d6309b6
separate mrb_notimplement() and mrb_notimplement_m(); ref #2636
2014-11-19 01:03:19 +09:00
Yukihiro "Matz" Matsumoto
17507e4460
[ci skip] rephrasing about mailing list description; ref #2639
2014-11-19 00:55:51 +09:00
Yukihiro "Matz" Matsumoto
cd4f3c85b4
Merge pull request #2639 from suzukaze/fix-mailing-list-description
...
Fix mailing list description; ref #2635
2014-11-19 00:53:42 +09:00
Yukihiro "Matz" Matsumoto
7c3f9c8ce7
Merge pull request #2637 from rmosolgo/not-implemented-error-msg
...
fix mrb_notimplement typo
2014-11-19 00:51:47 +09:00
mimaki
b473043acf
mruby-1.1.0
2014-11-18 23:35:19 +09:00
mimaki
e5bacc03f2
Add mruby debugger (mrdb)
2014-11-18 23:33:32 +09:00
Jun Hiroe
80e60dcc21
Fix mailing-list description
2014-11-18 15:31:16 +09:00
Robert Mosolgo
8dc4d9d973
fix mrb_notimplement typo
2014-11-17 12:13:19 -08:00
Yukihiro "Matz" Matsumoto
9980bc20bb
Merge pull request #2636 from ksss/mrb_notimplement
...
Implement C API mrb_notimplement
2014-11-17 17:55:23 +09:00
ksss
9a06cfa9d8
Implement C API mrb_notimplement
2014-11-17 17:42:20 +09:00
Yukihiro "Matz" Matsumoto
70c9866751
add Float::{INFINITY,NAN} if available
2014-11-12 15:46:31 +09:00
Yukihiro "Matz" Matsumoto
887e9f4225
Merge branch 'master' of github.com:mruby/mruby
2014-11-10 11:47:12 +09:00
Yukihiro "Matz" Matsumoto
385fc5ec3b
Merge pull request #2634 from xxuejie/fix-mrb-iv-check-prototype
...
Fix mrb_iv_check function decleration
2014-11-10 11:46:23 +09:00
Xuejie "Rafael" Xiao
164cb87c5b
Fix mrb_iv_check function decleration
2014-11-10 10:12:40 +08:00
Yukihiro "Matz" Matsumoto
4c7e812bc0
Merge branch 'master' of github.com:mruby/mruby
2014-11-08 12:57:33 +09:00
Yukihiro "Matz" Matsumoto
fbadd660d1
Merge pull request #2633 from southwolf/patch-1
...
Modify Arduino build config for IDE >= 1.5.7
2014-11-08 12:56:29 +09:00
Yukihiro "Matz" Matsumoto
cd4467d014
Merge pull request #2631 from mimaki/sizeof_format_not_supported
...
%zu format is not supported by MSVC
2014-11-08 12:55:43 +09:00
SouthWolf
d452be5ba6
change BIN_PATH for new gc in Arduino IDE >= 1.5.7
2014-11-08 11:32:30 +08:00
SouthWolf
6be0dd7de6
Modify Arduino build config for IDE >= 1.5.7
...
Arduino IDE >= 1.5.7 Changed ARDUINO_PATH from `Contents/Resources/Java` to `Contents/Java`, mentioned in #2632
2014-11-08 11:10:11 +08:00
Hiroshi Mimaki
c29185ff13
%zu format is not supported by MSVC
2014-11-06 13:30:42 +09:00
Yukihiro "Matz" Matsumoto
3e0575ecb1
update teeny of MRUBY_VERSION; ref #2629
2014-11-04 22:19:40 +09:00
Yukihiro "Matz" Matsumoto
8a6e600562
avoid using rewind(3) to load mrb files
2014-11-04 14:05:36 +09:00
Yukihiro "Matz" Matsumoto
0e2ab2210c
read whole mrb file at once to calculate correct padding offset; ref #2630
2014-11-04 10:12:46 +09:00
Yukihiro "Matz" Matsumoto
0e40468809
specify alignment specifier for GCC and MSC; ref #2630
2014-11-04 07:10:41 +09:00
Yukihiro "Matz" Matsumoto
be844f9284
Fix misaligned access when reading irep; close #2630
...
Add padding bytes before iseq block that may be used as mrb_code[].
Note that dumped mrb format has changed.
Based on a patch from kimu_shu <alfvegardrisc@gmail.com >
2014-11-04 02:41:42 +09:00