aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
Commit message (Expand)AuthorAgeFilesLines
* * parse.y (assignable): call rb_compile_error(), not rb_bug().matz2003-09-061-1/+1
* * parse.y (tokadd_string): newlines have no special meanings innobu2003-09-041-1/+4
* * parse.y (aref_args): forgot to call NEW_SPLAT(). reported bymatz2003-09-011-1/+1
* * parse.y (singleton): typo fixed (ruby-bugs-ja PR#562)matz2003-08-271-2/+2
* * eval.c (rb_eval): *a = [1,2] now assigns [[1,2]] to a.matz2003-08-271-12/+10
* * gc.c (id2ref): recycle check should be done by klass == 0.matz2003-08-141-2/+18
* * eval.c (rb_call0): update ruby_class as well as ruby_cref.matz2003-08-061-1/+1
* * eval.c (rb_f_missing): VCALL is called only for LOCAL_ID. nomatz2003-07-181-1/+1
* * eval.c (avalue_to_svalue): typo.nobu2003-07-111-29/+26
* * node.h (NEW_NODE): cast arguments to rb_node_newnode().matz2003-07-041-12/+9
* * parse.y (rb_intern): should use mbclen instead of mblen.eban2003-07-011-2/+2
* * parse.y (new_yield): distinguish "yield 1,2" and "yield [1,2]".matz2003-06-201-10/+41
* * parse.y (value_expr0): class and module statements should not bematz2003-06-071-2/+0
* * eval.c (error_print): needs to be exception proof.nobu2003-06-061-8/+24
* * parse.y (rb_intern): should handle multibyte name.usa2003-05-311-2/+2
* *** empty log message ***nobu2003-05-211-3/+18
* * parse.y (open_args): warning message changed to "don't put spacematz2003-04-261-8/+4
* * parse.y (arg_ambiguous): hopefully better message.matz2003-04-221-1/+1
* * parse.y (block_append, value_expr0, assign_in_cond,nobu2003-04-211-15/+39
* * parse.y (void_expr0): node might become NULL after calling remove_begin().eban2003-04-191-1/+1
* * parse.y (cond0): warn only range literals whose both side arenobu2003-04-171-1/+34
* * variable.c (rb_mod_name): always return empty string formatz2003-04-101-2/+2
* * variable.c (rb_obj_remove_instance_variable): better message.matz2003-04-091-2/+2
* * eval.c (Init_Proc): make Method and UnboundMethod independent.matz2003-04-081-2/+0
* * eval.c (avalue_splat): new function to do unary * (splat)matz2003-03-261-2/+2
* * parse.y (block_append): warn unused lteral.nobu2003-03-231-0/+1
* * parse.y (stmt, primary): get rid of SEGV at empty or invalidnobu2003-03-201-16/+29
* * parse.y (dsym): :"symbol string" style should not contain `\0'.matz2003-03-071-5/+9
* * parse.y (yycompile): zero clear ruby_eval_tree_begin ifmatz2003-03-031-0/+1
* * parse.y (arg): parse 'lhs = a rescue b' as 'lhs=(a rescue b)'.matz2003-03-031-32/+30
* * string.c (rb_str_cmp_m): return nil if str2 does not respond tomatz2003-02-201-1/+1
* * eval.c (rb_thread_remove): thread may die in the process ofmatz2003-02-201-1/+1
* * parse.y (clhs): allow "Foo::Bar = x".matz2003-02-201-18/+42
* * node.h (nd_cpath): nested class/module declaration.nobu2003-02-191-3/+24
* * range.c (range_step): step might be float 0 < x < 1.matz2003-02-131-1/+1
* * parse.y (yylex): no .<digit> floating literal anymore.matz2003-02-051-10/+4
* * variable.c (rb_obj_classname): new function.matz2003-01-311-6/+19
* * parse.y (yylex): remove EXPR_CMDARG according to the RHG book.matz2003-01-311-19/+6
* * parse.y: tMINUS should have lower precedence than tPOW.matz2003-01-241-2/+2
* * parse.y (arg): missing arguments.nobu2003-01-231-2/+2
* * parse.y (arg): syntaxify tPOW negative number hack.matz2003-01-231-29/+44
* * parse.y (arg): put back old ** behavior for negative numbermatz2003-01-211-0/+19
* -Wall cleanups (removed unused vars, no 'code has no effect' warnings)michal2003-01-161-2/+2
* Updated Copyrights of Matz to 2003.michal2003-01-161-1/+1
* * parse.y (list_append): avoid O(n) search using node->nd_next->nd_end.matz2003-01-141-12/+20
* * parse.y (stmt): NODE_NOT elimitation for if/unless/while/until node.matz2003-01-091-0/+38
* * hash.c (env_clear): new Hash compatible method.matz2003-01-071-12/+3
* * st.h, st.c: Introduce new conventional typedef's, st_data_t,knu2003-01-061-4/+4
* * eval.c (massign): removed awkward conversion between yvalue,matz2003-01-011-23/+34
* * parse.y (parse_string): readjusted.nobu2002-12-301-38/+44