index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
Age
Commit message (
Expand
)
Author
2017-09-27
fix: src\string.c(1924): warning C4244: '=': conversion from 'mrb_int' to 'in...
Tomasz Dąbrowski
2017-09-27
fix: src\string.c(1130): warning C4244: '=': conversion from 'mrb_int' to 'in...
Tomasz Dąbrowski
2017-09-27
fix: src\string.c(497): warning C4244: '=': conversion from 'mrb_int' to 'lon...
Tomasz Dąbrowski
2017-09-27
fix: src\state.c(66): warning C4200: nonstandard extension used: zero-sized a...
Tomasz Dąbrowski
2017-09-27
fix: src\range.c(136): warning C4244: '=': conversion from 'mrb_int' to 'int'...
Tomasz Dąbrowski
2017-09-27
fix: src\proc.c(96): warning C4244: 'function': conversion from 'mrb_int' to ...
Tomasz Dąbrowski
2017-09-27
fix: src\pool.c(33): warning C4200: nonstandard extension used: zero-sized ar...
Tomasz Dąbrowski
2017-09-27
fix: src\numeric.c(1215): warning C4244: 'function': conversion from 'mrb_int...
Tomasz Dąbrowski
2017-09-27
fix: src\numeric.c(954): warning C4334: '<<': result of 32-bit shift implicit...
Tomasz Dąbrowski
2017-09-27
fix: src\numeric.c(897): warning C4244: 'function': conversion from 'mrb_int'...
Tomasz Dąbrowski
2017-09-27
fix: src\kernel.c(874): warning C4244: 'function': conversion from 'mrb_int' ...
Tomasz Dąbrowski
2017-09-27
fix: src\kernel.c(861): warning C4244: '=': conversion from 'mrb_int' to 'int...
Tomasz Dąbrowski
2017-09-27
fix: src\hash.c(139): warning C4244: 'function': conversion from 'mrb_int' to...
Tomasz Dąbrowski
2017-09-27
fix: src\hash.c(40): warning C4244: '=': conversion from 'mrb_int' to 'khint_...
Tomasz Dąbrowski
2017-09-27
fix: src\hash.c(27): warning C4244: '=': conversion from 'mrb_int' to 'khint_...
Tomasz Dąbrowski
2017-09-27
fix: src\gc.c(1425): warning C4244: '=': conversion from 'mrb_int' to 'int', ...
Tomasz Dąbrowski
2017-09-27
fix: src\gc.c(1392): warning C4244: '=': conversion from 'mrb_int' to 'int', ...
Tomasz Dąbrowski
2017-09-27
fix: src\gc.c(559): warning C4244: '=': conversion from 'mrb_int' to 'int', p...
Tomasz Dąbrowski
2017-09-27
fix: src\error.c(76): warning C4244: '=': conversion from 'mrb_int' to 'int',...
Tomasz Dąbrowski
2017-09-27
fix: src\dump.c(710): warning C4244: 'function': conversion from 'mrb_int' to...
Tomasz Dąbrowski
2017-09-27
fix: src\dump.c(657): warning C4244: 'function': conversion from 'mrb_int' to...
Tomasz Dąbrowski
2017-09-27
fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to 'int'...
Tomasz Dąbrowski
2017-09-27
fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to 'int'...
Tomasz Dąbrowski
2017-09-27
fix: src\class.c(583): warning C4244: '=': conversion from 'mrb_int' to 'int'...
Tomasz Dąbrowski
2017-09-27
fix: src\backtrace.c(83): warning C4244: '=': conversion from 'mrb_int' to 'i...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-kernel-ext\src\kernel.c(114): warning C4244: 'function': c...
Tomasz Dąbrowski
2017-09-23
The first instruction was skipped mistakenly in ensure clause; fix #3811
Yukihiro "Matz" Matsumoto
2017-09-22
`OP_EPOP` operand may be bigger than `mrb->c->eidx`; fix #3810
Yukihiro "Matz" Matsumoto
2017-09-12
Remove temporary limitation of `OP_EPOP`.
Yukihiro "Matz" Matsumoto
2017-09-11
The callinfo stack may be reallocated in `cipush`; fix rest of #3809
Yukihiro "Matz" Matsumoto
2017-09-11
The ensure stack may be empty at `OP_EPOP`; fix 1st part of #3809
Yukihiro "Matz" Matsumoto
2017-09-06
Avoid calling `mrb_funcall` to invoke `#initialize` from `Class.new`.
Yukihiro "Matz" Matsumoto
2017-09-05
Avoid recursion from `mark_context()`.
Yukihiro "Matz" Matsumoto
2017-09-05
Avoid crossing C function boundary from `OP_EPOP`; ref #3789
Yukihiro "Matz" Matsumoto
2017-09-04
Restructure `irep->outer` chain; fix #3804
Yukihiro "Matz" Matsumoto
2017-09-04
Call `initialize` only when it's not empty.
Yukihiro "Matz" Matsumoto
2017-09-02
Trying to make the source code more understandable by removing mixing of tern...
Flavio Medeiros
2017-09-01
Avoid copying over initialized procs using `initialize_copy`; fix #3803
Yukihiro "Matz" Matsumoto
2017-09-01
Update method cache clearing.
Yukihiro "Matz" Matsumoto
2017-08-30
Set the ORPHAN flag in `Proc.new`; fix #3798
Yukihiro "Matz" Matsumoto
2017-08-30
Fixed a critical typo; ref #3798
Yukihiro "Matz" Matsumoto
2017-08-30
Need to mark `mrb->range_class`; fix #3797
Yukihiro "Matz" Matsumoto
2017-08-29
Need to update `ci` after `callinfo` stack reallocation; fix #3796
Yukihiro "Matz" Matsumoto
2017-08-29
Exclude the top-level closure from `each_object`; fix #3793
Yukihiro "Matz" Matsumoto
2017-08-29
Revert "Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793"
Yukihiro "Matz" Matsumoto
2017-08-28
Clear `irep->outer` when no `Proc` reference the `irep`; fix #3793
Yukihiro "Matz" Matsumoto
2017-08-26
Reimplement `Array#shift` to be faster.
Yukihiro "Matz" Matsumoto
2017-08-26
`Array#first` to treat 1 argument case specially to improve performance.
Yukihiro "Matz" Matsumoto
2017-08-26
Check for ability to skip optional argument parsing.
Yukihiro "Matz" Matsumoto
2017-08-26
Silence compiler warning regarding float condition; fix #3790
Yukihiro "Matz" Matsumoto
[next]