- 10 Jan, 2015 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Use sizeof() instead of strlen().
-
- 07 Jan, 2015 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Properly implement directory tasks
-
Julian Aron Prenner authored
-
- 06 Jan, 2015 1 commit
-
-
Julian Aron Prenner authored
-
- 04 Jan, 2015 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Use mrb_exc_new_str_lit().
-
- 03 Jan, 2015 9 commits
-
-
Tatsuhiko Kubo authored
-
Yukihiro "Matz" Matsumoto authored
Removed duplicated declarations.
-
Tatsuhiko Kubo authored
* `mrb_show_version()` * `mrb_show_copyright()`
-
Tatsuhiko Kubo authored
-
Yukihiro "Matz" Matsumoto authored
fixed error-handling for mrb_open().
-
Tatsuhiko Kubo authored
When mrb_open() is called again, it is not checked.
-
Yukihiro "Matz" Matsumoto authored
Round execution time
-
Daniel Bovensiepen authored
-
Yukihiro "Matz" Matsumoto authored
Set correct build dir for bins
-
- 02 Jan, 2015 1 commit
-
-
Julian Aron Prenner authored
-
- 01 Jan, 2015 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Remove redundant NULL checks for mrb_malloc().
-
- 31 Dec, 2014 1 commit
-
-
Tatsuhiko Kubo authored
-
- 27 Dec, 2014 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Avoid block_given? in mrbgem:enum.rb to reduce method calls
-
Yukihiro "Matz" Matsumoto authored
Use suitable type.
-
Jun Hiroe authored
-
Tatsuhiko Kubo authored
-
- 25 Dec, 2014 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 23 Dec, 2014 5 commits
-
-
Yukihiro "Matz" Matsumoto authored
mruby-eval: fix typo
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Fix splat and multiple assignments
-
sdottaka authored
-
Kouhei Sutou authored
Case1: From variable Code: a = [1, 2, 3, 4, 5] b, c, *d = a p [a, b, c, d] Before: [[1, 2, 3, 4, 5], 1, 2, []] After: [[1, 2, 3, 4, 5], 1, 2, [3, 4, 5]] Ruby: [[1, 2, 3, 4, 5], 1, 2, [3, 4, 5]] Case2: From variables Code: a = [1, 2, 3] b = [4, 5, 6, 7] c, d, *e, f, g = *a, *b p [a, b, c, d, e, f, g] Before: [[1, 2, 3], [4, 5, 6, 7], 1, 2, [], 6, 7] After: [[1, 2, 3], [4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7] Ruby: [[1, 2, 3], [4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7] Case 3: "for" Code: a = [1, 2, 3, 4, 5, 6, 7] for b, c, *d, e, f in [a] do p [a, b, c, d, e, f] end Before: [[1, 2, 3, 4, 5, 6, 7], 1, 2, [], nil, nil] After: [[1, 2, 3, 4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7] Ruby: [[1, 2, 3, 4, 5, 6, 7], 1, 2, [3, 4, 5], 6, 7]
-
- 20 Dec, 2014 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
mrdb: fix that break command cannot handle Windows paths
-
- 19 Dec, 2014 4 commits
-
-
sdottaka authored
Before fix: ``` $ mrdb c:\tmp\b.rb (c:\tmp\b.rb:1) break c:\tmp\b.rb:3 Class name 'c' is invalid. ``` After fix: ``` $ mrdb c:\tmp\b.rb (c:\tmp\b.rb:1) break c:\tmp\b.rb:3 Breakpoint 1: file c:\tmp\b.rb, line 3. ```
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
avoid a loop to find parent's callinfo using mrb->c->cibase[env->cioff]
-
Yukihiro "Matz" Matsumoto authored
-
- 17 Dec, 2014 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
h2so5 authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
allocation size of irep->iv is irep->nlocals-1.
-
- 16 Dec, 2014 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Add String#prepend
-