| Age | Commit message (Collapse) | Author |
|
|
|
refactor string parsing
|
|
|
|
|
|
Define mrb_bool_t.
|
|
monaka/pr-cleanup-symbol.c-20130312
|
|
It is safer than applying 1bit bit-fields to signed int.
For forward compatibility, you should substiture only 1 or 0 for the variable typed mrb_bool.
|
|
|
|
|
|
|
|
|
|
FUKUZAWA-Tadashi-heredoc
|
|
Adjust some indents
|
|
|
|
|
|
|
|
|
|
Modify stack position of NODE_DEF and NODE_SDEF.
|
|
Modify handling of NODE_RETURN and NODE_NEXT.
|
|
|
|
|
|
|
|
Make OP_ASGN faster.
|
|
|
|
I think that `*=` and `/=` can be compiled to `OP_MUL` and `OP_DIV`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Do not assume that significand of `double` is larger than `mrb_int`.
|
|
Fixes a number of "comparison between signed and unsigned" warnings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
close #712
|
|
|
|
When "unless" is used without "else", tree->cdr->car of NODE_IF is NULL.
In this case, pop() should not be called because codegen generates no code.
|
|
|
|
|
|
|
|
|
|
|
|
index directly
|