aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
Commit message (Expand)AuthorAgeFilesLines
* * parse.y (arg): allow newlines before ternary colon. [ruby-dev:29189]nobu2006-08-081-4/+4
* * parse.y (top_local_setup): local_vars[-1] should pointmatz2006-08-071-2/+1
* * parse.y (f_args): allow post mandatory arguments after optionalmatz2006-07-121-3/+28
* * eval.c (proc_invoke): should not overwrite block information inmatz2006-07-101-2/+29
* * parse.y: use ARGSPUSH instead of ARGSCAT to prevent too muchmatz2006-06-291-1/+1
* * parse.y (primary): remove meaningless else-only case statementmatz2006-06-281-16/+0
* * ext/socket/socket.c (sock_accept): revert to avoid ambiguity ofmatz2006-06-261-204/+208
* * parse.y (paren_args): wrap $2 by escape_Qundef because it may beakr2006-06-251-1/+1
* * parse.y (block_param): do not use multiple assignment for a solematz2006-06-211-1/+7
* * parse.y (method_call): remove (fn)(args) style lambdamatz2006-06-211-12/+22
* * parse.y (reswords): modifier token is no longer returned in fnamenobu2006-06-201-1/+1
* * eval.c (Init_eval): add aliases invoke_method andmatz2006-06-171-11/+2
* * parse.y (reswords): kDO_BLOCK was missing. fixed: [ruby-core:7995]nobu2006-06-161-1/+1
* * ext/bigdecimal/lib/bigdecimal/newton.rb (Newton::nlsolve): typomatz2006-06-101-6/+8
* * math.c (log2): may be a macro.nobu2006-06-091-18/+18
* * sprintf.c (rb_str_format): allow %c to print one charactermatz2006-06-091-378/+302
* unused variable removed.akr2006-05-131-1/+1
* refactoring for optionskosako2006-03-261-30/+13
* * parse.y (f_arglist): should set command_start = Qtrue formatz2006-02-201-0/+2
* * eval.c (rb_eval): NODE_OP_ASGN1 should allow splat in itsmatz2006-02-151-3/+0
* * parse.y (parser_parse_string): mention "regexp" in a errormatz2006-02-131-3/+10
* * eval.c: unify ruby_class (for method definition) and ruby_cbasematz2006-02-031-1/+1
* * parse.y (singleton): get rid of segfault on syntax error.nobu2006-01-071-1/+1
* * parse.y (rb_symname_p): fixed wrong validation. [ruby-dev:28047]nobu2005-12-191-1/+4
* * parse.y (struct parser_params): fields common to ripper must benobu2005-11-301-355/+363
* * parse.y (struct parser_params): heap must be placed at same offsetnobu2005-11-291-10/+12
* * parse.y (dsym): prohibit empty symbol literal by interpolation.nobu2005-11-211-1/+8
* * parse.y (rb_symname_p): [ not followed by ] is not valid symbol.nobu2005-11-201-1/+2
* * object.c (sym_inspect), parse.y (parser_yylex, rb_symname_p): checknobu2005-10-221-7/+115
* * parser.y (struct parser_params): parser never modify input string.nobu2005-10-201-16/+19
* * enumerator.c, eval.c, gc.c, parse.y, regparse.c, sjis.c, time.c:nobu2005-10-181-1/+1
* * parse.y (HEAPCNT): bison allocates indivisible size.nobu2005-10-131-1/+1
* * eval.c (rb_obj_respond_to): check if obj responds to the givennobu2005-10-111-10/+1
* * parse.y (ripper_initialize): rollback obj_respond_to().nobu2005-10-091-1/+10
* * parse.y (rb_parser_malloc, rb_parser_free): manage parser stack onnobu2005-10-081-12/+87
* * parse.y: changed to ANSI function style.ocean2005-09-261-442/+162
* * parse.y: replaced `foo _((boo))' with `foo(boo)'.ocean2005-09-251-85/+85
* banish some ripper warnings.akr2005-09-241-5/+5
* banish some warnings.akr2005-09-241-19/+1
* * ext/ripper: no longer generates .rb files.aamine2005-09-231-3/+3
* forgot to check-inaamine2005-09-191-2/+1
* * parse.y (stmt, mlhs_node, lhs, arg, method_call): aref_args might benobu2005-09-051-5/+5
* * parse.y (f_arg): Ripper should not do semantic check. [ruby-dev:26948]aamine2005-09-041-3/+3
* * parse.y (f_arg): f_norm_arg is a VALUE in ripper, not an ID.nobu2005-09-021-4/+14
* * eval.c (rb_f_send): do not call private methods if the receivermatz2005-08-301-1/+8
* * parse.y: ONIG_OPTION_CAPTURE_GROUP conflicts withmatz2005-08-221-1/+1
* * parse.y (parser_yylex): update paren_nest for brackets [].matz2005-08-201-1/+2
* * eval.c (rb_add_method): preserve safe level in the environmentmatz2005-08-161-19/+18
* * parse.y (f_larglist): allow optional arguments even whenmatz2005-08-121-31/+23
* * bignum.c (rb_big_mul0): multiply two numbers (x, y) withoutmatz2005-08-101-5/+26