aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
Commit message (Expand)AuthorAgeFilesLines
* * parse.y (dispose_string): dispose String object.nobu2002-12-151-2/+10
* * parse.y (expr): rescue clause was ignored.nobu2002-12-131-0/+3
* * parse.y (dsym): garbage returned. (ruby-bugs-ja:PR#358)nobu2002-11-171-2/+1
* * configure.in (LIBRUBY_A): append -static. [ruby-dev:18689]nobu2002-11-141-6/+17
* * math.c (math_acos): check errno after operation. ditto formatz2002-11-141-19/+21
* * parse.y: back out an unintended change in the syntax.matz2002-11-071-4/+0
* * class.c (rb_define_method): do not set NOEX_CFUNC if klass ismatz2002-11-071-0/+8
* * eval.c (rb_eval): added NODE_DSYM, symbol literal withnobu2002-10-231-2/+61
* * parse.y (value_expr0): allow return/break/next/redo/retry in rhsnobu2002-10-181-5/+30
* * object.c (rb_str_to_dbl): RString ptr might be NULL.matz2002-10-171-5/+6
* * eval.c (rb_eval): Class#inherited should be called after thematz2002-09-271-4/+0
* * io.c (appendline): forget to terminate with nul.matz2002-09-251-2/+1
* * eval.c (rb_call0): must not clear ruby_current_node, ornobu2002-09-231-19/+16
* * eval.c (call_trace_func): should not call trace function whilenobu2002-09-221-1/+1
* literal_append: remove.nobu2002-09-201-1/+0
* * parse.y (block_append): eliminate unused literal nodes.nobu2002-09-201-123/+75
* * eval.c (rb_eval): avoid uninitialized global/class variablenobu2002-09-131-2/+7
* * parse.y (nextc): restore line number after here documents.nobu2002-09-101-0/+8
* * parse.y (rb_gc_mark_parser): ruby_eval_tree is marked in eval.c.aamine2002-09-061-2/+0
* * parse.y (rb_gc_mark_parser): should mark lex_input and ruby_debug_lines.aamine2002-09-061-1/+3
* * parse.y (rb_gc_mark_parser): should mark parse.y global variables.aamine2002-09-061-5/+7
* * parse.y: should not use non-NODE VALUEs in the semantic stack.aamine2002-09-061-21/+17
* * gc.c (gc_sweep): should mark parser.aamine2002-09-051-0/+8
* * class.c (rb_make_metaclass): obj.meta.super.meta should be equalmatz2002-09-041-7/+13
* * gc.c (gc_sweep): does reclaim nodes in also compile time, if we can.aamine2002-09-021-0/+10
* *.c: Int vs Long cleanupmichal2002-08-211-2/+2
* * eval.c (ruby_current_node) : added to set sourceline on demand.nobu2002-08-151-3/+1
* * parse.y (tokadd_string): ignore backslashed spaces in %w.matz2002-08-011-0/+3
* * random.c: replace with Mersenne Twister RNG.matz2002-07-261-28/+50
* * parse.y (yylex): modify to accept a code like "m (a){...}".aamine2002-07-261-6/+6
* * parse.y (yylex): fix typo.aamine2002-07-171-1/+1
* * parse.y (heredoc_identifier): modify typo.aamine2002-07-151-3/+3
* * parse.y (literal_concat_string): wrong optimization.nobu2002-07-131-2/+1
* * parse.y: remove useless function str_extend_p().aamine2002-07-041-18/+0
* object.c: rb_Integer reformat, nil#to_f added to rb_define_method.michal2002-07-021-1/+1
* * re.c (rb_reg_expr_str): need to process backslashes properly.matz2002-06-281-12/+9
* missing ;nobu2002-06-271-0/+1
* * parse.y (literal_concat_string): non-string last expression innobu2002-06-261-2/+3
* * parse.y (words, qwords): word list literal rules.nobu2002-06-261-123/+128
* * parse.y (string1, xstring, regexp): moved lex_strnestnobu2002-06-251-10/+12
* * parse.y (string_dvar): allow back references in interpolation.nobu2002-06-241-6/+7
* * parse.y (yylex): __END__ should not be effective withinmatz2002-06-241-6/+8
* * eval.c (rb_eval): NODE_EVSTR is no longer used.nobu2002-06-241-588/+636
* * parse.y (yylex): ? followed by successive word charaters isnobu2002-06-181-0/+4
* * parse.y (yylex): commands after break/next/rescue can takenobu2002-06-181-0/+1
* * parse.y (yylex): obsolete '?<whitespace>'; use '?\s', '?\n',matz2002-06-181-14/+48
* * parse.y (yylex): should pushback proper char after '<<'.nobu2002-06-181-36/+53
* * parse.y (read_escape): deny zero-width hexadecimal character.nobu2002-06-141-0/+8
* * eval.c (svalue_to_avalue): v may be Qundef. This fix wasmatz2002-06-131-4/+9
* * parse.y (yylex): 'do' should return kDO_BLOCK on EXPR_ENDARG.matz2002-06-121-31/+51