summaryrefslogtreecommitdiffhomepage
path: root/src/parse.y
AgeCommit message (Expand)Author
2012-07-14Suppress some warnings about pointer casting.Masamitsu MURASE
2012-07-14mruby should print error properlyYukihiro Matsumoto
2012-07-14Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-07-14mrb_load to set mrb->exc on errorsYukihiro Matsumoto
2012-07-14mrb_load_xxx to return undef + mrb_undef_pYukihiro Matsumoto
2012-07-13clean -Wunused-function when defined DISABLE_STDIOSelman ULUG
2012-07-13simpify mruby/mrbc using contextYukihiro Matsumoto
2012-07-13allow DISABLE/ENABLE_SATDIOYukihiro Matsumoto
2012-07-13add missing (empty) default for swtch; close #364Yukihiro Matsumoto
2012-07-13remove st.h inclusionYukihiro Matsumoto
2012-07-11local variable order was screwed up in parser_init_cxt(); close #360Yukihiro Matsumoto
2012-07-09Merge pull request #357 from suzukaze/replace-tab-with-spacesYukihiro "Matz" Matsumoto
2012-07-10replace Tab with spaces in src/parse.ysuzukaze
2012-07-08Use mrb_calloc if you want zero cleard buffers.Masaki Muranaka
2012-07-04input cast to unsigned char for unqualified tolower(); close #342Yukihiro Matsumoto
2012-07-04stop strtod() warning; add more checks; close #247Yukihiro Matsumoto
2012-07-03use new function mrb_parser_free()Yukihiro Matsumoto
2012-07-03add new function mrb_parser_free()Yukihiro Matsumoto
2012-07-03raise SyntaxError only when capture_errors is setYukihiro Matsumoto
2012-07-03capture_errors can be specified by mrbc_contextYukihiro Matsumoto
2012-07-03preserve toplevel local variable info in mrbc_contextYukihiro Matsumoto
2012-07-03add context arg to mrb_parser_parse()Yukihiro Matsumoto
2012-07-03add context to parser, that would hold local variable info, filename, and lin...Yukihiro Matsumoto
2012-07-03modify compiler API; replace mrb_compie_xxx with mrb_load_xxx() that combines...Yukihiro Matsumoto
2012-07-03constify parser input stringsYukihiro Matsumoto
2012-07-03remove size_t from parserYukihiro Matsumoto
2012-06-28allow string interpolation in symbols like :"a=#{15}"Yukihiro Matsumoto
2012-06-28allow :"text" form; close #321Yukihiro Matsumoto
2012-06-26Merge pull request #330 from monaka/pr-fix-parser-y-to-supress-warning-array-...Yukihiro "Matz" Matsumoto
2012-06-27Supress "warning: array subscript has type ‘char’"Masaki Muranaka
2012-06-27Use sizeof to get char array sizes.Masaki Muranaka
2012-06-16parser_dump: local variable dump condition updatedYukihiro Matsumoto
2012-06-16Fix to show ensure nodeJunji Sawada
2012-06-15use ENABLE/DISABLE instead of INCLUDE for configuration macro namesYukihiro Matsumoto
2012-06-15Remove some redundant code.Masaki Muranaka
2012-06-14Fix typo in parser around tLEQMasaki Muranaka
2012-06-14should not ignore variable-less rest parameterYukihiro Matsumoto
2012-06-11zsuper should respect block given; close #185Yukihiro Matsumoto
2012-06-11parser_dump: no print "local variables" if no local variablesYukihiro Matsumoto
2012-06-03Refactor hardcoded PARSER_DUMP macroJon
2012-06-04remove mrb_open NULL check for small test programs. They are only for proof-...Yukihiro Matsumoto
2012-06-03Check mrb_open return value for NULLJon
2012-06-01rest argument offset might be -1 that means emptyYukihiro Matsumoto
2012-05-28column position adjustment was wrongYukihiro Matsumoto
2012-05-28ignore error nodes (with node_begin initialization)Yukihiro Matsumoto
2012-05-28column adjustment was wrong for pushed back charactersYukihiro Matsumoto
2012-05-27Add 'ifndef/endif' to avoid conflict of 'TRUE' definition.Masamitsu MURASE
2012-05-24parser->colum number was wrongYukihiro Matsumoto
2012-05-23remove warning for open paren after spaceYukihiro Matsumoto
2012-05-23allow empty paren as a valid exprYukihiro Matsumoto