summaryrefslogtreecommitdiff
path: root/parse.y
AgeCommit message (Expand)Author
2003-10-04* marshal.c (w_object): instance variable dump do not cause errormatz
2003-09-24* parse.y (str_xquote): do not prepend escapes innobu
2003-09-17* parse.y (tokadd_string, parse_string, yylex): escaped terminatornobu
2003-09-06* parse.y (assignable): call rb_compile_error(), not rb_bug().matz
2003-09-04* parse.y (tokadd_string): newlines have no special meanings innobu
2003-09-01* parse.y (aref_args): forgot to call NEW_SPLAT(). reported bymatz
2003-08-27* parse.y (singleton): typo fixed (ruby-bugs-ja PR#562)matz
2003-08-27* eval.c (rb_eval): *a = [1,2] now assigns [[1,2]] to a.matz
2003-08-14* gc.c (id2ref): recycle check should be done by klass == 0.matz
2003-08-06* eval.c (rb_call0): update ruby_class as well as ruby_cref.matz
2003-07-18* eval.c (rb_f_missing): VCALL is called only for LOCAL_ID. nomatz
2003-07-11* eval.c (avalue_to_svalue): typo.nobu
2003-07-04* node.h (NEW_NODE): cast arguments to rb_node_newnode().matz
2003-07-01* parse.y (rb_intern): should use mbclen instead of mblen.eban
2003-06-20* parse.y (new_yield): distinguish "yield 1,2" and "yield [1,2]".matz
2003-06-07* parse.y (value_expr0): class and module statements should not bematz
2003-06-06* eval.c (error_print): needs to be exception proof.nobu
2003-05-31* parse.y (rb_intern): should handle multibyte name.usa
2003-05-21*** empty log message ***nobu
2003-04-26* parse.y (open_args): warning message changed to "don't put spacematz
2003-04-22* parse.y (arg_ambiguous): hopefully better message.matz
2003-04-21* parse.y (block_append, value_expr0, assign_in_cond,nobu
2003-04-19* parse.y (void_expr0): node might become NULL after calling remove_begin().eban
2003-04-17* parse.y (cond0): warn only range literals whose both side arenobu
2003-04-10* variable.c (rb_mod_name): always return empty string formatz
2003-04-09* variable.c (rb_obj_remove_instance_variable): better message.matz
2003-04-08* eval.c (Init_Proc): make Method and UnboundMethod independent.matz
2003-03-26* eval.c (avalue_splat): new function to do unary * (splat)matz
2003-03-23* parse.y (block_append): warn unused lteral.nobu
2003-03-20* parse.y (stmt, primary): get rid of SEGV at empty or invalidnobu
2003-03-07* parse.y (dsym): :"symbol string" style should not contain `\0'.matz
2003-03-03* parse.y (yycompile): zero clear ruby_eval_tree_begin ifmatz
2003-03-03* parse.y (arg): parse 'lhs = a rescue b' as 'lhs=(a rescue b)'.matz
2003-02-20* string.c (rb_str_cmp_m): return nil if str2 does not respond tomatz
2003-02-20* eval.c (rb_thread_remove): thread may die in the process ofmatz
2003-02-20* parse.y (clhs): allow "Foo::Bar = x".matz
2003-02-19* node.h (nd_cpath): nested class/module declaration.nobu
2003-02-13* range.c (range_step): step might be float 0 < x < 1.matz
2003-02-05* parse.y (yylex): no .<digit> floating literal anymore.matz
2003-01-31* variable.c (rb_obj_classname): new function.matz
2003-01-31* parse.y (yylex): remove EXPR_CMDARG according to the RHG book.matz
2003-01-24* parse.y: tMINUS should have lower precedence than tPOW.matz
2003-01-23* parse.y (arg): missing arguments.nobu
2003-01-23* parse.y (arg): syntaxify tPOW negative number hack.matz
2003-01-21* parse.y (arg): put back old ** behavior for negative numbermatz
2003-01-16-Wall cleanups (removed unused vars, no 'code has no effect' warnings)michal
2003-01-16Updated Copyrights of Matz to 2003.michal
2003-01-14* parse.y (list_append): avoid O(n) search using node->nd_next->nd_end.matz
2003-01-09* parse.y (stmt): NODE_NOT elimitation for if/unless/while/until node.matz
2003-01-07* hash.c (env_clear): new Hash compatible method.matz