- 30 Oct, 2013 1 commit
-
-
fleuria authored
emit a "\n" as the first token for parser instead of taking the first character from the next file for lexer, to prevent mruby "concatenate" two keywords between files it should be regarded as a work around, for it can not resolve this case: $ cat a.rb " $ cat b.rb b" $ bin/mrbc -o- -v a.rb b.rb mruby - Embeddable Ruby Copyright (c) 2010-2013 mruby developers NODE_SCOPE: NODE_BEGIN: NODE_STR " b " len 4 irep 0 nregs=2 nlocals=1 pools=1 syms=0 000 OP_STRING R1 "\n\nb " 001 OP_STOP thanks @bovi 's idea
-
- 24 Oct, 2013 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
fix #1542
-
- 23 Oct, 2013 2 commits
-
-
fleuria authored
-
Yukihiro "Matz" Matsumoto authored
-
- 22 Oct, 2013 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 20 Oct, 2013 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 19 Oct, 2013 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 15 Oct, 2013 5 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Set regs to stack on return of const_get calls before use
-
Carson McDonald authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 10 Oct, 2013 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Add some methods to Symbol
-
Yukihiro "Matz" Matsumoto authored
remove unused value for mrb_gv_remove
-
Yukihiro "Matz" Matsumoto authored
-
- 09 Oct, 2013 1 commit
-
-
MATSUMOTO Ryosuke authored
-
- 08 Oct, 2013 1 commit
-
-
skandhas authored
-
- 05 Oct, 2013 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 04 Oct, 2013 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
fix no multiline strings in mirb
-
Lukas Stabe authored
-
- 02 Oct, 2013 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Improve Grammar of Documentation
-
- 01 Oct, 2013 8 commits
-
-
Yukihiro "Matz" Matsumoto authored
Implement gembox-relative gemdir paths
-
William Light authored
-
William Light authored
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
-
Daniel Bovensiepen authored
-
Yukihiro "Matz" Matsumoto authored
Added test for inline arrays longer than 126 elements.
-
Yukihiro "Matz" Matsumoto authored
fix #1519
-
fleuria authored
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.
-
Paolo Bosetti authored
-
- 29 Sep, 2013 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Remove function delaration not implemented in code
-
- 28 Sep, 2013 1 commit
-
-
Dusan D. Majkic authored
-
- 26 Sep, 2013 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
fix build error when ENABLE_DEBUG is defined
-
Atsushi_Morimoto authored
-
Yukihiro "Matz" Matsumoto authored
fix bugs on Heredocument
-
- 24 Sep, 2013 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
eliminate use of traditional intern API (mrb_intern()) completely
-
Yuichi Nishiwaki authored
-
Yuichi Nishiwaki authored
-
- 22 Sep, 2013 1 commit
-
-
FUKUZAWA-Tadashi authored
- heredoc in array literal - heredoc in args - heredoc in expression expand
-