summaryrefslogtreecommitdiffhomepage
path: root/tools/mrbc/mrbc.c
AgeCommit message (Collapse)Author
2012-07-13simpify mruby/mrbc using contextYukihiro Matsumoto
2012-07-13add missing (empty) default for swtch; close #364Yukihiro Matsumoto
2012-07-03use new function mrb_parser_free()Yukihiro Matsumoto
2012-07-03add context to parser, that would hold local variable info, filename, and ↵Yukihiro Matsumoto
line number. mrbc_context argument has been added to mrb_parse_xxx() functions. Normally, you just to need to add NULL (or 0) to the last argument of the above functions.
2012-06-03Check mrb_open return value for NULLJon
2012-05-27Remove unnecessary mrb_init_ext definitionJon
2012-05-22change example code to do mrb_close()Mitchell Blank Jr
I was hoping this would cause valgrind to complain less, but there is still a lot of memory leaked (does mrb_close() actually free all of the managed blocks?) Anyway this helps somewhat and is good practice
2012-05-18terminate programs after showing version/copyrightYukihiro Matsumoto
2012-05-18rename ruby_show_version to mrb_show_versionYukihiro Matsumoto
2012-05-18revise version descriptionYukihiro Matsumoto
2012-05-18move compile.h to mruby/compile.hYukihiro Matsumoto
2012-05-18new API for parserYukihiro Matsumoto
2012-05-17compile error should contain line numberYukihiro Matsumoto
2012-05-08include string.h instead of memory.h; close #108Yukihiro Matsumoto
2012-04-24move header files {irep,dump,cdump,ritehash}.h to /include/mrubyYukihiro Matsumoto
2012-04-20add mruby sourcesmimaki