summaryrefslogtreecommitdiffhomepage
path: root/src/parse.y
AgeCommit message (Collapse)Author
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
2012-05-21use mrb's allocator; thanks to @mitchblankYukihiro Matsumoto
2012-05-20waring refactoring; print line numberYukihiro Matsumoto
2012-05-20Merge pull request #169 from mitchblank/cplusplusYukihiro "Matz" Matsumoto
Part 1 of C++ compilability
2012-05-20Fix wrong castKazuki Tsujimoto
2012-05-20C++ compilability: don't use "node" as both a type and a memberMitchell Blank Jr
I originally solved this by renaming the "node" type to "node_t", but Matz didn't like that. He suggested renaming the member variable "nd" instead: https://github.com/mruby/mruby/pull/144#issuecomment-5743153
2012-05-20Add cast to remove "cast from pointer to integer of different size" warningKazuki Tsujimoto
2012-05-19should initialize p->sterm every parse timeYukihiro Matsumoto
2012-05-19mirb should detect end of expression smarterYukihiro Matsumoto
2012-05-19remove dependency to node.h and pool.hYukihiro Matsumoto
2012-05-19p->tree may be NULL; close #161Yukihiro Matsumoto
2012-05-18failed to initialize source stringYukihiro Matsumoto
2012-05-18move compile.h to mruby/compile.hYukihiro Matsumoto
2012-05-18yywarn should use warn_buffer not error_bufferYukihiro Matsumoto
2012-05-18remove mrb_parse_nstring_ext; use mrb_parser_new() then set p->capture_error ↵Yukihiro Matsumoto
= 1; then call mrb_parser_parse(); see tool/mirb/mirb.c
2012-05-18keep toplevel local variables; close #133Yukihiro Matsumoto
2012-05-18new API for parserYukihiro Matsumoto
2012-05-17compile error should contain line numberYukihiro Matsumoto
2012-05-17print line number in compile error messagesYukihiro Matsumoto
2012-05-17too many line count in nextc()Yukihiro Matsumoto
2012-05-17add cast to remove warning; close #154Yukihiro Matsumoto
2012-05-17no SEGV for nth_ref & back_ref; close #152Yukihiro Matsumoto
2012-05-17ignore return value from strtod()Yukihiro Matsumoto
2012-05-16Remove some redundant function declarations.Masaki Muranaka
2012-05-12Simplify while loop in peek_n().Masaki Muranaka
2012-05-11begin/end block should be isolated from outside; ported from CRuby r35620Yukihiro Matsumoto
2012-05-07intptr_t uses to cast only.Hiroyuki Iwatsuki
2012-05-06add const to char*Yuichiro MASUI
2012-05-03allow spaces between lambda arrow andYukihiro Matsumoto
parenthesis. [ruby-dev:45605][Feature #6390]
2012-04-26Fix a few casting warnings.Patrick Hogan
Signed-off-by: Patrick Hogan <[email protected]>
2012-04-26parse.y: skip() should not ignore end-of-file; fix #55Yukihiro Matsumoto
2012-04-24EXPR_BEG by keywords is a start point of commands; backport r35457 from CRubyYukihiro Matsumoto
2012-04-23``__END__'' must start at the beginning of the line.NAKAMURA Usaku
2012-04-23Support ``__END__'' as the mark of the end of a script (ISO Ruby).NAKAMURA Usaku
2012-04-23Merge branch 'master' of github.com:mruby/mrubymimaki
Conflicts: src/variable.c
2012-04-23add file headermimaki
2012-04-22allow errors & warning to be capturedFrank Celler
2012-04-22simple fix for underflowFrank Celler
2012-04-21only increment position, if no error has occuredFrank Celler
2012-04-21typo in the node's commentlucas dicioccio
2012-04-20make %(foo) workYusuke Endoh
2012-04-20add mruby sourcesmimaki