2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
parse.y -
|
|
|
|
|
2004-09-12 19:23:41 +04:00
|
|
|
$Author$
|
|
|
|
$Date$
|
1998-01-16 15:13:05 +03:00
|
|
|
created at: Fri May 28 18:02:42 JST 1993
|
|
|
|
|
2004-09-12 19:23:41 +04:00
|
|
|
Copyright (C) 1993-2004 Yukihiro Matsumoto
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
%{
|
|
|
|
|
|
|
|
#define YYDEBUG 1
|
2005-10-08 13:58:25 +04:00
|
|
|
#define YYERROR_VERBOSE 1
|
|
|
|
#define YYSTACK_USE_ALLOCA 0
|
2002-05-29 09:20:39 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#include "ruby.h"
|
2002-05-29 09:20:39 +04:00
|
|
|
#include "intern.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
#include "node.h"
|
|
|
|
#include "st.h"
|
|
|
|
#include <stdio.h>
|
1999-08-13 09:45:20 +04:00
|
|
|
#include <errno.h>
|
2001-05-16 13:05:54 +04:00
|
|
|
#include <ctype.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-10-08 13:58:25 +04:00
|
|
|
#define YYMALLOC(size) rb_parser_malloc(parser, size)
|
|
|
|
#define YYREALLOC(ptr, size) rb_parser_realloc(parser, ptr, size)
|
|
|
|
#define YYCALLOC(nelem, size) rb_parser_calloc(parser, nelem, size)
|
|
|
|
#define YYFREE(ptr) rb_parser_free(parser, ptr)
|
|
|
|
#define malloc YYMALLOC
|
|
|
|
#define realloc YYREALLOC
|
|
|
|
#define calloc YYCALLOC
|
|
|
|
#define free YYFREE
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#define ID_SCOPE_SHIFT 3
|
|
|
|
#define ID_SCOPE_MASK 0x07
|
|
|
|
#define ID_LOCAL 0x01
|
|
|
|
#define ID_INSTANCE 0x02
|
|
|
|
#define ID_GLOBAL 0x03
|
|
|
|
#define ID_ATTRSET 0x04
|
1999-12-14 09:50:43 +03:00
|
|
|
#define ID_CONST 0x05
|
2000-03-23 11:37:35 +03:00
|
|
|
#define ID_CLASS 0x06
|
2001-06-05 11:50:59 +04:00
|
|
|
#define ID_JUNK 0x07
|
2001-09-20 10:23:50 +04:00
|
|
|
#define ID_INTERNAL ID_JUNK
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-12-24 11:53:56 +03:00
|
|
|
#define is_notop_id(id) ((id)>tLAST_TOKEN)
|
1999-11-17 10:30:37 +03:00
|
|
|
#define is_local_id(id) (is_notop_id(id)&&((id)&ID_SCOPE_MASK)==ID_LOCAL)
|
|
|
|
#define is_global_id(id) (is_notop_id(id)&&((id)&ID_SCOPE_MASK)==ID_GLOBAL)
|
|
|
|
#define is_instance_id(id) (is_notop_id(id)&&((id)&ID_SCOPE_MASK)==ID_INSTANCE)
|
|
|
|
#define is_attrset_id(id) (is_notop_id(id)&&((id)&ID_SCOPE_MASK)==ID_ATTRSET)
|
1999-12-14 09:50:43 +03:00
|
|
|
#define is_const_id(id) (is_notop_id(id)&&((id)&ID_SCOPE_MASK)==ID_CONST)
|
2000-03-23 11:37:35 +03:00
|
|
|
#define is_class_id(id) (is_notop_id(id)&&((id)&ID_SCOPE_MASK)==ID_CLASS)
|
2002-10-23 14:17:30 +04:00
|
|
|
#define is_junk_id(id) (is_notop_id(id)&&((id)&ID_SCOPE_MASK)==ID_JUNK)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-09-13 13:36:28 +04:00
|
|
|
#define is_asgn_or_id(id) ((is_notop_id(id)) && \
|
|
|
|
(((id)&ID_SCOPE_MASK) == ID_GLOBAL || \
|
|
|
|
((id)&ID_SCOPE_MASK) == ID_INSTANCE || \
|
|
|
|
((id)&ID_SCOPE_MASK) == ID_CLASS))
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifndef RIPPER
|
1999-01-20 07:59:39 +03:00
|
|
|
char *ruby_sourcefile; /* current source file */
|
|
|
|
int ruby_sourceline; /* current line no. */
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
enum lex_state_e {
|
1998-01-16 15:13:05 +03:00
|
|
|
EXPR_BEG, /* ignore newline, +/- is a sign. */
|
|
|
|
EXPR_END, /* newline significant, +/- is a operator. */
|
1999-01-20 07:59:39 +03:00
|
|
|
EXPR_ARG, /* newline significant, +/- is a operator. */
|
2003-01-31 07:00:17 +03:00
|
|
|
EXPR_CMDARG, /* newline significant, +/- is a operator. */
|
2001-06-01 10:47:32 +04:00
|
|
|
EXPR_ENDARG, /* newline significant, +/- is a operator. */
|
2000-05-30 08:24:17 +04:00
|
|
|
EXPR_MID, /* newline significant, +/- is a operator. */
|
1999-08-13 09:45:20 +04:00
|
|
|
EXPR_FNAME, /* ignore newline, no reserved words. */
|
|
|
|
EXPR_DOT, /* right after `.' or `::', no reserved words. */
|
1999-01-20 07:59:39 +03:00
|
|
|
EXPR_CLASS, /* immediate after `class', no here document. */
|
2005-02-08 16:39:47 +03:00
|
|
|
EXPR_VALUE, /* alike EXPR_BEG but label is disallowed. */
|
2004-09-12 19:21:49 +04:00
|
|
|
};
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
# ifdef HAVE_LONG_LONG
|
2001-05-02 08:22:21 +04:00
|
|
|
typedef unsigned LONG_LONG stack_type;
|
2004-09-17 13:24:13 +04:00
|
|
|
# else
|
2001-01-29 08:10:42 +03:00
|
|
|
typedef unsigned long stack_type;
|
2004-09-17 13:24:13 +04:00
|
|
|
# endif
|
2001-01-29 08:10:42 +03:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
# define BITSTACK_PUSH(stack, n) (stack = (stack<<1)|((n)&1))
|
2005-01-05 11:00:50 +03:00
|
|
|
# define BITSTACK_POP(stack) (stack = stack >> 1)
|
2004-09-17 13:24:13 +04:00
|
|
|
# define BITSTACK_LEXPOP(stack) (stack = (stack >> 1) | (stack & 1))
|
|
|
|
# define BITSTACK_SET_P(stack) (stack&1)
|
2003-10-23 08:44:04 +04:00
|
|
|
|
|
|
|
#define COND_PUSH(n) BITSTACK_PUSH(cond_stack, n)
|
|
|
|
#define COND_POP() BITSTACK_POP(cond_stack)
|
|
|
|
#define COND_LEXPOP() BITSTACK_LEXPOP(cond_stack)
|
|
|
|
#define COND_P() BITSTACK_SET_P(cond_stack)
|
2000-09-04 12:24:09 +04:00
|
|
|
|
2003-10-23 08:44:04 +04:00
|
|
|
#define CMDARG_PUSH(n) BITSTACK_PUSH(cmdarg_stack, n)
|
|
|
|
#define CMDARG_POP() BITSTACK_POP(cmdarg_stack)
|
|
|
|
#define CMDARG_LEXPOP() BITSTACK_LEXPOP(cmdarg_stack)
|
|
|
|
#define CMDARG_P() BITSTACK_SET_P(cmdarg_stack)
|
2001-01-26 08:02:19 +03:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
/* must sync with real YYSTYPE */
|
|
|
|
union tmpyystype {
|
|
|
|
VALUE val;
|
|
|
|
NODE *node;
|
|
|
|
unsigned long id;
|
|
|
|
int num;
|
|
|
|
struct RVarmap *vars;
|
|
|
|
};
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
struct vtable {
|
2004-10-02 15:34:13 +04:00
|
|
|
ID *tbl;
|
2006-12-31 18:02:22 +03:00
|
|
|
int pos;
|
|
|
|
int capa;
|
|
|
|
struct vtable *prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct local_vars {
|
|
|
|
struct vtable *tbl;
|
|
|
|
struct vtable *dnames;
|
|
|
|
struct vtable *dvars;
|
2004-10-02 15:34:13 +04:00
|
|
|
struct local_vars *prev;
|
2006-12-31 18:02:22 +03:00
|
|
|
int nofree;
|
2004-10-02 15:34:13 +04:00
|
|
|
};
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#define DVARS_INHERIT ((void*)1)
|
|
|
|
#define DVARS_TOPSCOPE NULL
|
|
|
|
#define DVARS_SPECIAL_P(tbl) (!POINTER_P(tbl))
|
|
|
|
#define POINTER_P(val) ((unsigned long)(val) & ~3UL)
|
|
|
|
|
|
|
|
static int
|
|
|
|
vtable_size(struct vtable *tbl)
|
|
|
|
{
|
|
|
|
if (POINTER_P(tbl)) {
|
|
|
|
return tbl->pos;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define VTBL_DEBUG 0
|
|
|
|
|
|
|
|
static struct vtable *
|
|
|
|
vtable_alloc(struct vtable *prev)
|
|
|
|
{
|
|
|
|
struct vtable *tbl = ALLOC(struct vtable);
|
|
|
|
tbl->pos = 0;
|
|
|
|
tbl->capa = 8;
|
|
|
|
tbl->tbl = ALLOC_N(ID, tbl->capa);
|
|
|
|
tbl->prev = prev;
|
|
|
|
if (VTBL_DEBUG) printf("vtable_alloc: %p\n", tbl);
|
|
|
|
return tbl;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vtable_free(struct vtable *tbl)
|
|
|
|
{
|
|
|
|
if (VTBL_DEBUG)printf("vtable_free: %p\n", tbl);
|
|
|
|
if (POINTER_P(tbl)) {
|
|
|
|
if (tbl->tbl) {
|
|
|
|
xfree(tbl->tbl);
|
|
|
|
}
|
|
|
|
if (tbl) {
|
|
|
|
xfree(tbl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vtable_add(struct vtable *tbl, ID id)
|
|
|
|
{
|
|
|
|
if (!POINTER_P(tbl)) {
|
|
|
|
rb_bug("vtable_add: vtable is not allocated (%p)", tbl);
|
|
|
|
}
|
|
|
|
if (VTBL_DEBUG) printf("vtable_add: %p, %s\n", tbl, rb_id2name(id));
|
|
|
|
|
|
|
|
if (tbl->pos == tbl->capa) {
|
|
|
|
tbl->capa = tbl->capa * 2;
|
|
|
|
REALLOC_N(tbl->tbl, ID, tbl->capa);
|
|
|
|
}
|
|
|
|
tbl->tbl[tbl->pos++] = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vtable_included(struct vtable * tbl, ID id)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (POINTER_P(tbl)) {
|
|
|
|
for (i = 0; i < tbl->pos; i++) {
|
|
|
|
if (tbl->tbl[i] == id) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
/*
|
|
|
|
Structure of Lexer Buffer:
|
|
|
|
|
2004-09-20 07:03:12 +04:00
|
|
|
lex_pbeg tokp lex_p lex_pend
|
|
|
|
| | | |
|
|
|
|
|-----------+--------------+------------|
|
|
|
|
|<------------>|
|
|
|
|
token
|
2004-09-17 13:24:13 +04:00
|
|
|
*/
|
|
|
|
struct parser_params {
|
2005-11-29 17:57:18 +03:00
|
|
|
NODE *heap;
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
union tmpyystype *parser_yylval; /* YYSTYPE not defined yet */
|
|
|
|
VALUE eofp;
|
|
|
|
|
|
|
|
NODE *parser_lex_strterm;
|
|
|
|
enum lex_state_e parser_lex_state;
|
|
|
|
stack_type parser_cond_stack;
|
|
|
|
stack_type parser_cmdarg_stack;
|
|
|
|
int parser_class_nest;
|
2005-08-12 12:13:28 +04:00
|
|
|
int parser_paren_nest;
|
|
|
|
int parser_lpar_beg;
|
2004-09-17 13:24:13 +04:00
|
|
|
int parser_in_single;
|
|
|
|
int parser_in_def;
|
|
|
|
int parser_compile_for_eval;
|
|
|
|
VALUE parser_cur_mid;
|
|
|
|
int parser_in_defined;
|
|
|
|
char *parser_tokenbuf;
|
|
|
|
int parser_tokidx;
|
|
|
|
int parser_toksiz;
|
|
|
|
VALUE parser_lex_input;
|
|
|
|
VALUE parser_lex_lastline;
|
2005-10-20 17:15:19 +04:00
|
|
|
const char *parser_lex_pbeg;
|
|
|
|
const char *parser_lex_p;
|
|
|
|
const char *parser_lex_pend;
|
2004-09-17 13:24:13 +04:00
|
|
|
int parser_heredoc_end;
|
|
|
|
int parser_command_start;
|
|
|
|
int parser_lex_gets_ptr;
|
2005-09-25 04:39:22 +04:00
|
|
|
VALUE (*parser_lex_gets)(struct parser_params*,VALUE);
|
2004-10-02 15:34:13 +04:00
|
|
|
struct local_vars *parser_lvtbl;
|
2005-07-13 17:44:21 +04:00
|
|
|
int parser_ruby__end__seen;
|
2005-11-30 17:52:30 +03:00
|
|
|
int line_count;
|
|
|
|
int has_shebang;
|
|
|
|
|
2004-12-29 23:41:04 +03:00
|
|
|
#ifndef RIPPER
|
|
|
|
/* Ruby core only */
|
|
|
|
NODE *parser_eval_tree_begin;
|
|
|
|
NODE *parser_eval_tree;
|
2005-07-13 17:44:21 +04:00
|
|
|
VALUE debug_lines;
|
2004-12-29 23:41:04 +03:00
|
|
|
#else
|
|
|
|
/* Ripper only */
|
2004-09-17 13:24:13 +04:00
|
|
|
int parser_ruby_sourceline;
|
|
|
|
VALUE parser_ruby_sourcefile;
|
2005-10-20 17:15:19 +04:00
|
|
|
const char *tokp;
|
2004-09-20 09:40:23 +04:00
|
|
|
VALUE delayed;
|
2004-09-20 11:59:30 +04:00
|
|
|
int delayed_line;
|
|
|
|
int delayed_col;
|
2004-12-29 23:41:04 +03:00
|
|
|
|
|
|
|
VALUE value;
|
|
|
|
VALUE result;
|
|
|
|
VALUE parsing_thread;
|
|
|
|
int toplevel_p;
|
2004-09-17 13:24:13 +04:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2005-10-08 13:58:25 +04:00
|
|
|
#ifdef YYMALLOC
|
|
|
|
void *rb_parser_malloc(struct parser_params *, size_t);
|
|
|
|
void *rb_parser_realloc(struct parser_params *, void *, size_t);
|
|
|
|
void *rb_parser_calloc(struct parser_params *, size_t, size_t);
|
|
|
|
void rb_parser_free(struct parser_params *, void *);
|
|
|
|
#endif
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static int parser_yyerror(struct parser_params*, const char*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define yyerror(msg) parser_yyerror(parser, msg)
|
|
|
|
|
|
|
|
#define YYPARSE_PARAM parser_v
|
|
|
|
#define YYLEX_PARAM parser_v
|
|
|
|
#define parser ((struct parser_params*)parser_v)
|
|
|
|
|
2004-09-22 04:19:15 +04:00
|
|
|
#define ruby_eval_tree (parser->parser_eval_tree)
|
|
|
|
#define ruby_eval_tree_begin (parser->parser_eval_tree_begin)
|
2004-09-17 13:24:13 +04:00
|
|
|
#define lex_strterm (parser->parser_lex_strterm)
|
|
|
|
#define lex_state (parser->parser_lex_state)
|
|
|
|
#define cond_stack (parser->parser_cond_stack)
|
|
|
|
#define cmdarg_stack (parser->parser_cmdarg_stack)
|
|
|
|
#define class_nest (parser->parser_class_nest)
|
2005-08-12 12:13:28 +04:00
|
|
|
#define paren_nest (parser->parser_paren_nest)
|
|
|
|
#define lpar_beg (parser->parser_lpar_beg)
|
2004-09-17 13:24:13 +04:00
|
|
|
#define in_single (parser->parser_in_single)
|
|
|
|
#define in_def (parser->parser_in_def)
|
|
|
|
#define compile_for_eval (parser->parser_compile_for_eval)
|
|
|
|
#define cur_mid (parser->parser_cur_mid)
|
|
|
|
#define in_defined (parser->parser_in_defined)
|
|
|
|
#define tokenbuf (parser->parser_tokenbuf)
|
|
|
|
#define tokidx (parser->parser_tokidx)
|
|
|
|
#define toksiz (parser->parser_toksiz)
|
|
|
|
#define lex_input (parser->parser_lex_input)
|
|
|
|
#define lex_lastline (parser->parser_lex_lastline)
|
|
|
|
#define lex_pbeg (parser->parser_lex_pbeg)
|
|
|
|
#define lex_p (parser->parser_lex_p)
|
|
|
|
#define lex_pend (parser->parser_lex_pend)
|
|
|
|
#define heredoc_end (parser->parser_heredoc_end)
|
|
|
|
#define command_start (parser->parser_command_start)
|
|
|
|
#define lex_gets_ptr (parser->parser_lex_gets_ptr)
|
|
|
|
#define lex_gets (parser->parser_lex_gets)
|
2004-10-02 15:34:13 +04:00
|
|
|
#define lvtbl (parser->parser_lvtbl)
|
2004-09-17 13:24:13 +04:00
|
|
|
#define ruby__end__seen (parser->parser_ruby__end__seen)
|
2005-07-13 17:44:21 +04:00
|
|
|
#ifdef RIPPER
|
2004-09-17 13:24:13 +04:00
|
|
|
#define ruby_sourceline (parser->parser_ruby_sourceline)
|
|
|
|
#define ruby_sourcefile (parser->parser_ruby_sourcefile)
|
2005-07-13 17:44:21 +04:00
|
|
|
#else
|
|
|
|
#define ruby_debug_lines (parser->debug_lines)
|
2004-09-17 13:24:13 +04:00
|
|
|
#endif
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static int yylex(void*, void*);
|
2004-09-17 13:24:13 +04:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifndef RIPPER
|
2005-10-18 21:35:18 +04:00
|
|
|
#define yyparse ruby_yyparse
|
2004-09-17 13:24:13 +04:00
|
|
|
#define yydebug ruby_yydebug
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *cond_gen(struct parser_params*,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define cond(node) cond_gen(parser, node)
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *logop_gen(struct parser_params*,enum node_type,NODE*,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define logop(type,node1,node2) logop_gen(parser, type, node1, node2)
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static int cond_negative(NODE**);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *newline_node(NODE*);
|
|
|
|
static void fixpos(NODE*,NODE*);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static int value_expr_gen(struct parser_params*,NODE*);
|
|
|
|
static void void_expr_gen(struct parser_params*,NODE*);
|
|
|
|
static NODE *remove_begin(NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define value_expr(node) value_expr_gen(parser, (node) = remove_begin(node))
|
|
|
|
#define void_expr(node) void_expr_gen(parser, (node) = remove_begin(node))
|
2005-09-25 04:39:22 +04:00
|
|
|
static void void_stmts_gen(struct parser_params*,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define void_stmts(node) void_stmts_gen(parser, node)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void reduce_nodes(NODE**);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
static void block_dup_check(NODE*,NODE*);
|
2005-09-25 04:39:22 +04:00
|
|
|
|
|
|
|
static NODE *block_append(NODE*,NODE*);
|
|
|
|
static NODE *list_append(NODE*,NODE*);
|
|
|
|
static NODE *list_concat(NODE*,NODE*);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
static NODE *arg_append(NODE*,NODE*);
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *arg_concat(NODE*,NODE*);
|
|
|
|
static NODE *literal_concat(NODE*,NODE*);
|
|
|
|
static NODE *new_evstr(NODE*);
|
|
|
|
static NODE *evstr2dstr(NODE*);
|
|
|
|
|
|
|
|
static NODE *call_op_gen(struct parser_params*,NODE*,ID,int,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define call_op(recv,id,narg,arg1) call_op_gen(parser, recv,id,narg,arg1)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
static NODE *new_args_gen(struct parser_params*,VALUE,NODE*,NODE*,NODE*,NODE*);
|
|
|
|
#define new_args(f,o,r,p,b) new_args_gen(parser, f,o,r,p,b)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void shadowing_lvar_gen(struct parser_params*,ID);
|
2005-08-10 05:39:24 +04:00
|
|
|
#define shadowing_lvar(name) shadowing_lvar_gen(parser, name)
|
2005-07-28 11:16:22 +04:00
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *negate_lit(NODE*);
|
|
|
|
static NODE *ret_args(NODE*);
|
|
|
|
static NODE *arg_blk_pass(NODE*,NODE*);
|
|
|
|
static NODE *new_yield(NODE*);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *gettable_gen(struct parser_params*,ID);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define gettable(id) gettable_gen(parser,id)
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *assignable_gen(struct parser_params*,ID,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define assignable(id,node) assignable_gen(parser, id, node)
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *new_bv_gen(struct parser_params*,ID,NODE*);
|
2005-03-09 12:29:52 +03:00
|
|
|
#define new_bv(id,node) new_bv_gen(parser, id, node)
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *aryset_gen(struct parser_params*,NODE*,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define aryset(node1,node2) aryset_gen(parser, node1, node2)
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *attrset_gen(struct parser_params*,NODE*,ID);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define attrset(node,id) attrset_gen(parser, node, id)
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static void rb_backref_error(NODE*);
|
|
|
|
static NODE *node_assign_gen(struct parser_params*,NODE*,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define node_assign(node1, node2) node_assign_gen(parser, node1, node2)
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *match_op_gen(struct parser_params*,NODE*,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
#define match_op(node1,node2) match_op_gen(parser, node1, node2)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static void local_push_gen(struct parser_params*,int);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define local_push(top) local_push_gen(parser,top)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void local_pop_gen(struct parser_params*);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define local_pop() local_pop_gen(parser)
|
2005-09-25 04:39:22 +04:00
|
|
|
static int local_append_gen(struct parser_params*, ID);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define local_append(id) local_append_gen(parser, id)
|
2005-09-25 04:39:22 +04:00
|
|
|
static int local_cnt_gen(struct parser_params*, ID);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define local_cnt(id) local_cnt_gen(parser, id)
|
2005-09-25 04:39:22 +04:00
|
|
|
static int local_id_gen(struct parser_params*, ID);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define local_id(id) local_id_gen(parser, id)
|
2005-09-25 04:39:22 +04:00
|
|
|
static ID *local_tbl_gen(struct parser_params*);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define local_tbl() local_tbl_gen(parser)
|
2006-12-31 18:02:22 +03:00
|
|
|
static ID *dyna_tbl_gen(struct parser_params*);
|
|
|
|
#define dyna_tbl() dyna_tbl_gen(parser)
|
2005-09-25 04:39:22 +04:00
|
|
|
static ID internal_id(void);
|
2004-10-02 15:34:13 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
static int dyna_push_gen(struct parser_params*);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define dyna_push() dyna_push_gen(parser)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void dyna_pop_gen(struct parser_params*, struct RVarmap*);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define dyna_pop(vars) dyna_pop_gen(parser, vars)
|
2005-09-25 04:39:22 +04:00
|
|
|
static int dyna_in_block_gen(struct parser_params*);
|
2006-12-31 18:02:22 +03:00
|
|
|
#define dyna_in_block() dyna_in_block_gen(parser)
|
|
|
|
static NODE *dyna_init_gen(struct parser_params*, NODE*, int);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define dyna_init(node, pre) dyna_init_gen(parser, node, pre)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void dyna_var_gen(struct parser_params*,ID);
|
2005-03-09 12:29:52 +03:00
|
|
|
#define dyna_var(id) dyna_var_gen(parser, id)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void dyna_check_gen(struct parser_params*,ID);
|
2005-03-09 12:29:52 +03:00
|
|
|
#define dyna_check(id) dyna_check_gen(parser, id)
|
2006-12-31 18:02:22 +03:00
|
|
|
static int dvar_defined_gen(struct parser_params*,ID);
|
|
|
|
#define dvar_defined(id) dvar_defined_gen(parser, id)
|
|
|
|
static int dvar_curr_gen(struct parser_params*,ID);
|
|
|
|
#define dvar_curr(id) dvar_curr_gen(parser, id)
|
|
|
|
|
2004-10-02 15:34:13 +04:00
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static void top_local_init_gen(struct parser_params*);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define top_local_init() top_local_init_gen(parser)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void top_local_setup_gen(struct parser_params*);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define top_local_setup() top_local_setup_gen(parser)
|
|
|
|
#else
|
|
|
|
#define remove_begin(node) (node)
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif /* !RIPPER */
|
2005-09-25 04:39:22 +04:00
|
|
|
static int lvar_defined_gen(struct parser_params*, ID);
|
2004-10-02 15:34:13 +04:00
|
|
|
#define lvar_defined(id) lvar_defined_gen(parser, id)
|
2001-05-30 13:12:34 +04:00
|
|
|
|
2005-08-22 18:53:51 +04:00
|
|
|
#define RE_OPTION_ONCE (1<<16)
|
2002-06-24 11:20:42 +04:00
|
|
|
|
|
|
|
#define NODE_STRTERM NODE_ZARRAY /* nothing to gc */
|
|
|
|
#define NODE_HEREDOC NODE_ARRAY /* 1, 3 to gc */
|
2004-04-23 09:52:18 +04:00
|
|
|
#define SIGN_EXTEND(x,n) (((1<<(n)-1)^((x)&~(~0<<(n))))-(1<<(n)-1))
|
2002-06-26 12:01:00 +04:00
|
|
|
#define nd_func u1.id
|
2003-07-11 20:22:01 +04:00
|
|
|
#if SIZEOF_SHORT == 2
|
|
|
|
#define nd_term(node) ((signed short)(node)->u2.id)
|
|
|
|
#else
|
|
|
|
#define nd_term(node) SIGN_EXTEND((node)->u2.id, CHAR_BIT*2)
|
|
|
|
#endif
|
|
|
|
#define nd_paren(node) (char)((node)->u2.id >> CHAR_BIT*2)
|
2004-09-12 19:21:49 +04:00
|
|
|
#define nd_nest u3.cnt
|
|
|
|
|
|
|
|
/****** Ripper *******/
|
|
|
|
|
|
|
|
#ifdef RIPPER
|
|
|
|
#define RIPPER_VERSION "0.1.0"
|
|
|
|
|
|
|
|
#include "eventids1.c"
|
|
|
|
#include "eventids2.c"
|
|
|
|
static ID ripper_id_gets;
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static VALUE ripper_dispatch0(struct parser_params*,ID);
|
|
|
|
static VALUE ripper_dispatch1(struct parser_params*,ID,VALUE);
|
|
|
|
static VALUE ripper_dispatch2(struct parser_params*,ID,VALUE,VALUE);
|
|
|
|
static VALUE ripper_dispatch3(struct parser_params*,ID,VALUE,VALUE,VALUE);
|
|
|
|
static VALUE ripper_dispatch4(struct parser_params*,ID,VALUE,VALUE,VALUE,VALUE);
|
|
|
|
static VALUE ripper_dispatch5(struct parser_params*,ID,VALUE,VALUE,VALUE,VALUE,VALUE);
|
2004-09-12 19:21:49 +04:00
|
|
|
|
|
|
|
#define dispatch0(n) ripper_dispatch0(parser, TOKEN_PASTE(ripper_id_, n))
|
|
|
|
#define dispatch1(n,a) ripper_dispatch1(parser, TOKEN_PASTE(ripper_id_, n), a)
|
|
|
|
#define dispatch2(n,a,b) ripper_dispatch2(parser, TOKEN_PASTE(ripper_id_, n), a, b)
|
|
|
|
#define dispatch3(n,a,b,c) ripper_dispatch3(parser, TOKEN_PASTE(ripper_id_, n), a, b, c)
|
|
|
|
#define dispatch4(n,a,b,c,d) ripper_dispatch4(parser, TOKEN_PASTE(ripper_id_, n), a, b, c, d)
|
|
|
|
#define dispatch5(n,a,b,c,d,e) ripper_dispatch5(parser, TOKEN_PASTE(ripper_id_, n), a, b, c, d, e)
|
|
|
|
|
|
|
|
#define yyparse ripper_yyparse
|
|
|
|
#define yydebug ripper_yydebug
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static VALUE ripper_intern(const char*);
|
|
|
|
static VALUE ripper_id2sym(ID);
|
2004-09-12 19:21:49 +04:00
|
|
|
|
|
|
|
#define arg_new() dispatch0(arglist_new)
|
|
|
|
#define arg_add(l,a) dispatch2(arglist_add, l, a)
|
|
|
|
#define arg_prepend(l,a) dispatch2(arglist_prepend, l, a)
|
|
|
|
#define arg_add_star(l,a) dispatch2(arglist_add_star, l, a)
|
|
|
|
#define arg_add_block(l,b) dispatch2(arglist_add_block, l, b)
|
|
|
|
#define arg_add_optblock(l,b) ((b)==Qundef? l : dispatch2(arglist_add_block, l, b))
|
|
|
|
#define bare_assoc(v) dispatch1(bare_assoc_hash, v)
|
|
|
|
#define arg_add_assocs(l,b) arg_add(l, bare_assoc(b))
|
|
|
|
|
|
|
|
#define args2mrhs(a) dispatch1(mrhs_new_from_arglist, a)
|
|
|
|
#define mrhs_new() dispatch0(mrhs_new)
|
|
|
|
#define mrhs_add(l,a) dispatch2(mrhs_add, l, a)
|
|
|
|
#define mrhs_add_star(l,a) dispatch2(mrhs_add_star, l, a)
|
|
|
|
|
|
|
|
#define mlhs_new() dispatch0(mlhs_new)
|
|
|
|
#define mlhs_add(l,a) dispatch2(mlhs_add, l, a)
|
|
|
|
#define mlhs_add_star(l,a) dispatch2(mlhs_add_star, l, a)
|
|
|
|
|
|
|
|
#define blockvar_new(p) dispatch1(blockvar_new, p)
|
|
|
|
#define blockvar_add_star(l,a) dispatch2(blockvar_add_star, l, a)
|
|
|
|
#define blockvar_add_block(l,a) dispatch2(blockvar_add_block, l, a)
|
|
|
|
|
|
|
|
#define method_optarg(m,a) ((a)==Qundef ? m : dispatch2(method_add_arg,m,a))
|
|
|
|
#define method_arg(m,a) dispatch2(method_add_arg,m,a)
|
|
|
|
#define escape_Qundef(x) ((x)==Qundef ? Qnil : (x))
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
|
2005-03-09 12:29:52 +03:00
|
|
|
#define FIXME 0
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif /* RIPPER */
|
|
|
|
|
|
|
|
#ifndef RIPPER
|
2004-10-31 08:22:58 +03:00
|
|
|
# define ifndef_ripper(x) x
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
2004-10-31 08:22:58 +03:00
|
|
|
# define ifndef_ripper(x)
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef RIPPER
|
|
|
|
# define rb_warn0(fmt) rb_warn(fmt)
|
|
|
|
# define rb_warnI(fmt,a) rb_warn(fmt,a)
|
|
|
|
# define rb_warnS(fmt,a) rb_warn(fmt,a)
|
|
|
|
# define rb_warning0(fmt) rb_warning(fmt)
|
2005-07-28 06:33:28 +04:00
|
|
|
# define rb_warningS(fmt,a) rb_warning(fmt,a)
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
|
|
|
# define rb_warn0(fmt) ripper_warn0(parser, fmt)
|
|
|
|
# define rb_warnI(fmt,a) ripper_warnI(parser, fmt, a)
|
|
|
|
# define rb_warnS(fmt,a) ripper_warnS(parser, fmt, a)
|
|
|
|
# define rb_warning0(fmt) ripper_warning0(parser, fmt)
|
2005-07-28 06:33:28 +04:00
|
|
|
# define rb_warningS(fmt,a) ripper_warningS(parser, fmt, a)
|
2005-09-25 04:39:22 +04:00
|
|
|
static void ripper_warn0(struct parser_params*, const char*);
|
|
|
|
static void ripper_warnI(struct parser_params*, const char*, int);
|
|
|
|
static void ripper_warnS(struct parser_params*, const char*, const char*);
|
|
|
|
static void ripper_warning0(struct parser_params*, const char*);
|
|
|
|
static void ripper_warningS(struct parser_params*, const char*, const char*);
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
#ifdef RIPPER
|
2005-09-25 04:39:22 +04:00
|
|
|
static void ripper_compile_error(struct parser_params*, const char *fmt, ...);
|
2004-09-17 13:24:13 +04:00
|
|
|
# define rb_compile_error ripper_compile_error
|
|
|
|
# define compile_error ripper_compile_error
|
|
|
|
# define PARSER_ARG parser,
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
2004-09-17 13:24:13 +04:00
|
|
|
# define compile_error rb_compile_error
|
|
|
|
# define PARSER_ARG
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
2002-06-24 11:20:42 +04:00
|
|
|
|
2005-07-28 06:33:28 +04:00
|
|
|
#define NEW_BLOCK_PARAM(b, v) NEW_NODE(NODE_BLOCK_PASS, 0, b, v)
|
2004-05-25 06:54:22 +04:00
|
|
|
|
2003-12-03 10:55:54 +03:00
|
|
|
/* Older versions of Yacc set YYMAXDEPTH to a very low value by default (150,
|
|
|
|
for instance). This is too low for Ruby to parse some files, such as
|
|
|
|
date/format.rb, therefore bump the value up to at least Bison's default. */
|
|
|
|
#ifdef OLD_YACC
|
|
|
|
#ifndef YYMAXDEPTH
|
|
|
|
#define YYMAXDEPTH 10000
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
%}
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
%pure_parser
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
%union {
|
2004-09-12 19:21:49 +04:00
|
|
|
VALUE val;
|
1998-01-16 15:13:05 +03:00
|
|
|
NODE *node;
|
|
|
|
ID id;
|
|
|
|
int num;
|
|
|
|
struct RVarmap *vars;
|
|
|
|
}
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
|
|
|
%token
|
|
|
|
/*%
|
|
|
|
%token <val>
|
|
|
|
%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
keyword_class
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_module
|
|
|
|
keyword_def
|
|
|
|
keyword_undef
|
|
|
|
keyword_begin
|
|
|
|
keyword_rescue
|
|
|
|
keyword_ensure
|
|
|
|
keyword_end
|
|
|
|
keyword_if
|
|
|
|
keyword_unless
|
|
|
|
keyword_then
|
|
|
|
keyword_elsif
|
|
|
|
keyword_else
|
|
|
|
keyword_case
|
|
|
|
keyword_when
|
|
|
|
keyword_while
|
|
|
|
keyword_until
|
|
|
|
keyword_for
|
|
|
|
keyword_break
|
|
|
|
keyword_next
|
|
|
|
keyword_redo
|
|
|
|
keyword_retry
|
|
|
|
keyword_in
|
|
|
|
keyword_do
|
|
|
|
keyword_do_cond
|
|
|
|
keyword_do_block
|
|
|
|
keyword_do_LAMBDA
|
|
|
|
keyword_return
|
|
|
|
keyword_yield
|
|
|
|
keyword_super
|
|
|
|
keyword_self
|
|
|
|
keyword_nil
|
|
|
|
keyword_true
|
|
|
|
keyword_false
|
|
|
|
keyword_and
|
|
|
|
keyword_or
|
|
|
|
keyword_not
|
|
|
|
modifier_if
|
|
|
|
modifier_unless
|
|
|
|
modifier_while
|
|
|
|
modifier_until
|
|
|
|
modifier_rescue
|
|
|
|
keyword_alias
|
|
|
|
keyword_defined
|
|
|
|
keyword_BEGIN
|
|
|
|
keyword_END
|
|
|
|
keyword__LINE__
|
|
|
|
keyword__FILE__
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-03-20 19:45:41 +03:00
|
|
|
%token <id> tIDENTIFIER tFID tGVAR tIVAR tCONSTANT tCVAR tLABEL
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%token <node> tINTEGER tFLOAT tSTRING_CONTENT tCHAR
|
2002-06-26 12:01:00 +04:00
|
|
|
%token <node> tNTH_REF tBACK_REF
|
2002-06-24 11:20:42 +04:00
|
|
|
%token <num> tREGEXP_END
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
%type <node> singleton strings string string1 xstring regexp
|
|
|
|
%type <node> string_contents xstring_contents string_content
|
2002-06-26 12:01:00 +04:00
|
|
|
%type <node> words qwords word_list qword_list word
|
2003-03-03 08:17:39 +03:00
|
|
|
%type <node> literal numeric dsym cpath
|
2002-03-26 09:18:51 +03:00
|
|
|
%type <node> bodystmt compstmt stmts stmt expr arg primary command command_call method_call
|
2002-06-28 18:42:46 +04:00
|
|
|
%type <node> expr_value arg_value primary_value
|
2002-03-26 09:18:51 +03:00
|
|
|
%type <node> if_tail opt_else case_body cases opt_rescue exc_list exc_var opt_ensure
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%type <node> args call_args call_args2 opt_call_args
|
|
|
|
%type <node> open_args paren_args opt_paren_args
|
2002-02-13 12:01:11 +03:00
|
|
|
%type <node> command_args aref_args opt_block_arg block_arg var_ref var_lhs
|
2003-01-01 06:24:29 +03:00
|
|
|
%type <node> mrhs superclass block_call block_command
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%type <node> f_arglist f_args f_rest_arg f_post_arg
|
|
|
|
%type <node> f_optarg f_opt f_block_arg opt_f_block_arg
|
2006-10-06 02:32:04 +04:00
|
|
|
%type <node> assoc_list assocs assoc undef_list backref string_dvar for_var
|
|
|
|
%type <node> block_param opt_block_param block_param_def bparam_list bparam_item
|
|
|
|
%type <node> opt_bv_decl bv_decls bvar lambda f_larglist lambda_body
|
2004-10-30 10:56:18 +04:00
|
|
|
%type <node> brace_block cmd_brace_block do_block lhs none fitem
|
2006-10-03 19:58:17 +04:00
|
|
|
%type <node> mlhs mlhs_head mlhs_basic mlhs_item mlhs_node mlhs_post
|
2004-10-30 10:56:18 +04:00
|
|
|
%type <id> fsym variable sym symbol operation operation2 operation3
|
2005-07-27 11:27:19 +04:00
|
|
|
%type <id> cname fname op f_norm_arg
|
|
|
|
%type <val> f_arg
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
|
|
|
/*%
|
|
|
|
%type <val> program reswords then do dot_or_colon
|
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
%token tUPLUS /* unary+ */
|
|
|
|
%token tUMINUS /* unary- */
|
|
|
|
%token tPOW /* ** */
|
|
|
|
%token tCMP /* <=> */
|
|
|
|
%token tEQ /* == */
|
|
|
|
%token tEQQ /* === */
|
|
|
|
%token tNEQ /* != */
|
|
|
|
%token tGEQ /* >= */
|
|
|
|
%token tLEQ /* <= */
|
|
|
|
%token tANDOP tOROP /* && and || */
|
|
|
|
%token tMATCH tNMATCH /* =~ and !~ */
|
|
|
|
%token tDOT2 tDOT3 /* .. and ... */
|
|
|
|
%token tAREF tASET /* [] and []= */
|
|
|
|
%token tLSHFT tRSHFT /* << and >> */
|
|
|
|
%token tCOLON2 /* :: */
|
|
|
|
%token tCOLON3 /* :: at EXPR_BEG */
|
|
|
|
%token <id> tOP_ASGN /* +=, -= etc. */
|
|
|
|
%token tASSOC /* => */
|
|
|
|
%token tLPAREN /* ( */
|
2001-05-30 13:12:34 +04:00
|
|
|
%token tLPAREN_ARG /* ( */
|
2001-03-13 08:45:13 +03:00
|
|
|
%token tRPAREN /* ) */
|
1999-01-20 07:59:39 +03:00
|
|
|
%token tLBRACK /* [ */
|
|
|
|
%token tLBRACE /* { */
|
2001-05-30 13:12:34 +04:00
|
|
|
%token tLBRACE_ARG /* { */
|
1999-01-20 07:59:39 +03:00
|
|
|
%token tSTAR /* * */
|
|
|
|
%token tAMPER /* & */
|
2005-07-27 11:27:19 +04:00
|
|
|
%token tLAMBDA /* -> */
|
2004-05-17 11:25:36 +04:00
|
|
|
%token tSYMBEG tSTRING_BEG tXSTRING_BEG tREGEXP_BEG tWORDS_BEG tQWORDS_BEG
|
2005-08-12 12:13:28 +04:00
|
|
|
%token tSTRING_DBEG tSTRING_DVAR tSTRING_END tLAMBEG
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* precedence table
|
|
|
|
*/
|
|
|
|
|
2002-12-24 11:53:56 +03:00
|
|
|
%nonassoc tLOWEST
|
2002-12-20 11:33:17 +03:00
|
|
|
%nonassoc tLBRACE_ARG
|
|
|
|
|
2006-06-26 18:15:49 +04:00
|
|
|
%nonassoc modifier_if modifier_unless modifier_while modifier_until
|
|
|
|
%left keyword_or keyword_and
|
|
|
|
%right keyword_not
|
|
|
|
%nonassoc keyword_defined
|
1999-01-20 07:59:39 +03:00
|
|
|
%right '=' tOP_ASGN
|
2006-06-26 18:15:49 +04:00
|
|
|
%left modifier_rescue
|
1999-01-20 07:59:39 +03:00
|
|
|
%right '?' ':'
|
|
|
|
%nonassoc tDOT2 tDOT3
|
|
|
|
%left tOROP
|
|
|
|
%left tANDOP
|
|
|
|
%nonassoc tCMP tEQ tEQQ tNEQ tMATCH tNMATCH
|
|
|
|
%left '>' tGEQ '<' tLEQ
|
1998-01-16 15:13:05 +03:00
|
|
|
%left '|' '^'
|
|
|
|
%left '&'
|
1999-01-20 07:59:39 +03:00
|
|
|
%left tLSHFT tRSHFT
|
1998-01-16 15:13:05 +03:00
|
|
|
%left '+' '-'
|
|
|
|
%left '*' '/' '%'
|
2003-01-24 12:18:04 +03:00
|
|
|
%right tUMINUS_NUM tUMINUS
|
1999-01-20 07:59:39 +03:00
|
|
|
%right tPOW
|
2003-01-24 12:18:04 +03:00
|
|
|
%right '!' '~' tUPLUS
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-12-24 11:53:56 +03:00
|
|
|
%token tLAST_TOKEN
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
%%
|
|
|
|
program : {
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_BEG;
|
2004-09-12 19:21:49 +04:00
|
|
|
top_local_init();
|
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
$$ = Qnil;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
if ($2 && !compile_for_eval) {
|
2006-12-31 18:02:22 +03:00
|
|
|
/* last expression should not be void */
|
1999-08-13 09:45:20 +04:00
|
|
|
if (nd_type($2) != NODE_BLOCK) void_expr($2);
|
|
|
|
else {
|
|
|
|
NODE *node = $2;
|
|
|
|
while (node->nd_next) {
|
|
|
|
node = node->nd_next;
|
|
|
|
}
|
|
|
|
void_expr(node->nd_head);
|
|
|
|
}
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
ruby_eval_tree = block_append(ruby_eval_tree, $2);
|
2006-12-31 18:02:22 +03:00
|
|
|
top_local_setup();
|
|
|
|
/*%
|
|
|
|
$$ = $2;
|
|
|
|
parser->result = dispatch1(program, $$);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
|
|
|
|
|
|
|
bodystmt : compstmt
|
|
|
|
opt_rescue
|
|
|
|
opt_else
|
|
|
|
opt_ensure
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $1;
|
2002-03-26 09:18:51 +03:00
|
|
|
if ($2) {
|
|
|
|
$$ = NEW_RESCUE($1, $2, $3);
|
|
|
|
}
|
|
|
|
else if ($3) {
|
|
|
|
rb_warn("else without rescue is useless");
|
2002-05-20 20:22:23 +04:00
|
|
|
$$ = block_append($$, $3);
|
2002-03-26 09:18:51 +03:00
|
|
|
}
|
|
|
|
if ($4) {
|
2004-02-03 05:23:20 +03:00
|
|
|
if ($$) {
|
|
|
|
$$ = NEW_ENSURE($$, $4);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$$ = block_append($4, NEW_NIL());
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
}
|
|
|
|
fixpos($$, $1);
|
2006-12-31 18:02:22 +03:00
|
|
|
/*%
|
|
|
|
$$ = dispatch4(bodystmt,
|
|
|
|
escape_Qundef($1),
|
|
|
|
escape_Qundef($2),
|
|
|
|
escape_Qundef($3),
|
|
|
|
escape_Qundef($4));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-03-26 09:18:51 +03:00
|
|
|
}
|
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt : stmts opt_terms
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
void_stmts($1);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
stmts : none
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
|
|
|
{
|
|
|
|
$$ = dispatch2(stmts_add, dispatch0(stmts_new),
|
2006-12-31 18:02:22 +03:00
|
|
|
dispatch0(void_stmt));
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
| stmt
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-10-02 15:34:13 +04:00
|
|
|
$$ = newline_node(remove_begin($1));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(stmts_add, dispatch0(stmts_new), $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
| stmts terms stmt
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-10-02 15:34:13 +04:00
|
|
|
$$ = block_append($1, newline_node(remove_begin($3)));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(stmts_add, $1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
| error stmt
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-10-02 15:34:13 +04:00
|
|
|
$$ = remove_begin($2);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-06-26 18:15:49 +04:00
|
|
|
stmt : keyword_alias fitem {lex_state = EXPR_FNAME;} fitem
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = NEW_ALIAS($2, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(alias, $2, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_alias tGVAR tGVAR
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = NEW_VALIAS($2, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(var_alias, $2, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_alias tGVAR tBACK_REF
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
char buf[3];
|
|
|
|
|
2003-01-16 10:38:40 +03:00
|
|
|
sprintf(buf, "$%c", (char)$3->nd_nth);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = NEW_VALIAS($2, rb_intern(buf));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(var_alias, $2, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_alias tGVAR tNTH_REF
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
yyerror("can't make alias for the number variables");
|
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(var_alias, $2, $3);
|
|
|
|
$$ = dispatch1(alias_error, $$);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_undef undef_list
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(undef, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| stmt modifier_if expr_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = NEW_IF(cond($3), $1, 0);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $3);
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
$$->nd_else = $$->nd_body;
|
|
|
|
$$->nd_body = 0;
|
2003-01-09 09:16:43 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(if_mod, $3, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| stmt modifier_unless expr_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = NEW_UNLESS(cond($3), $1, 0);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $3);
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
$$->nd_body = $$->nd_else;
|
|
|
|
$$->nd_else = 0;
|
2003-01-09 09:16:43 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(unless_mod, $3, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| stmt modifier_while expr_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-03-13 08:45:13 +03:00
|
|
|
if ($1 && nd_type($1) == NODE_BEGIN) {
|
|
|
|
$$ = NEW_WHILE(cond($3), $1->nd_body, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-03-13 08:45:13 +03:00
|
|
|
$$ = NEW_WHILE(cond($3), $1, 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2003-01-09 09:16:43 +03:00
|
|
|
nd_set_type($$, NODE_UNTIL);
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(while_mod, $3, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| stmt modifier_until expr_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-03-13 08:45:13 +03:00
|
|
|
if ($1 && nd_type($1) == NODE_BEGIN) {
|
|
|
|
$$ = NEW_UNTIL(cond($3), $1->nd_body, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-03-13 08:45:13 +03:00
|
|
|
$$ = NEW_UNTIL(cond($3), $1, 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2003-01-09 09:16:43 +03:00
|
|
|
nd_set_type($$, NODE_WHILE);
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(until_mod, $3, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| stmt modifier_rescue stmt
|
2003-03-03 08:17:39 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
$$ = NEW_RESCUE($1, NEW_RESBODY(0,$3,0), 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(rescue_mod, $3, $1);
|
|
|
|
%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_BEGIN
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-02-13 08:09:11 +03:00
|
|
|
if (in_def || in_single) {
|
1998-01-16 15:19:22 +03:00
|
|
|
yyerror("BEGIN in method");
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
// local_push(0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
if (in_def || in_single) {
|
|
|
|
yyerror("BEGIN in method");
|
|
|
|
}
|
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
'{' compstmt '}'
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
ruby_eval_tree_begin = block_append(ruby_eval_tree_begin,
|
2006-12-31 18:02:22 +03:00
|
|
|
$4);
|
|
|
|
// NEW_PREEXE($4));
|
|
|
|
// local_pop();
|
1998-01-16 15:19:22 +03:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(BEGIN, $4);
|
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_END '{' compstmt '}'
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2003-10-06 11:03:20 +04:00
|
|
|
if (in_def || in_single) {
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
rb_warn0("END in method; use at_exit");
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
/*%%%*/
|
2006-02-03 12:15:42 +03:00
|
|
|
$$ = NEW_POSTEXE($3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(END, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2001-01-20 17:02:28 +03:00
|
|
|
| lhs '=' command_call
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = node_assign($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(assign, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2001-01-20 17:02:28 +03:00
|
|
|
| mlhs '=' command_call
|
2000-08-31 09:29:54 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-08-31 09:29:54 +04:00
|
|
|
value_expr($3);
|
2003-10-06 23:15:29 +04:00
|
|
|
$1->nd_value = ($1->nd_head) ? NEW_TO_ARY($3) : NEW_ARRAY($3);
|
2000-08-31 09:29:54 +04:00
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(massign, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2000-08-31 09:29:54 +04:00
|
|
|
}
|
2002-02-13 12:01:11 +03:00
|
|
|
| var_lhs tOP_ASGN command_call
|
2001-10-30 11:43:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($3);
|
2002-02-13 12:01:11 +03:00
|
|
|
if ($1) {
|
2002-02-14 11:47:58 +03:00
|
|
|
ID vid = $1->nd_vid;
|
2001-11-08 09:43:14 +03:00
|
|
|
if ($2 == tOROP) {
|
2002-02-13 12:01:11 +03:00
|
|
|
$1->nd_value = $3;
|
|
|
|
$$ = NEW_OP_ASGN_OR(gettable(vid), $1);
|
2002-09-13 13:36:28 +04:00
|
|
|
if (is_asgn_or_id(vid)) {
|
2002-02-13 12:01:11 +03:00
|
|
|
$$->nd_aid = vid;
|
2001-11-08 09:43:14 +03:00
|
|
|
}
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
2001-11-08 09:43:14 +03:00
|
|
|
else if ($2 == tANDOP) {
|
2002-02-13 12:01:11 +03:00
|
|
|
$1->nd_value = $3;
|
|
|
|
$$ = NEW_OP_ASGN_AND(gettable(vid), $1);
|
2001-11-08 09:43:14 +03:00
|
|
|
}
|
|
|
|
else {
|
2002-02-13 12:01:11 +03:00
|
|
|
$$ = $1;
|
|
|
|
$$->nd_value = call_op(gettable(vid),$2,1,$3);
|
2001-11-08 09:43:14 +03:00
|
|
|
}
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-11-08 09:43:14 +03:00
|
|
|
$$ = 0;
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(opassign, $1, $2, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
2006-06-10 20:09:12 +04:00
|
|
|
| primary_value '[' opt_call_args rbracket tOP_ASGN command_call
|
2001-10-30 11:43:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
NODE *args = $3;
|
2001-10-30 11:43:28 +03:00
|
|
|
|
2002-06-11 21:39:38 +04:00
|
|
|
value_expr($6);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
args = arg_concat($6, $3);
|
2001-10-30 11:43:28 +03:00
|
|
|
if ($5 == tOROP) {
|
|
|
|
$5 = 0;
|
|
|
|
}
|
|
|
|
else if ($5 == tANDOP) {
|
|
|
|
$5 = 1;
|
|
|
|
}
|
|
|
|
$$ = NEW_OP_ASGN1($1, $5, args);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-09-05 17:29:01 +04:00
|
|
|
$$ = dispatch2(aref_field, $1, escape_Qundef($3));
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(opassign, $$, $5, $6);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tIDENTIFIER tOP_ASGN command_call
|
2001-10-30 11:43:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($5);
|
2001-10-30 11:43:28 +03:00
|
|
|
if ($4 == tOROP) {
|
|
|
|
$4 = 0;
|
|
|
|
}
|
|
|
|
else if ($4 == tANDOP) {
|
|
|
|
$4 = 1;
|
|
|
|
}
|
|
|
|
$$ = NEW_OP_ASGN2($1, $3, $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
$$ = dispatch3(opassign, $$, $4, $5);
|
|
|
|
%*/
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tCONSTANT tOP_ASGN command_call
|
2001-10-30 11:43:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($5);
|
2001-10-30 11:43:28 +03:00
|
|
|
if ($4 == tOROP) {
|
|
|
|
$4 = 0;
|
|
|
|
}
|
|
|
|
else if ($4 == tANDOP) {
|
|
|
|
$4 = 1;
|
|
|
|
}
|
|
|
|
$$ = NEW_OP_ASGN2($1, $3, $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
$$ = dispatch3(opassign, $$, $4, $5);
|
|
|
|
%*/
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value tCOLON2 tIDENTIFIER tOP_ASGN command_call
|
2001-10-30 11:43:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($5);
|
2001-10-30 11:43:28 +03:00
|
|
|
if ($4 == tOROP) {
|
|
|
|
$4 = 0;
|
|
|
|
}
|
|
|
|
else if ($4 == tANDOP) {
|
|
|
|
$4 = 1;
|
|
|
|
}
|
|
|
|
$$ = NEW_OP_ASGN2($1, $3, $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(field, $1, ripper_intern("::"), $3);
|
|
|
|
$$ = dispatch3(opassign, $$, $4, $5);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
|
|
|
| backref tOP_ASGN command_call
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_backref_error($1);
|
2001-10-30 11:43:28 +03:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(assign, dispatch1(var_field, $1), $3);
|
|
|
|
$$ = dispatch1(assign_error, $$);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2001-10-30 11:43:28 +03:00
|
|
|
}
|
2003-01-01 06:24:29 +03:00
|
|
|
| lhs '=' mrhs
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = node_assign($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(assign, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2003-01-01 06:24:29 +03:00
|
|
|
}
|
|
|
|
| mlhs '=' arg_value
|
2000-12-05 12:36:54 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-11-06 13:27:59 +03:00
|
|
|
$1->nd_value = $3;
|
2003-01-01 06:24:29 +03:00
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
dispatch2(massign, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2000-12-05 12:36:54 +03:00
|
|
|
}
|
2001-05-07 13:26:29 +04:00
|
|
|
| mlhs '=' mrhs
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
$1->nd_value = $3;
|
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(massign, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2001-05-07 13:26:29 +04:00
|
|
|
| expr
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-05-07 13:26:29 +04:00
|
|
|
|
2002-11-14 09:18:59 +03:00
|
|
|
expr : command_call
|
2006-06-26 18:15:49 +04:00
|
|
|
| expr keyword_and expr
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = logop(NODE_AND, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("and"), $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| expr keyword_or expr
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = logop(NODE_OR, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("or"), $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_not expr
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_NOT(cond($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(unary, ripper_intern("not"), $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| '!' command_call
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_NOT(cond($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(unary, ID2SYM('!'), $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-02-18 12:52:48 +03:00
|
|
|
expr_value : expr
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-02-18 12:52:48 +03:00
|
|
|
value_expr($$);
|
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-02-18 12:52:48 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2002-02-18 12:52:48 +03:00
|
|
|
|
2001-01-20 17:02:28 +03:00
|
|
|
command_call : command
|
2001-01-26 08:02:19 +03:00
|
|
|
| block_command
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_return call_args
|
2002-11-14 09:18:59 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-11-14 09:18:59 +03:00
|
|
|
$$ = NEW_RETURN(ret_args($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(return, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-11-14 09:18:59 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_break call_args
|
2002-11-14 09:18:59 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-11-14 09:18:59 +03:00
|
|
|
$$ = NEW_BREAK(ret_args($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(break, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-11-14 09:18:59 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_next call_args
|
2002-11-14 09:18:59 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-11-14 09:18:59 +03:00
|
|
|
$$ = NEW_NEXT(ret_args($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(next, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-11-14 09:18:59 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-01-20 17:02:28 +03:00
|
|
|
|
2001-01-26 08:02:19 +03:00
|
|
|
block_command : block_call
|
2002-06-28 18:42:46 +04:00
|
|
|
| block_call '.' operation2 command_args
|
2001-01-20 17:02:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(call, $1, ripper_id2sym('.'), $3);
|
|
|
|
$$ = method_arg($$, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2001-01-20 17:02:28 +03:00
|
|
|
}
|
2002-06-28 18:42:46 +04:00
|
|
|
| block_call tCOLON2 operation2 command_args
|
2001-01-20 17:02:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(call, $1, ripper_intern("::"), $3);
|
|
|
|
$$ = method_arg($$, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2001-01-20 17:02:28 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-01-20 17:02:28 +03:00
|
|
|
|
2002-12-20 11:33:17 +03:00
|
|
|
cmd_brace_block : tLBRACE_ARG
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = dyna_push();
|
|
|
|
$<num>$ = ruby_sourceline;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
%*/
|
2002-12-20 11:33:17 +03:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
opt_block_param {$<num>$ = vtable_size(lvtbl->dvars);}
|
2002-12-20 11:33:17 +03:00
|
|
|
compstmt
|
|
|
|
'}'
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-03-09 12:29:52 +03:00
|
|
|
$3->nd_body = block_append($3->nd_body,
|
2006-12-31 18:02:22 +03:00
|
|
|
dyna_init($5, $<num>4));
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = $3;
|
2002-12-20 11:33:17 +03:00
|
|
|
nd_set_line($$, $<num>1);
|
|
|
|
dyna_pop($<vars>2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(brace_block, escape_Qundef($3), $5);
|
|
|
|
%*/
|
2002-12-20 11:33:17 +03:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-12-24 11:53:56 +03:00
|
|
|
command : operation command_args %prec tLOWEST
|
2002-12-20 11:33:17 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_FCALL($1, $2);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(command, $1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
|
|
|
}
|
2002-12-20 11:33:17 +03:00
|
|
|
| operation command_args cmd_brace_block
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_FCALL($1, $2);
|
|
|
|
block_dup_check($2,$3);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(command, $1, $2);
|
|
|
|
$$ = dispatch2(iter_block, $$, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
|
|
|
}
|
2002-12-24 11:53:56 +03:00
|
|
|
| primary_value '.' operation2 command_args %prec tLOWEST
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch4(command_call, $1, ripper_id2sym('.'), $3, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-12-20 11:33:17 +03:00
|
|
|
| primary_value '.' operation2 command_args cmd_brace_block
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
|
|
|
block_dup_check($4,$5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch4(command_call, $1, ripper_id2sym('.'), $3, $4);
|
|
|
|
$$ = dispatch2(iter_block, $$, $5);
|
|
|
|
%*/
|
2002-12-20 11:33:17 +03:00
|
|
|
}
|
2002-12-24 11:53:56 +03:00
|
|
|
| primary_value tCOLON2 operation2 command_args %prec tLOWEST
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch4(command_call, $1, ripper_intern("::"), $3, $4);
|
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-12-20 11:33:17 +03:00
|
|
|
| primary_value tCOLON2 operation2 command_args cmd_brace_block
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
|
|
|
block_dup_check($4,$5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch4(command_call, $1, ripper_intern("::"), $3, $4);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(iter_block, $$, $5);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-12-20 11:33:17 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_super command_args
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_SUPER($2);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(super, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_yield command_args
|
2000-09-12 09:37:38 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-06-20 11:11:44 +04:00
|
|
|
$$ = new_yield($2);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(yield, $2);
|
|
|
|
%*/
|
2000-09-12 09:37:38 +04:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2000-09-12 09:37:38 +04:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
mlhs : mlhs_basic
|
2006-10-03 19:58:17 +04:00
|
|
|
| tLPAREN mlhs rparen
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = NEW_MASGN(NEW_LIST($2), 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(mlhs_paren, $2);
|
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
mlhs_basic : mlhs_head
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-03-09 12:04:36 +03:00
|
|
|
$$ = NEW_MASGN($1, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2004-09-27 10:02:27 +04:00
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-03-09 12:04:36 +03:00
|
|
|
| mlhs_head mlhs_item
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-03-09 12:04:36 +03:00
|
|
|
$$ = NEW_MASGN(list_append($1,$2), 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add($1, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-03-09 12:04:36 +03:00
|
|
|
| mlhs_head tSTAR mlhs_node
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-03-09 12:04:36 +03:00
|
|
|
$$ = NEW_MASGN($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star($1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
| mlhs_head tSTAR mlhs_node ',' mlhs_post
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN($1, NEW_POSTARG($3,$5));
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star($1, $3);
|
|
|
|
%*/
|
|
|
|
}
|
2000-03-09 12:04:36 +03:00
|
|
|
| mlhs_head tSTAR
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-03-09 12:04:36 +03:00
|
|
|
$$ = NEW_MASGN($1, -1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star($1, Qnil);
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
| mlhs_head tSTAR ',' mlhs_post
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN($1, NEW_POSTARG(-1,$4));
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star($1, Qnil);
|
|
|
|
%*/
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| tSTAR mlhs_node
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_MASGN(0, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star(mlhs_new(), $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
| tSTAR mlhs_node ',' mlhs_post
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN(0, NEW_POSTARG($2,$4));
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star(mlhs_new(), $2);
|
|
|
|
%*/
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| tSTAR
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = NEW_MASGN(0, -1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star(mlhs_new(), Qnil);
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
| tSTAR ',' mlhs_head
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN(0, NEW_POSTARG(-1,$3));
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add_star(mlhs_new(), Qnil);
|
|
|
|
%*/
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
mlhs_item : mlhs_node
|
2006-10-03 19:58:17 +04:00
|
|
|
| tLPAREN mlhs rparen
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(mlhs_paren, $2);
|
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
mlhs_head : mlhs_item ','
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_LIST($1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add(mlhs_new(), $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-03-09 12:04:36 +03:00
|
|
|
| mlhs_head mlhs_item ','
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-03-09 12:04:36 +03:00
|
|
|
$$ = list_append($1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add($1, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
mlhs_post : mlhs_item
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_LIST($1);
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add(mlhs_new(), $1);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| mlhs_post ',' mlhs_item
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = list_append($1, $3);
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add($1, $3);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
mlhs_node : variable
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = assignable($1, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $1;
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2006-06-10 20:09:12 +04:00
|
|
|
| primary_value '[' opt_call_args rbracket
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = aryset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-09-05 17:29:01 +04:00
|
|
|
$$ = dispatch2(aref_field, $1, escape_Qundef($3));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tIDENTIFIER
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = attrset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value tCOLON2 tIDENTIFIER
|
2000-02-01 06:12:21 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
$$ = attrset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(constpath_field, $1, $3);
|
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tCONSTANT
|
2000-05-09 08:53:16 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-05-09 08:53:16 +04:00
|
|
|
$$ = attrset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
|
|
|
%*/
|
2000-05-09 08:53:16 +04:00
|
|
|
}
|
2003-03-03 08:17:39 +03:00
|
|
|
| primary_value tCOLON2 tCONSTANT
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
if (in_def || in_single)
|
|
|
|
yyerror("dynamic constant assignment");
|
|
|
|
$$ = NEW_CDECL(0, 0, NEW_COLON2($1, $3));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
if (in_def || in_single)
|
|
|
|
yyerror("dynamic constant assignment");
|
|
|
|
$$ = dispatch2(constpath_field, $1, $3);
|
|
|
|
%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
}
|
2003-08-14 21:20:14 +04:00
|
|
|
| tCOLON3 tCONSTANT
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-08-14 21:20:14 +04:00
|
|
|
if (in_def || in_single)
|
|
|
|
yyerror("dynamic constant assignment");
|
|
|
|
$$ = NEW_CDECL(0, 0, NEW_COLON3($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(topconst_field, $2);
|
|
|
|
%*/
|
2003-08-14 21:20:14 +04:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| backref
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_backref_error($1);
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_field, $1);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(assign_error, $$);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
lhs : variable
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = assignable($1, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_field, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-10 20:09:12 +04:00
|
|
|
| primary_value '[' opt_call_args rbracket
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = aryset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-09-05 17:29:01 +04:00
|
|
|
$$ = dispatch2(aref_field, $1, escape_Qundef($3));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tIDENTIFIER
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = attrset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value tCOLON2 tIDENTIFIER
|
2000-02-01 06:12:21 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
$$ = attrset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(field, $1, ripper_intern("::"), $3);
|
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tCONSTANT
|
2000-05-09 08:53:16 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-05-09 08:53:16 +04:00
|
|
|
$$ = attrset($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
|
|
|
%*/
|
2000-05-09 08:53:16 +04:00
|
|
|
}
|
2003-03-03 08:17:39 +03:00
|
|
|
| primary_value tCOLON2 tCONSTANT
|
2003-02-20 06:35:44 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-02-20 06:35:44 +03:00
|
|
|
if (in_def || in_single)
|
|
|
|
yyerror("dynamic constant assignment");
|
|
|
|
$$ = NEW_CDECL(0, 0, NEW_COLON2($1, $3));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(constpath_field, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
if (in_def || in_single) {
|
|
|
|
$$ = dispatch1(assign_error, $$);
|
|
|
|
}
|
|
|
|
%*/
|
2003-02-20 06:35:44 +03:00
|
|
|
}
|
2003-08-14 21:20:14 +04:00
|
|
|
| tCOLON3 tCONSTANT
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-08-14 21:20:14 +04:00
|
|
|
if (in_def || in_single)
|
|
|
|
yyerror("dynamic constant assignment");
|
|
|
|
$$ = NEW_CDECL(0, 0, NEW_COLON3($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(topconst_field, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
if (in_def || in_single) {
|
|
|
|
$$ = dispatch1(assign_error, $$);
|
|
|
|
}
|
|
|
|
%*/
|
2003-08-14 21:20:14 +04:00
|
|
|
}
|
2003-03-03 08:17:39 +03:00
|
|
|
| backref
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_backref_error($1);
|
2003-03-03 08:17:39 +03:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(assign_error, $1);
|
|
|
|
%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
}
|
2003-02-20 06:35:44 +03:00
|
|
|
;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
cname : tIDENTIFIER
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
yyerror("class/module name must be CONSTANT");
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(class_name_error, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| tCONSTANT
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-02-20 06:35:44 +03:00
|
|
|
cpath : tCOLON3 cname
|
2003-02-19 12:27:49 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-02-19 12:27:49 +03:00
|
|
|
$$ = NEW_COLON3($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(topconst_ref, $2);
|
|
|
|
%*/
|
2003-02-19 12:27:49 +03:00
|
|
|
}
|
|
|
|
| cname
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-02-20 06:35:44 +03:00
|
|
|
$$ = NEW_COLON2(0, $$);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(const_ref, $1);
|
|
|
|
%*/
|
2003-02-19 12:27:49 +03:00
|
|
|
}
|
2003-02-20 06:35:44 +03:00
|
|
|
| primary_value tCOLON2 cname
|
2003-02-19 12:27:49 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-02-19 12:27:49 +03:00
|
|
|
$$ = NEW_COLON2($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(constpath_ref, $1, $3);
|
|
|
|
%*/
|
2003-02-19 12:27:49 +03:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
fname : tIDENTIFIER
|
|
|
|
| tCONSTANT
|
|
|
|
| tFID
|
1998-01-16 15:13:05 +03:00
|
|
|
| op
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
|
|
|
lex_state = EXPR_END;
|
|
|
|
$$ = $1;
|
|
|
|
/*%
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_END;
|
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| reswords
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
lex_state = EXPR_END;
|
|
|
|
$$ = $<id>1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
lex_state = EXPR_END;
|
|
|
|
$$ = $1;
|
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-10-30 10:56:18 +04:00
|
|
|
fsym : fname
|
1999-08-13 09:45:20 +04:00
|
|
|
| symbol
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2004-10-30 10:56:18 +04:00
|
|
|
fitem : fsym
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_LIT(ID2SYM($1));
|
|
|
|
/*%
|
|
|
|
$$ = dispatch1(symbol_literal, $1);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| dsym
|
|
|
|
;
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
undef_list : fitem
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_UNDEF($1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = rb_ary_new3(1, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| undef_list ',' {lex_state = EXPR_FNAME;} fitem
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = block_append($1, NEW_UNDEF($4));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
rb_ary_push($1, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-10-31 08:22:58 +03:00
|
|
|
op : '|' { ifndef_ripper($$ = '|'); }
|
|
|
|
| '^' { ifndef_ripper($$ = '^'); }
|
|
|
|
| '&' { ifndef_ripper($$ = '&'); }
|
|
|
|
| tCMP { ifndef_ripper($$ = tCMP); }
|
|
|
|
| tEQ { ifndef_ripper($$ = tEQ); }
|
|
|
|
| tEQQ { ifndef_ripper($$ = tEQQ); }
|
|
|
|
| tMATCH { ifndef_ripper($$ = tMATCH); }
|
|
|
|
| '>' { ifndef_ripper($$ = '>'); }
|
|
|
|
| tGEQ { ifndef_ripper($$ = tGEQ); }
|
|
|
|
| '<' { ifndef_ripper($$ = '<'); }
|
|
|
|
| tLEQ { ifndef_ripper($$ = tLEQ); }
|
|
|
|
| tLSHFT { ifndef_ripper($$ = tLSHFT); }
|
|
|
|
| tRSHFT { ifndef_ripper($$ = tRSHFT); }
|
|
|
|
| '+' { ifndef_ripper($$ = '+'); }
|
|
|
|
| '-' { ifndef_ripper($$ = '-'); }
|
|
|
|
| '*' { ifndef_ripper($$ = '*'); }
|
|
|
|
| tSTAR { ifndef_ripper($$ = '*'); }
|
|
|
|
| '/' { ifndef_ripper($$ = '/'); }
|
|
|
|
| '%' { ifndef_ripper($$ = '%'); }
|
|
|
|
| tPOW { ifndef_ripper($$ = tPOW); }
|
|
|
|
| '~' { ifndef_ripper($$ = '~'); }
|
|
|
|
| tUPLUS { ifndef_ripper($$ = tUPLUS); }
|
|
|
|
| tUMINUS { ifndef_ripper($$ = tUMINUS); }
|
|
|
|
| tAREF { ifndef_ripper($$ = tAREF); }
|
|
|
|
| tASET { ifndef_ripper($$ = tASET); }
|
|
|
|
| '`' { ifndef_ripper($$ = '`'); }
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-06-26 18:15:49 +04:00
|
|
|
reswords : keyword__LINE__ | keyword__FILE__ | keyword_BEGIN | keyword_END
|
|
|
|
| keyword_alias | keyword_and | keyword_begin
|
|
|
|
| keyword_break | keyword_case | keyword_class | keyword_def
|
|
|
|
| keyword_defined | keyword_do | keyword_else | keyword_elsif
|
|
|
|
| keyword_end | keyword_ensure | keyword_false
|
|
|
|
| keyword_for | keyword_in | keyword_module | keyword_next
|
|
|
|
| keyword_nil | keyword_not | keyword_or | keyword_redo
|
|
|
|
| keyword_rescue | keyword_retry | keyword_return | keyword_self
|
|
|
|
| keyword_super | keyword_then | keyword_true | keyword_undef
|
|
|
|
| keyword_when | keyword_yield | keyword_if | keyword_unless
|
|
|
|
| keyword_while | keyword_until
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
arg : lhs '=' arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = node_assign($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(assign, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| lhs '=' arg modifier_rescue arg
|
2003-03-03 08:17:39 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
$$ = node_assign($1, NEW_RESCUE($3, NEW_RESBODY(0,$5,0), 0));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(assign, $1, dispatch2(rescue_mod,$3,$5));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
}
|
2002-02-13 12:01:11 +03:00
|
|
|
| var_lhs tOP_ASGN arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($3);
|
2002-02-13 12:01:11 +03:00
|
|
|
if ($1) {
|
2002-02-14 11:47:58 +03:00
|
|
|
ID vid = $1->nd_vid;
|
2001-11-08 09:43:14 +03:00
|
|
|
if ($2 == tOROP) {
|
2002-02-13 12:01:11 +03:00
|
|
|
$1->nd_value = $3;
|
|
|
|
$$ = NEW_OP_ASGN_OR(gettable(vid), $1);
|
2002-09-13 13:36:28 +04:00
|
|
|
if (is_asgn_or_id(vid)) {
|
2002-02-13 12:01:11 +03:00
|
|
|
$$->nd_aid = vid;
|
2001-11-08 09:43:14 +03:00
|
|
|
}
|
2001-05-07 13:26:29 +04:00
|
|
|
}
|
2001-11-08 09:43:14 +03:00
|
|
|
else if ($2 == tANDOP) {
|
2002-02-13 12:01:11 +03:00
|
|
|
$1->nd_value = $3;
|
|
|
|
$$ = NEW_OP_ASGN_AND(gettable(vid), $1);
|
2001-11-08 09:43:14 +03:00
|
|
|
}
|
|
|
|
else {
|
2002-02-13 12:01:11 +03:00
|
|
|
$$ = $1;
|
|
|
|
$$->nd_value = call_op(gettable(vid),$2,1,$3);
|
2001-11-08 09:43:14 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-11-08 09:43:14 +03:00
|
|
|
$$ = 0;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(opassign, $1, $2, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-10 20:09:12 +04:00
|
|
|
| primary_value '[' opt_call_args rbracket tOP_ASGN arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
NODE *args;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($6);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
args = arg_concat($6, $3);
|
1999-01-20 07:59:39 +03:00
|
|
|
if ($5 == tOROP) {
|
|
|
|
$5 = 0;
|
|
|
|
}
|
|
|
|
else if ($5 == tANDOP) {
|
|
|
|
$5 = 1;
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
$$ = NEW_OP_ASGN1($1, $5, args);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-09-05 17:29:01 +04:00
|
|
|
$1 = dispatch2(aref_field, $1, escape_Qundef($3));
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(opassign, $1, $5, $6);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tIDENTIFIER tOP_ASGN arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($5);
|
1999-01-20 07:59:39 +03:00
|
|
|
if ($4 == tOROP) {
|
|
|
|
$4 = 0;
|
|
|
|
}
|
|
|
|
else if ($4 == tANDOP) {
|
|
|
|
$4 = 1;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_OP_ASGN2($1, $3, $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$1 = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(opassign, $1, $4, $5);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' tCONSTANT tOP_ASGN arg
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($5);
|
1999-01-20 07:59:39 +03:00
|
|
|
if ($4 == tOROP) {
|
|
|
|
$4 = 0;
|
|
|
|
}
|
|
|
|
else if ($4 == tANDOP) {
|
|
|
|
$4 = 1;
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
$$ = NEW_OP_ASGN2($1, $3, $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$1 = dispatch3(field, $1, ripper_id2sym('.'), $3);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(opassign, $1, $4, $5);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value tCOLON2 tIDENTIFIER tOP_ASGN arg
|
2000-02-01 06:12:21 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-11 11:02:23 +04:00
|
|
|
value_expr($5);
|
2000-02-01 06:12:21 +03:00
|
|
|
if ($4 == tOROP) {
|
|
|
|
$4 = 0;
|
|
|
|
}
|
|
|
|
else if ($4 == tANDOP) {
|
|
|
|
$4 = 1;
|
|
|
|
}
|
|
|
|
$$ = NEW_OP_ASGN2($1, $3, $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$1 = dispatch3(field, $1, ripper_intern("::"), $3);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch3(opassign, $1, $4, $5);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2003-03-03 08:17:39 +03:00
|
|
|
| primary_value tCOLON2 tCONSTANT tOP_ASGN arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
yyerror("constant re-assignment");
|
2003-12-24 03:38:53 +03:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(constpath_field, $1, $3);
|
|
|
|
$$ = dispatch3(opassign, $$, $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(assign_error, $$);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2003-03-03 08:17:39 +03:00
|
|
|
}
|
2003-08-14 21:20:14 +04:00
|
|
|
| tCOLON3 tCONSTANT tOP_ASGN arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-08-14 21:20:14 +04:00
|
|
|
yyerror("constant re-assignment");
|
2003-12-24 03:38:53 +03:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(topconst_field, $2);
|
|
|
|
$$ = dispatch3(opassign, $$, $3, $4);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(assign_error, $$);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2003-08-14 21:20:14 +04:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| backref tOP_ASGN arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_backref_error($1);
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_field, $1);
|
|
|
|
$$ = dispatch3(opassign, $$, $2, $3);
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(assign_error, $$);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tDOT2 arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-12 13:22:20 +04:00
|
|
|
value_expr($1);
|
|
|
|
value_expr($3);
|
2005-05-01 04:15:25 +04:00
|
|
|
if (nd_type($1) == NODE_LIT && FIXNUM_P($1->nd_lit) &&
|
|
|
|
nd_type($3) == NODE_LIT && FIXNUM_P($3->nd_lit)) {
|
|
|
|
$1->nd_lit = rb_range_new($1->nd_lit, $3->nd_lit, Qfalse);
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$$ = NEW_DOT2($1, $3);
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(dot2, $1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tDOT3 arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-12 13:22:20 +04:00
|
|
|
value_expr($1);
|
|
|
|
value_expr($3);
|
2005-05-01 04:15:25 +04:00
|
|
|
if (nd_type($1) == NODE_LIT && FIXNUM_P($1->nd_lit) &&
|
|
|
|
nd_type($3) == NODE_LIT && FIXNUM_P($3->nd_lit)) {
|
|
|
|
$1->nd_lit = rb_range_new($1->nd_lit, $3->nd_lit, Qtrue);
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$$ = NEW_DOT3($1, $3);
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(dot3, $1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '+' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = call_op($1, '+', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('+'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '-' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = call_op($1, '-', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('-'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '*' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = call_op($1, '*', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('*'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '/' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = call_op($1, '/', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('/'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '%' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = call_op($1, '%', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('%'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tPOW arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tPOW, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("**"), $3);
|
|
|
|
%*/
|
2003-01-23 06:39:25 +03:00
|
|
|
}
|
|
|
|
| tUMINUS_NUM tINTEGER tPOW arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-01-23 09:50:10 +03:00
|
|
|
$$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS, 0, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $2, ripper_intern("**"), $4);
|
|
|
|
$$ = dispatch2(unary, ripper_intern("-@"), $$);
|
|
|
|
%*/
|
2003-01-23 06:39:25 +03:00
|
|
|
}
|
|
|
|
| tUMINUS_NUM tFLOAT tPOW arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-01-23 09:50:10 +03:00
|
|
|
$$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS, 0, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $2, ripper_intern("**"), $4);
|
|
|
|
$$ = dispatch2(unary, ripper_intern("-@"), $$);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| tUPLUS arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-01-05 07:41:21 +03:00
|
|
|
if ($2 && nd_type($2) == NODE_LIT) {
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
else {
|
1999-12-14 09:50:43 +03:00
|
|
|
$$ = call_op($2, tUPLUS, 0, 0);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(unary, ripper_intern("+@"), $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| tUMINUS arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-01-23 06:39:25 +03:00
|
|
|
$$ = call_op($2, tUMINUS, 0, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(unary, ripper_intern("-@"), $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '|' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = call_op($1, '|', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('!'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '^' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = call_op($1, '^', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('^'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '&' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = call_op($1, '&', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('&'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tCMP arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tCMP, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("<=>"), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '>' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = call_op($1, '>', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('>'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tGEQ arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tGEQ, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern(">="), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| arg '<' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = call_op($1, '<', 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ID2SYM('<'), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tLEQ arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tLEQ, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("<="), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tEQ arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tEQ, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("=="), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tEQQ arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tEQQ, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("==="), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tNEQ arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = NEW_NOT(call_op($1, tEQ, 1, $3));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("!="), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tMATCH arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-09-17 13:24:13 +04:00
|
|
|
$$ = match_op($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("=~"), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tNMATCH arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-09-17 13:24:13 +04:00
|
|
|
$$ = NEW_NOT(match_op($1, $3));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("!~"), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| '!' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_NOT(cond($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(unary, ID2SYM('!'), $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| '~' arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-12-14 09:50:43 +03:00
|
|
|
$$ = call_op($2, '~', 0, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(unary, ID2SYM('~'), $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tLSHFT arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tLSHFT, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("<<"), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tRSHFT arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = call_op($1, tRSHFT, 1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern(">>"), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tANDOP arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = logop(NODE_AND, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("&&"), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| arg tOROP arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = logop(NODE_OR, $1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(binary, $1, ripper_intern("||"), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_defined opt_nl {in_defined = 1;} arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
in_defined = 0;
|
|
|
|
$$ = NEW_DEFINED($4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
in_defined = 0;
|
|
|
|
$$ = dispatch1(defined, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-08-08 07:28:58 +04:00
|
|
|
| arg '?' arg opt_nl ':' arg
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-08-08 07:28:58 +04:00
|
|
|
$$ = NEW_IF(cond($1), $3, $6);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-08-08 07:28:58 +04:00
|
|
|
$$ = dispatch3(ifop, $1, $3, $6);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
| primary
|
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-02-18 12:52:48 +03:00
|
|
|
arg_value : arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-02-18 12:52:48 +03:00
|
|
|
value_expr($1);
|
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $1;
|
|
|
|
%*/
|
2002-02-18 12:52:48 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2002-02-18 12:52:48 +03:00
|
|
|
|
2000-07-03 09:46:36 +04:00
|
|
|
aref_args : none
|
2000-09-04 12:24:09 +04:00
|
|
|
| args trailer
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
| args ',' assocs trailer
|
2000-07-03 09:46:36 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = list_append($1, NEW_HASH($3));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = arg_add_assocs($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2000-07-03 09:46:36 +04:00
|
|
|
}
|
2000-09-04 12:24:09 +04:00
|
|
|
| assocs trailer
|
2000-07-07 07:20:53 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-07-07 07:20:53 +04:00
|
|
|
$$ = NEW_LIST(NEW_HASH($1));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_assocs(arg_new(), $1);
|
|
|
|
%*/
|
2000-07-07 07:20:53 +04:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
paren_args : '(' opt_call_args rparen
|
2000-09-04 12:24:09 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-01-23 11:08:59 +03:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-25 12:45:44 +04:00
|
|
|
$$ = dispatch1(arg_paren, escape_Qundef($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2000-09-04 12:24:09 +04:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-01-23 11:08:59 +03:00
|
|
|
|
|
|
|
opt_paren_args : none
|
|
|
|
| paren_args
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
opt_call_args : none
|
|
|
|
| call_args
|
|
|
|
;
|
|
|
|
|
2001-01-20 17:02:28 +03:00
|
|
|
call_args : command
|
2000-07-01 10:51:28 +04:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_warn("parenthesize argument(s) for future version");
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-07-01 10:51:28 +04:00
|
|
|
$$ = NEW_LIST($1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add(arg_new(), $1);
|
|
|
|
%*/
|
2001-01-20 17:02:28 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| args opt_block_arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = arg_blk_pass($1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_optblock($1, $2);
|
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
| assocs opt_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_LIST(NEW_HASH($1));
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = arg_blk_pass($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_assocs(arg_new(), $1);
|
|
|
|
$$ = arg_add_optblock($$, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| args ',' assocs opt_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = arg_append($1, NEW_HASH($3));
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = arg_blk_pass($$, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_optblock(arg_add_assocs($1, $3), $4);
|
|
|
|
%*/
|
2001-01-20 17:02:28 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| block_arg
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
$$ = arg_add_block(arg_new(), $1);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2002-02-18 12:52:48 +03:00
|
|
|
call_args2 : arg_value ',' args opt_block_arg
|
2001-05-30 13:12:34 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-06-01 11:52:34 +04:00
|
|
|
$$ = arg_blk_pass(list_concat(NEW_LIST($1),$3), $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_optblock(arg_prepend($3, $1), $4);
|
|
|
|
%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| arg_value ',' block_arg
|
2001-11-21 18:42:12 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = arg_blk_pass($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_block(arg_add(arg_new(), $1), $3);
|
|
|
|
%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
| assocs opt_block_arg
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
$$ = NEW_LIST(NEW_HASH($1));
|
|
|
|
$$ = arg_blk_pass($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_optblock(arg_add_assocs(arg_new(), $1), $2);
|
|
|
|
%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| arg_value ',' assocs opt_block_arg
|
2001-05-30 13:12:34 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = arg_append(NEW_LIST($1), NEW_HASH($3));
|
2001-05-30 13:12:34 +04:00
|
|
|
$$ = arg_blk_pass($$, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_assocs(arg_add(arg_new(), $1), $3);
|
|
|
|
$$ = arg_add_optblock($$, $4);
|
|
|
|
%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| arg_value ',' args ',' assocs opt_block_arg
|
2001-05-30 13:12:34 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = arg_append(list_concat(NEW_LIST($1),$3), NEW_HASH($5));
|
2001-05-30 13:12:34 +04:00
|
|
|
$$ = arg_blk_pass($$, $6);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add_assocs(arg_prepend($3, $1), $5);
|
|
|
|
$$ = arg_add_optblock($$, $6);
|
|
|
|
%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
|
|
|
| block_arg
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-05-30 13:12:34 +04:00
|
|
|
|
|
|
|
command_args : {
|
|
|
|
$<num>$ = cmdarg_stack;
|
|
|
|
CMDARG_PUSH(1);
|
|
|
|
}
|
|
|
|
open_args
|
|
|
|
{
|
|
|
|
/* CMDARG_POP() */
|
2006-12-31 18:02:22 +03:00
|
|
|
cmdarg_stack = $<num>1;
|
2001-05-30 13:12:34 +04:00
|
|
|
$$ = $2;
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-05-30 13:12:34 +04:00
|
|
|
|
|
|
|
open_args : call_args
|
2004-02-12 09:23:24 +03:00
|
|
|
| tLPAREN_ARG {lex_state = EXPR_ENDARG;} rparen
|
2001-05-30 13:12:34 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_warning("don't put space before argument parentheses");
|
2001-05-30 13:12:34 +04:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(space, dispatch1(arg_paren, arg_new()));
|
|
|
|
%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
2004-02-12 09:23:24 +03:00
|
|
|
| tLPAREN_ARG call_args2 {lex_state = EXPR_ENDARG;} rparen
|
2001-01-26 08:02:19 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_warning("don't put space before argument parentheses");
|
2001-01-26 08:02:19 +03:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(space, dispatch1(arg_paren, $2));
|
|
|
|
%*/
|
2001-01-26 08:02:19 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-01-26 08:02:19 +03:00
|
|
|
|
2002-02-18 12:52:48 +03:00
|
|
|
block_arg : tAMPER arg_value
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = NEW_BLOCK_PASS($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $2;
|
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
opt_block_arg : ',' block_arg
|
|
|
|
{
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = $2;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| none
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
args : arg_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_LIST($1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add(arg_new(), $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
| tSTAR arg_value
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_SPLAT($2);
|
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = arg_add_star(arg_new(), $2);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%*/
|
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| args ',' arg_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = arg_append($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = arg_add($1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
| args ',' tSTAR arg_value
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = arg_concat($1, $4);
|
|
|
|
/*%
|
|
|
|
$$ = arg_add_star($1, $4);
|
|
|
|
%*/
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-01-01 06:24:29 +03:00
|
|
|
mrhs : args ',' arg_value
|
2000-12-05 12:36:54 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-12-05 12:36:54 +03:00
|
|
|
$$ = list_append($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mrhs_add(args2mrhs($1), $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| args ',' tSTAR arg_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = arg_concat($1, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mrhs_add_star(args2mrhs($1), $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| tSTAR arg_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-03-26 10:01:14 +03:00
|
|
|
$$ = NEW_SPLAT($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mrhs_add_star(mrhs_new(), $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
primary : literal
|
2002-06-24 11:20:42 +04:00
|
|
|
| strings
|
|
|
|
| xstring
|
|
|
|
| regexp
|
2002-06-26 12:01:00 +04:00
|
|
|
| words
|
|
|
|
| qwords
|
1998-01-16 15:13:05 +03:00
|
|
|
| var_ref
|
|
|
|
| backref
|
2000-02-01 06:12:21 +03:00
|
|
|
| tFID
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-07-18 09:29:46 +04:00
|
|
|
$$ = NEW_FCALL($1, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = method_arg(dispatch1(fcall, $1), arg_new());
|
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_begin
|
2002-11-14 16:51:19 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-11-14 16:51:19 +03:00
|
|
|
$<num>1 = ruby_sourceline;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
%*/
|
2002-11-14 16:51:19 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
bodystmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
2000-02-01 06:12:21 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-03-23 10:15:49 +03:00
|
|
|
if ($3 == NULL) {
|
2004-06-30 06:39:38 +04:00
|
|
|
$$ = NEW_NIL();
|
2005-03-23 10:15:49 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (nd_type($3) == NODE_RESCUE ||
|
|
|
|
nd_type($3) == NODE_ENSURE)
|
|
|
|
nd_set_line($3, $<num>1);
|
2004-06-30 06:39:38 +04:00
|
|
|
$$ = NEW_BEGIN($3);
|
2005-03-23 10:15:49 +03:00
|
|
|
}
|
2002-11-14 16:51:19 +03:00
|
|
|
nd_set_line($$, $<num>1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(begin, $3);
|
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2004-02-12 09:23:24 +03:00
|
|
|
| tLPAREN_ARG expr {lex_state = EXPR_ENDARG;} rparen
|
2001-05-30 13:12:34 +04:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_warning0("(...) interpreted as grouped expression");
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(paren, $2);
|
|
|
|
%*/
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
2000-02-01 06:12:21 +03:00
|
|
|
| tLPAREN compstmt ')'
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-07 12:44:24 +04:00
|
|
|
if (!$2) $$ = NEW_NIL();
|
|
|
|
else $$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(paren, $2);
|
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value tCOLON2 tCONSTANT
|
2000-02-01 06:12:21 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
$$ = NEW_COLON2($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(constpath_ref, $1, $3);
|
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2003-08-14 21:20:14 +04:00
|
|
|
| tCOLON3 tCONSTANT
|
2000-02-01 06:12:21 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
$$ = NEW_COLON3($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(topconst_ref, $2);
|
|
|
|
%*/
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2000-09-12 09:37:38 +04:00
|
|
|
| tLBRACK aref_args ']'
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
if ($2 == 0) {
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_ZARRAY(); /* zero length array*/
|
2001-06-07 12:29:59 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
else {
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(array, escape_Qundef($2));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| tLBRACE assoc_list '}'
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_HASH($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(hash, escape_Qundef($2));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_return
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
$$ = NEW_RETURN(0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(return0);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_yield '(' call_args rparen
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-06-20 11:11:44 +04:00
|
|
|
$$ = new_yield($3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(yield, dispatch1(paren, $3));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_yield '(' rparen
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-06-20 11:11:44 +04:00
|
|
|
$$ = NEW_YIELD(0, Qfalse);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(yield, dispatch1(paren, arg_new()));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_yield
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-06-20 11:11:44 +04:00
|
|
|
$$ = NEW_YIELD(0, Qfalse);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(yield0);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_defined opt_nl '(' {in_defined = 1;} expr rparen
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
in_defined = 0;
|
|
|
|
$$ = NEW_DEFINED($5);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
in_defined = 0;
|
|
|
|
$$ = dispatch1(defined, $5);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| operation brace_block
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$2->nd_iter = NEW_FCALL($1, 0);
|
|
|
|
$$ = $2;
|
2004-01-12 17:27:22 +03:00
|
|
|
fixpos($2->nd_iter, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = method_arg(dispatch1(fcall, $1), arg_new());
|
|
|
|
$$ = dispatch2(iter_block, $$, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| method_call
|
1999-08-13 09:45:20 +04:00
|
|
|
| method_call brace_block
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
block_dup_check($1->nd_args, $2);
|
1998-01-16 15:13:05 +03:00
|
|
|
$2->nd_iter = $1;
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $2;
|
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(iter_block, $1, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-08-16 19:24:15 +04:00
|
|
|
| tLAMBDA lambda
|
2005-07-27 11:27:19 +04:00
|
|
|
{
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_if expr_value then
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
1998-01-16 15:13:05 +03:00
|
|
|
if_tail
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_IF(cond($2), $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
NODE *tmp = $$->nd_body;
|
|
|
|
$$->nd_body = $$->nd_else;
|
|
|
|
$$->nd_else = tmp;
|
2003-01-09 09:16:43 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(if, $2, $4, escape_Qundef($5));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_unless expr_value then
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
1998-01-16 15:13:05 +03:00
|
|
|
opt_else
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_UNLESS(cond($2), $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
NODE *tmp = $$->nd_body;
|
|
|
|
$$->nd_body = $$->nd_else;
|
|
|
|
$$->nd_else = tmp;
|
2003-01-09 09:16:43 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(unless, $2, $4, escape_Qundef($5));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_while {COND_PUSH(1);} expr_value do {COND_POP();}
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = NEW_WHILE(cond($3), $6, 1);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $3);
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2003-01-09 09:16:43 +03:00
|
|
|
nd_set_type($$, NODE_UNTIL);
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(while, $3, $6);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_until {COND_PUSH(1);} expr_value do {COND_POP();}
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = NEW_UNTIL(cond($3), $6, 1);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $3);
|
2003-03-20 10:03:22 +03:00
|
|
|
if (cond_negative(&$$->nd_cond)) {
|
2003-01-09 09:16:43 +03:00
|
|
|
nd_set_type($$, NODE_WHILE);
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(until, $3, $6);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_case expr_value opt_terms
|
1998-01-16 15:13:05 +03:00
|
|
|
case_body
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-12-18 12:46:21 +03:00
|
|
|
$$ = NEW_CASE($2, $4);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(case, $2, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_case opt_terms case_body keyword_end
|
2000-12-18 12:46:21 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-09-02 18:36:22 +04:00
|
|
|
$$ = NEW_CASE(0, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(case, Qnil, $3);
|
|
|
|
%*/
|
2000-12-18 12:46:21 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_for for_var keyword_in {COND_PUSH(1);} expr_value do {COND_POP();}
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = NEW_FOR($2, $5, $8);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(for, $2, $5, $8);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_class cpath superclass
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-02-13 08:09:11 +03:00
|
|
|
if (in_def || in_single)
|
1998-01-16 15:13:05 +03:00
|
|
|
yyerror("class definition in method body");
|
2002-03-19 12:03:11 +03:00
|
|
|
local_push(0);
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = ruby_sourceline;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
if (in_def || in_single)
|
|
|
|
yyerror("class definition in method body");
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
bodystmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = NEW_CLASS($2, $5, $3);
|
|
|
|
nd_set_line($$, $<num>4);
|
|
|
|
local_pop();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(class, $2, $3, $5);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_class tLSHFT expr
|
2001-02-26 08:29:06 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-02-26 08:29:06 +03:00
|
|
|
$<num>$ = in_def;
|
2006-12-31 18:02:22 +03:00
|
|
|
in_def = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
in_def = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2001-02-26 08:29:06 +03:00
|
|
|
}
|
|
|
|
term
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = in_single;
|
|
|
|
in_single = 0;
|
2002-03-19 12:03:11 +03:00
|
|
|
local_push(0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = in_single;
|
|
|
|
in_single = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
bodystmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = NEW_SCLASS($3, $7);
|
|
|
|
fixpos($$, $3);
|
|
|
|
local_pop();
|
|
|
|
in_def = $<num>4;
|
|
|
|
in_single = $<num>6;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(sclass, $3, $7);
|
2006-12-31 18:02:22 +03:00
|
|
|
in_def = $<val>4;
|
|
|
|
in_single = $<val>6;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_module cpath
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-02-13 08:09:11 +03:00
|
|
|
if (in_def || in_single)
|
1998-01-16 15:13:05 +03:00
|
|
|
yyerror("module definition in method body");
|
2002-03-19 12:03:11 +03:00
|
|
|
local_push(0);
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = ruby_sourceline;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
if (in_def || in_single)
|
|
|
|
yyerror("module definition in method body");
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
bodystmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = NEW_MODULE($2, $4);
|
|
|
|
nd_set_line($$, $<num>3);
|
|
|
|
local_pop();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(module, $2, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_def fname
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-02-13 08:09:11 +03:00
|
|
|
$<id>$ = cur_mid;
|
1998-01-16 15:13:05 +03:00
|
|
|
cur_mid = $2;
|
2001-02-13 08:09:11 +03:00
|
|
|
in_def++;
|
2002-03-19 12:03:11 +03:00
|
|
|
local_push(0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$<id>$ = cur_mid;
|
|
|
|
cur_mid = $2;
|
|
|
|
in_def++;
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
f_arglist
|
2002-03-26 09:18:51 +03:00
|
|
|
bodystmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-02-03 05:23:20 +03:00
|
|
|
NODE *body = remove_begin($5);
|
|
|
|
reduce_nodes(&body);
|
|
|
|
$$ = NEW_DEFN($2, $4, body, NOEX_PRIVATE);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $4);
|
|
|
|
local_pop();
|
2001-02-13 08:09:11 +03:00
|
|
|
in_def--;
|
|
|
|
cur_mid = $<id>3;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(def, $2, $4, $5);
|
2005-02-27 00:08:24 +03:00
|
|
|
in_def--;
|
2004-09-12 19:21:49 +04:00
|
|
|
cur_mid = $<id>3;
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_def singleton dot_or_colon {lex_state = EXPR_FNAME;} fname
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
in_single++;
|
2002-03-19 12:03:11 +03:00
|
|
|
local_push(0);
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_state = EXPR_END; /* force for args */
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
in_single++;
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_state = EXPR_END;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
f_arglist
|
2002-03-26 09:18:51 +03:00
|
|
|
bodystmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-02-03 05:23:20 +03:00
|
|
|
NODE *body = remove_begin($8);
|
|
|
|
reduce_nodes(&body);
|
|
|
|
$$ = NEW_DEFS($2, $5, $7, body);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
|
|
|
local_pop();
|
1998-01-16 15:13:05 +03:00
|
|
|
in_single--;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch5(defs, $2, $3, $5, $7, $8);
|
|
|
|
in_single--;
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_break
|
2001-05-22 12:28:11 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
$$ = NEW_BREAK(0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(break, arg_new());
|
|
|
|
%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_next
|
2001-05-22 12:28:11 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
$$ = NEW_NEXT(0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(next, arg_new());
|
|
|
|
%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_redo
|
2001-05-22 12:28:11 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
$$ = NEW_REDO();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(redo);
|
|
|
|
%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_retry
|
2001-05-22 12:28:11 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
$$ = NEW_RETRY();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(retry);
|
|
|
|
%*/
|
2001-05-22 12:28:11 +04:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
primary_value : primary
|
2002-02-18 12:52:48 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-02-18 12:52:48 +03:00
|
|
|
value_expr($1);
|
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $1;
|
|
|
|
%*/
|
2002-02-18 12:52:48 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2002-02-18 12:52:48 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
then : term
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
|
|
|
{ $$ = Qnil; }
|
|
|
|
%*/
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_then
|
|
|
|
| term keyword_then
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
|
|
|
{ $$ = $2; }
|
|
|
|
%*/
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:19:22 +03:00
|
|
|
|
|
|
|
do : term
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
|
|
|
{ $$ = Qnil; }
|
|
|
|
%*/
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_do_cond
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
if_tail : opt_else
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_elsif expr_value then
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
1998-01-16 15:13:05 +03:00
|
|
|
if_tail
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_IF(cond($2), $4, $5);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(elsif, $2, $4, escape_Qundef($5));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
opt_else : none
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_else compstmt
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(else, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-05-25 06:54:22 +04:00
|
|
|
for_var : lhs
|
1998-01-16 15:13:05 +03:00
|
|
|
| mlhs
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-10-06 02:32:04 +04:00
|
|
|
bparam_item : bvar
|
2006-10-03 19:59:45 +04:00
|
|
|
| tLPAREN block_param rparen
|
|
|
|
{
|
|
|
|
/*%%%*/
|
2006-10-06 02:32:04 +04:00
|
|
|
if (nd_type($2) != NODE_MASGN) {
|
|
|
|
$$ = NEW_MASGN(NEW_LIST($2), 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2006-10-03 19:59:45 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(mlhs_paren, $2);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2006-10-06 02:32:04 +04:00
|
|
|
bparam_list : bparam_item
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
$$ = NEW_LIST($1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = mlhs_add(mlhs_new(), $1);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' bparam_item
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
$$ = list_append($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = mlhs_add($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2006-10-06 02:32:04 +04:00
|
|
|
block_param : bparam_list
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-10-06 02:32:04 +04:00
|
|
|
if ($1->nd_alen == 1 && nd_type($1->nd_head) != NODE_MASGN) {
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $1->nd_head;
|
|
|
|
rb_gc_force_recycle((VALUE)$1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$$ = NEW_MASGN($1, 0);
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_new($1);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ','
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
$$ = NEW_MASGN($1, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_new($1);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tAMPER bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-07-28 06:33:28 +04:00
|
|
|
$$ = NEW_BLOCK_PARAM($4, NEW_MASGN($1, 0));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_block(blockvar_new($1), $4);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR bvar ',' bparam_list ',' tAMPER bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_BLOCK_PARAM($9, NEW_MASGN($1, NEW_POSTARG($4,$6)));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), $4);
|
2006-07-10 05:08:15 +04:00
|
|
|
$$ = blockvar_add_block($$, $9);
|
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR bvar ',' tAMPER bvar
|
2006-07-10 05:08:15 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_BLOCK_PARAM($7, NEW_MASGN($1, $4));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), $4);
|
|
|
|
$$ = blockvar_add_block($$, $7);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR ',' tAMPER bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-07-28 06:33:28 +04:00
|
|
|
$$ = NEW_BLOCK_PARAM($6, NEW_MASGN($1, -1));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), Qnil);
|
|
|
|
$$ = blockvar_add_block($$, $6);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR ',' bparam_list ',' tAMPER bvar
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_BLOCK_PARAM($8, NEW_MASGN($1, NEW_POSTARG(-1,$5)));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), Qnil);
|
2006-07-10 05:08:15 +04:00
|
|
|
$$ = blockvar_add_block($$, $8);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
$$ = NEW_MASGN($1, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), $4);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR bvar ',' bparam_list
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN($1, NEW_POSTARG($4,$6));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), $4);
|
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
$$ = NEW_MASGN($1, -1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), Qnil);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bparam_list ',' tSTAR ',' bparam_list
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN($1, NEW_MASGN($1, NEW_POSTARG(-1,$5)));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new($1), Qnil);
|
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tSTAR bvar ',' tAMPER bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-07-28 06:33:28 +04:00
|
|
|
$$ = NEW_BLOCK_PARAM($5, NEW_MASGN(0, $2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), $2);
|
|
|
|
$$ = blockvar_add_block($$, $5);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tSTAR ',' tAMPER bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-07-28 06:33:28 +04:00
|
|
|
$$ = NEW_BLOCK_PARAM($4, NEW_MASGN(0, -1));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), Qnil);
|
|
|
|
$$ = blockvar_add_block($$, $4);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tSTAR bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
$$ = NEW_MASGN(0, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), $2);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tSTAR bvar ',' bparam_list
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN(0, NEW_POSTARG($2,$4));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), $2);
|
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tSTAR bvar ',' bparam_list ',' tAMPER bvar
|
2006-07-10 05:08:15 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_BLOCK_PARAM($7, NEW_MASGN(0, NEW_POSTARG($2,$4)));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), Qnil);
|
|
|
|
$$ = blockvar_add_block($$, $7);
|
|
|
|
%*/
|
|
|
|
}
|
2004-05-25 06:54:22 +04:00
|
|
|
| tSTAR
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
$$ = NEW_MASGN(0, -1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), Qnil);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tSTAR ',' bparam_list
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_MASGN(0, NEW_POSTARG(-1,$3));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), Qnil);
|
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tSTAR ',' bparam_list ',' tAMPER bvar
|
2006-07-10 05:08:15 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_BLOCK_PARAM($6, NEW_MASGN(0, NEW_POSTARG(-1,$3)));
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_star(blockvar_new(Qnil), Qnil);
|
|
|
|
$$ = blockvar_add_block($$, $6);
|
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| tAMPER bvar
|
2004-05-25 06:54:22 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-07-28 06:33:28 +04:00
|
|
|
$$ = NEW_BLOCK_PARAM($2, (NODE*)1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = blockvar_add_block(blockvar_new(Qnil), $2);
|
|
|
|
%*/
|
2004-05-25 06:54:22 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2005-07-28 06:33:28 +04:00
|
|
|
opt_block_param : none
|
2005-03-02 06:21:31 +03:00
|
|
|
{
|
2005-03-09 12:29:52 +03:00
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_ITER(0, 0, 0);
|
|
|
|
/*%
|
|
|
|
%*/
|
2005-03-02 06:21:31 +03:00
|
|
|
}
|
2005-07-28 06:33:28 +04:00
|
|
|
| block_param_def
|
2005-03-02 06:21:31 +03:00
|
|
|
;
|
|
|
|
|
2005-07-28 06:33:28 +04:00
|
|
|
block_param_def : '|' opt_bv_decl '|'
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = NEW_ITER((NODE*)1, 0, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = blockvar_new(mlhs_new());
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| tOROP
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = NEW_ITER((NODE*)1, 0, 0);
|
|
|
|
/*%
|
|
|
|
$$ = blockvar_new(mlhs_new());
|
|
|
|
%*/
|
|
|
|
}
|
2005-07-28 06:33:28 +04:00
|
|
|
| '|' block_param opt_bv_decl '|'
|
2005-03-09 12:29:52 +03:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_ITER($2, 0, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = blockvar_new($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-03-09 12:29:52 +03:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
opt_bv_decl : none
|
|
|
|
| ';' bv_decls
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = FIXME;
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2006-10-06 02:32:04 +04:00
|
|
|
bv_decls : bvar
|
2005-03-09 12:29:52 +03:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = $1;
|
|
|
|
/*%
|
|
|
|
$$ = FIXME;
|
|
|
|
%*/
|
|
|
|
}
|
2006-10-06 02:32:04 +04:00
|
|
|
| bv_decls ',' bvar
|
2005-03-09 12:29:52 +03:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = block_append($1, $3);
|
|
|
|
/*%
|
|
|
|
$$ = FIXME;
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2006-10-06 02:32:04 +04:00
|
|
|
bvar : tIDENTIFIER
|
2005-03-09 12:29:52 +03:00
|
|
|
{
|
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = new_bv($1, NEW_NIL());
|
2005-03-09 12:29:52 +03:00
|
|
|
/*%
|
|
|
|
$$ = FIXME;
|
|
|
|
%*/
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2000-10-16 13:13:20 +04:00
|
|
|
|
2005-07-27 11:27:19 +04:00
|
|
|
lambda : {
|
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = dyna_push();
|
2005-07-27 11:27:19 +04:00
|
|
|
/*%
|
|
|
|
%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
{
|
2005-08-16 19:24:15 +04:00
|
|
|
$<num>$ = lpar_beg;
|
2006-12-31 18:02:22 +03:00
|
|
|
lpar_beg = ++paren_nest;
|
2005-08-16 19:24:15 +04:00
|
|
|
}
|
2005-07-27 11:27:19 +04:00
|
|
|
f_larglist
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
|
|
|
$<num>$ = vtable_size(lvtbl->dvars);
|
|
|
|
}
|
2005-07-27 11:27:19 +04:00
|
|
|
lambda_body
|
|
|
|
{
|
|
|
|
/*%%%*/
|
2005-08-16 19:24:15 +04:00
|
|
|
$$ = $3;
|
2006-12-31 18:02:22 +03:00
|
|
|
$$->nd_body = block_append($$->nd_body, $5);
|
2005-07-27 11:27:19 +04:00
|
|
|
dyna_pop($<vars>1);
|
2005-08-16 19:24:15 +04:00
|
|
|
lpar_beg = $<num>2;
|
2005-07-27 11:27:19 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(lambda, $3, $5);
|
2005-07-27 11:27:19 +04:00
|
|
|
%*/
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2005-07-27 18:30:09 +04:00
|
|
|
f_larglist : '(' f_args opt_bv_decl rparen
|
2005-07-27 11:27:19 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
2005-07-27 18:30:09 +04:00
|
|
|
$$ = NEW_LAMBDA($2, $3);
|
2005-07-27 11:27:19 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(paren, $2);
|
|
|
|
%*/
|
|
|
|
}
|
2005-08-12 12:13:28 +04:00
|
|
|
| f_args opt_bv_decl
|
2005-07-27 11:27:19 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
2005-08-12 12:13:28 +04:00
|
|
|
$$ = NEW_LAMBDA($1, $2);
|
2005-07-27 11:27:19 +04:00
|
|
|
/*%
|
2005-08-12 12:13:28 +04:00
|
|
|
$$ = $1;
|
2005-07-27 11:27:19 +04:00
|
|
|
%*/
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2005-08-16 19:24:15 +04:00
|
|
|
lambda_body : tLAMBEG compstmt '}'
|
2005-07-27 11:27:19 +04:00
|
|
|
{
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_do_LAMBDA compstmt keyword_end
|
2005-07-27 11:27:19 +04:00
|
|
|
{
|
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2006-06-26 18:15:49 +04:00
|
|
|
do_block : keyword_do_block
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = dyna_push();
|
2002-11-14 16:51:19 +03:00
|
|
|
$<num>1 = ruby_sourceline;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*% %*/
|
|
|
|
}
|
2005-07-28 06:33:28 +04:00
|
|
|
opt_block_param
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = vtable_size(lvtbl->dvars);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*% %*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
2006-06-26 18:15:49 +04:00
|
|
|
keyword_end
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-03-09 12:29:52 +03:00
|
|
|
$3->nd_body = block_append($3->nd_body,
|
2006-12-31 18:02:22 +03:00
|
|
|
dyna_init($5, $<num>4));
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = $3;
|
2002-11-14 16:51:19 +03:00
|
|
|
nd_set_line($$, $<num>1);
|
1998-01-16 15:13:05 +03:00
|
|
|
dyna_pop($<vars>2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(do_block, escape_Qundef($3), $5);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-01-26 08:02:19 +03:00
|
|
|
block_call : command do_block
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
block_dup_check($1->nd_args, $2);
|
1999-08-13 09:45:20 +04:00
|
|
|
$2->nd_iter = $1;
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $2;
|
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(iter_block, $1, $2);
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2002-06-28 18:42:46 +04:00
|
|
|
| block_call '.' operation2 opt_paren_args
|
2001-01-20 17:02:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(call, $1, ripper_id2sym('.'), $3);
|
|
|
|
$$ = method_optarg($$, $4);
|
|
|
|
%*/
|
2001-01-20 17:02:28 +03:00
|
|
|
}
|
2002-06-28 18:42:46 +04:00
|
|
|
| block_call tCOLON2 operation2 opt_paren_args
|
2001-01-20 17:02:28 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(call, $1, ripper_intern("::"), $3);
|
|
|
|
$$ = method_optarg($$, $4);
|
|
|
|
%*/
|
2001-01-20 17:02:28 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2001-01-23 11:08:59 +03:00
|
|
|
method_call : operation paren_args
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_FCALL($1, $2);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = method_arg(dispatch1(fcall, $1), $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value '.' operation2 opt_paren_args
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(call, $1, ripper_id2sym('.'), $3);
|
|
|
|
$$ = method_optarg($$, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value tCOLON2 operation2 paren_args
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, $4);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(call, $1, ripper_id2sym('.'), $3);
|
|
|
|
$$ = method_optarg($$, $4);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
| primary_value tCOLON2 operation3
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_CALL($1, $3, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(call, $1, ripper_intern("::"), $3);
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2006-06-21 09:13:48 +04:00
|
|
|
| primary_value '.' paren_args
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_CALL($1, rb_intern("call"), $3);
|
|
|
|
fixpos($$, $1);
|
|
|
|
/*%
|
|
|
|
$$ = dispatch3(call, dispatch1(paren, $1),
|
|
|
|
ripper_id2sym('.'), rb_intern("call"));
|
|
|
|
$$ = method_optarg($$, $3);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| primary_value tCOLON2 paren_args
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_CALL($1, rb_intern("call"), $3);
|
|
|
|
fixpos($$, $1);
|
|
|
|
/*%
|
|
|
|
$$ = dispatch3(call, dispatch1(paren, $1),
|
|
|
|
ripper_id2sym('.'), rb_intern("call"));
|
|
|
|
$$ = method_optarg($$, $3);
|
|
|
|
%*/
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_super paren_args
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = NEW_SUPER($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(super, $2);
|
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_super
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
$$ = NEW_ZSUPER();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(zsuper);
|
|
|
|
%*/
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2006-06-10 20:09:12 +04:00
|
|
|
| primary_value '[' opt_call_args rbracket
|
2005-06-12 20:56:06 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
if ($1 && nd_type($1) == NODE_SELF)
|
|
|
|
$$ = NEW_FCALL(tAREF, $3);
|
|
|
|
else
|
|
|
|
$$ = NEW_CALL($1, tAREF, $3);
|
|
|
|
fixpos($$, $1);
|
|
|
|
/*%
|
2005-09-05 17:29:01 +04:00
|
|
|
$$ = dispatch2(aref, $1, escape_Qundef($3));
|
2005-06-12 20:56:06 +04:00
|
|
|
%*/
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-01-26 08:02:19 +03:00
|
|
|
brace_block : '{'
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = dyna_push();
|
2002-11-14 16:51:19 +03:00
|
|
|
$<num>1 = ruby_sourceline;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*% %*/
|
|
|
|
}
|
2005-07-28 06:33:28 +04:00
|
|
|
opt_block_param
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = vtable_size(lvtbl->dvars);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
%*/
|
2001-01-26 08:02:19 +03:00
|
|
|
}
|
|
|
|
compstmt '}'
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-03-09 12:29:52 +03:00
|
|
|
$3->nd_body = block_append($3->nd_body,
|
2006-12-31 18:02:22 +03:00
|
|
|
dyna_init($5, $<num>4));
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = $3;
|
2002-11-14 16:51:19 +03:00
|
|
|
nd_set_line($$, $<num>1);
|
2001-01-26 08:02:19 +03:00
|
|
|
dyna_pop($<vars>2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(brace_block, escape_Qundef($3), $5);
|
|
|
|
%*/
|
2001-01-26 08:02:19 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_do
|
2001-01-26 08:02:19 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = dyna_push();
|
2002-11-14 16:51:19 +03:00
|
|
|
$<num>1 = ruby_sourceline;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*% %*/
|
|
|
|
}
|
2005-07-28 06:33:28 +04:00
|
|
|
opt_block_param
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$<num>$ = vtable_size(lvtbl->dvars);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
%*/
|
2001-01-26 08:02:19 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
compstmt keyword_end
|
2001-01-26 08:02:19 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-03-09 12:29:52 +03:00
|
|
|
$3->nd_body = block_append($3->nd_body,
|
2006-12-31 18:02:22 +03:00
|
|
|
dyna_init($5, $<num>4));
|
2005-03-09 12:29:52 +03:00
|
|
|
$$ = $3;
|
2002-11-14 16:51:19 +03:00
|
|
|
nd_set_line($$, $<num>1);
|
2001-01-26 08:02:19 +03:00
|
|
|
dyna_pop($<vars>2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(do_block, escape_Qundef($3), $5);
|
|
|
|
%*/
|
2001-01-26 08:02:19 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2001-01-26 08:02:19 +03:00
|
|
|
|
2006-06-26 18:15:49 +04:00
|
|
|
case_body : keyword_when args then
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
1998-01-16 15:13:05 +03:00
|
|
|
cases
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_WHEN($2, $4, $5);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch3(when, $2, $4, escape_Qundef($5));
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
cases : opt_else
|
|
|
|
| case_body
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-06-26 18:15:49 +04:00
|
|
|
opt_rescue : keyword_rescue exc_list exc_var then
|
1998-01-16 15:19:22 +03:00
|
|
|
compstmt
|
2002-03-26 09:18:51 +03:00
|
|
|
opt_rescue
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
if ($3) {
|
|
|
|
$3 = node_assign($3, NEW_ERRINFO());
|
2000-03-23 11:37:35 +03:00
|
|
|
$5 = block_append($3, $5);
|
|
|
|
}
|
|
|
|
$$ = NEW_RESBODY($2, $5, $6);
|
2006-12-31 18:02:22 +03:00
|
|
|
fixpos($$, $2?$2:$5);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch4(rescue,
|
2006-12-31 18:02:22 +03:00
|
|
|
escape_Qundef($2),
|
|
|
|
escape_Qundef($3),
|
|
|
|
escape_Qundef($5),
|
|
|
|
escape_Qundef($6));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| none
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-12-04 10:41:20 +03:00
|
|
|
exc_list : arg_value
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-12-04 10:41:20 +03:00
|
|
|
$$ = NEW_LIST($1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = rb_ary_new3(1, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2003-12-04 10:41:20 +03:00
|
|
|
}
|
|
|
|
| mrhs
|
2002-03-26 09:18:51 +03:00
|
|
|
| none
|
|
|
|
;
|
|
|
|
|
|
|
|
exc_var : tASSOC lhs
|
|
|
|
{
|
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
| none
|
|
|
|
;
|
|
|
|
|
2006-06-26 18:15:49 +04:00
|
|
|
opt_ensure : keyword_ensure compstmt
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-10-02 15:34:13 +04:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(ensure, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
| none
|
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
literal : numeric
|
1999-08-13 09:45:20 +04:00
|
|
|
| symbol
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-09-06 05:24:41 +04:00
|
|
|
$$ = NEW_LIT(ID2SYM($1));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(symbol_literal, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-10-23 14:17:30 +04:00
|
|
|
| dsym
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
strings : string
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
NODE *node = $1;
|
|
|
|
if (!node) {
|
|
|
|
node = NEW_STR(rb_str_new(0, 0));
|
|
|
|
}
|
2003-05-21 20:01:49 +04:00
|
|
|
else {
|
|
|
|
node = evstr2dstr(node);
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
$$ = node;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $1;
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
2002-06-24 11:59:02 +04:00
|
|
|
;
|
2002-06-24 11:20:42 +04:00
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
string : tCHAR
|
|
|
|
| string1
|
2002-06-24 11:20:42 +04:00
|
|
|
| string string1
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
$$ = literal_concat($1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(string_concat, $1, $2);
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-06-25 13:56:36 +04:00
|
|
|
string1 : tSTRING_BEG string_contents tSTRING_END
|
1999-10-15 12:52:18 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-25 13:56:36 +04:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(string_literal, $2);
|
|
|
|
%*/
|
1999-10-15 12:52:18 +04:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
;
|
|
|
|
|
2002-06-25 13:56:36 +04:00
|
|
|
xstring : tXSTRING_BEG xstring_contents tSTRING_END
|
1999-10-15 12:52:18 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-25 13:56:36 +04:00
|
|
|
NODE *node = $2;
|
2002-06-24 11:20:42 +04:00
|
|
|
if (!node) {
|
|
|
|
node = NEW_XSTR(rb_str_new(0, 0));
|
1999-10-15 12:52:18 +04:00
|
|
|
}
|
|
|
|
else {
|
2002-06-24 11:20:42 +04:00
|
|
|
switch (nd_type(node)) {
|
|
|
|
case NODE_STR:
|
|
|
|
nd_set_type(node, NODE_XSTR);
|
|
|
|
break;
|
|
|
|
case NODE_DSTR:
|
|
|
|
nd_set_type(node, NODE_DXSTR);
|
|
|
|
break;
|
|
|
|
default:
|
2003-07-04 19:30:35 +04:00
|
|
|
node = NEW_NODE(NODE_DXSTR, rb_str_new(0, 0), 1, NEW_LIST(node));
|
2002-06-24 11:20:42 +04:00
|
|
|
break;
|
|
|
|
}
|
1999-10-15 12:52:18 +04:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
$$ = node;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(xstring_literal, $2);
|
|
|
|
%*/
|
1999-10-15 12:52:18 +04:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
;
|
|
|
|
|
2002-06-25 13:56:36 +04:00
|
|
|
regexp : tREGEXP_BEG xstring_contents tREGEXP_END
|
1999-10-15 12:52:18 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-25 13:56:36 +04:00
|
|
|
int options = $3;
|
|
|
|
NODE *node = $2;
|
2002-06-24 11:20:42 +04:00
|
|
|
if (!node) {
|
2004-09-24 09:53:43 +04:00
|
|
|
node = NEW_LIT(rb_reg_compile("", 0, options & ~RE_OPTION_ONCE));
|
1999-10-15 12:52:18 +04:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
else switch (nd_type(node)) {
|
|
|
|
case NODE_STR:
|
|
|
|
{
|
|
|
|
VALUE src = node->nd_lit;
|
|
|
|
nd_set_type(node, NODE_LIT);
|
2006-08-31 14:47:44 +04:00
|
|
|
node->nd_lit = rb_reg_compile(RSTRING_PTR(src),
|
|
|
|
RSTRING_LEN(src),
|
2004-09-24 09:53:43 +04:00
|
|
|
options & ~RE_OPTION_ONCE);
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2003-07-04 19:30:35 +04:00
|
|
|
node = NEW_NODE(NODE_DSTR, rb_str_new(0, 0), 1, NEW_LIST(node));
|
2002-06-24 11:20:42 +04:00
|
|
|
case NODE_DSTR:
|
|
|
|
if (options & RE_OPTION_ONCE) {
|
|
|
|
nd_set_type(node, NODE_DREGX_ONCE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nd_set_type(node, NODE_DREGX);
|
|
|
|
}
|
|
|
|
node->nd_cflag = options & ~RE_OPTION_ONCE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$$ = node;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2005-04-14 14:05:29 +04:00
|
|
|
$$ = dispatch2(regexp_literal, $2, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-06-26 12:01:00 +04:00
|
|
|
words : tWORDS_BEG ' ' tSTRING_END
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
$$ = NEW_ZARRAY();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(words_new);
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
}
|
|
|
|
| tWORDS_BEG word_list tSTRING_END
|
|
|
|
{
|
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
word_list : /* none */
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(words_new);
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
}
|
|
|
|
| word_list word ' '
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-05-21 20:01:49 +04:00
|
|
|
$$ = list_append($1, evstr2dstr($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(words_add, $1, $2);
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
word : string_content
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
|
|
|
{
|
|
|
|
$$ = dispatch0(word_new);
|
|
|
|
$$ = dispatch2(word_add, $$, $1);
|
|
|
|
}
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
| word string_content
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
$$ = literal_concat($1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(word_add, $1, $2);
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
}
|
2002-06-27 21:16:39 +04:00
|
|
|
;
|
2002-06-26 12:01:00 +04:00
|
|
|
|
|
|
|
qwords : tQWORDS_BEG ' ' tSTRING_END
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
$$ = NEW_ZARRAY();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(qwords_new);
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
}
|
|
|
|
| tQWORDS_BEG qword_list tSTRING_END
|
|
|
|
{
|
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
qword_list : /* none */
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(qwords_new);
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
}
|
|
|
|
| qword_list tSTRING_CONTENT ' '
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-09-06 05:24:41 +04:00
|
|
|
$$ = list_append($1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(qwords_add, $1, $2);
|
|
|
|
%*/
|
2002-06-26 12:01:00 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
string_contents : /* none */
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(string_content);
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
| string_contents string_content
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
$$ = literal_concat($1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(string_add, $1, $2);
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
xstring_contents: /* none */
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch0(xstring_new);
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
| xstring_contents string_content
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-09-20 18:03:45 +04:00
|
|
|
$$ = literal_concat($1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(xstring_add, $1, $2);
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-09-06 05:24:41 +04:00
|
|
|
string_content : tSTRING_CONTENT
|
2002-06-24 11:20:42 +04:00
|
|
|
| tSTRING_DVAR
|
|
|
|
{
|
|
|
|
$<node>$ = lex_strterm;
|
|
|
|
lex_strterm = 0;
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
}
|
|
|
|
string_dvar
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
lex_strterm = $<node>2;
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = NEW_EVSTR($3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
lex_strterm = $<node>2;
|
|
|
|
$$ = dispatch1(string_dvar, $3);
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
2003-09-17 15:34:02 +04:00
|
|
|
| tSTRING_DBEG
|
2002-06-24 11:20:42 +04:00
|
|
|
{
|
|
|
|
$<node>$ = lex_strterm;
|
|
|
|
lex_strterm = 0;
|
|
|
|
lex_state = EXPR_BEG;
|
2004-01-22 10:21:40 +03:00
|
|
|
COND_PUSH(0);
|
|
|
|
CMDARG_PUSH(0);
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
compstmt '}'
|
|
|
|
{
|
2003-09-17 15:34:02 +04:00
|
|
|
lex_strterm = $<node>2;
|
2004-01-22 10:21:40 +03:00
|
|
|
COND_LEXPOP();
|
|
|
|
CMDARG_LEXPOP();
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
if ($3) $3->flags &= ~NODE_NEWLINE;
|
2004-01-21 19:47:23 +03:00
|
|
|
$$ = new_evstr($3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(string_embexpr, $3);
|
|
|
|
%*/
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
string_dvar : tGVAR
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_GVAR($1);
|
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_ref, $1);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| tIVAR
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_IVAR($1);
|
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_ref, $1);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| tCVAR
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_CVAR($1);
|
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_ref, $1);
|
|
|
|
%*/
|
|
|
|
}
|
2002-06-24 19:18:00 +04:00
|
|
|
| backref
|
2002-06-24 11:20:42 +04:00
|
|
|
;
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
symbol : tSYMBEG sym
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_state = EXPR_END;
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = $2;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_state = EXPR_END;
|
2004-09-12 19:21:49 +04:00
|
|
|
$$ = dispatch1(symbol, $2);
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
sym : fname
|
1999-01-20 07:59:39 +03:00
|
|
|
| tIVAR
|
|
|
|
| tGVAR
|
2000-10-16 13:13:20 +04:00
|
|
|
| tCVAR
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-10-23 14:17:30 +04:00
|
|
|
dsym : tSYMBEG xstring_contents tSTRING_END
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_state = EXPR_END;
|
2002-11-17 17:01:57 +03:00
|
|
|
if (!($$ = $2)) {
|
2002-10-23 14:17:30 +04:00
|
|
|
yyerror("empty symbol literal");
|
|
|
|
}
|
|
|
|
else {
|
2005-11-21 16:52:49 +03:00
|
|
|
VALUE lit;
|
|
|
|
|
2002-10-23 14:17:30 +04:00
|
|
|
switch (nd_type($$)) {
|
|
|
|
case NODE_DSTR:
|
|
|
|
nd_set_type($$, NODE_DSYM);
|
|
|
|
break;
|
2003-03-07 08:59:42 +03:00
|
|
|
case NODE_STR:
|
2005-11-21 16:52:49 +03:00
|
|
|
lit = $$->nd_lit;
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_LEN(lit) == 0) {
|
2005-11-21 16:52:49 +03:00
|
|
|
yyerror("empty symbol literal");
|
|
|
|
break;
|
|
|
|
}
|
2006-08-31 14:47:44 +04:00
|
|
|
if (strlen(RSTRING_PTR(lit)) == RSTRING_LEN(lit)) {
|
|
|
|
$$->nd_lit = ID2SYM(rb_intern(RSTRING_PTR($$->nd_lit)));
|
2003-03-07 08:59:42 +03:00
|
|
|
nd_set_type($$, NODE_LIT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fall through */
|
2002-10-23 14:17:30 +04:00
|
|
|
default:
|
2003-07-04 19:30:35 +04:00
|
|
|
$$ = NEW_NODE(NODE_DSYM, rb_str_new(0, 0), 1, NEW_LIST($$));
|
2002-10-23 14:17:30 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_state = EXPR_END;
|
2004-09-12 19:21:49 +04:00
|
|
|
$$ = dispatch1(dyna_symbol, $2);
|
|
|
|
%*/
|
2002-10-23 14:17:30 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
numeric : tINTEGER
|
1999-01-20 07:59:39 +03:00
|
|
|
| tFLOAT
|
2003-01-23 06:39:25 +03:00
|
|
|
| tUMINUS_NUM tINTEGER %prec tLOWEST
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-01-23 06:39:25 +03:00
|
|
|
$$ = negate_lit($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(unary, ripper_intern("-@"), $2);
|
|
|
|
%*/
|
2003-01-23 06:39:25 +03:00
|
|
|
}
|
|
|
|
| tUMINUS_NUM tFLOAT %prec tLOWEST
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2003-01-23 06:39:25 +03:00
|
|
|
$$ = negate_lit($2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(unary, ripper_intern("-@"), $2);
|
|
|
|
%*/
|
2003-01-23 06:39:25 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
variable : tIDENTIFIER
|
|
|
|
| tIVAR
|
|
|
|
| tGVAR
|
|
|
|
| tCONSTANT
|
2000-03-23 11:37:35 +03:00
|
|
|
| tCVAR
|
2006-06-26 18:15:49 +04:00
|
|
|
| keyword_nil {ifndef_ripper($$ = keyword_nil);}
|
|
|
|
| keyword_self {ifndef_ripper($$ = keyword_self);}
|
|
|
|
| keyword_true {ifndef_ripper($$ = keyword_true);}
|
|
|
|
| keyword_false {ifndef_ripper($$ = keyword_false);}
|
|
|
|
| keyword__FILE__ {ifndef_ripper($$ = keyword__FILE__);}
|
|
|
|
| keyword__LINE__ {ifndef_ripper($$ = keyword__LINE__);}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
var_ref : variable
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = gettable($1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_ref, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-02-13 12:01:11 +03:00
|
|
|
var_lhs : variable
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-02-13 19:39:37 +03:00
|
|
|
$$ = assignable($1, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(var_field, $1);
|
|
|
|
%*/
|
2002-02-13 12:01:11 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
2002-02-13 12:01:11 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
backref : tNTH_REF
|
|
|
|
| tBACK_REF
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
superclass : term
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = Qnil;
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| '<'
|
|
|
|
{
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
}
|
2002-02-18 12:52:48 +03:00
|
|
|
expr_value term
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
$$ = $3;
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
| error term
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
yyerrok;
|
|
|
|
$$ = 0;
|
|
|
|
/*%
|
|
|
|
yyerrok;
|
|
|
|
$$ = Qnil;
|
|
|
|
%*/
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-02-12 09:23:24 +03:00
|
|
|
f_arglist : '(' f_args rparen
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = $2;
|
|
|
|
lex_state = EXPR_BEG;
|
2006-02-20 20:12:56 +03:00
|
|
|
command_start = Qtrue;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(paren, $2);
|
|
|
|
lex_state = EXPR_BEG;
|
2006-02-20 20:12:56 +03:00
|
|
|
command_start = Qtrue;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| f_args term
|
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
f_args : f_arg ',' f_optarg ',' f_rest_arg opt_f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args($1, $3, $5, 0, $6);
|
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, $1, $3, $5, Qnil, escape_Qundef($6));
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| f_arg ',' f_optarg ',' f_rest_arg ',' f_post_arg opt_f_block_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = new_args($1, $3, $5, $7, $8);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, $1, $3, $5, $7, escape_Qundef($8));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| f_arg ',' f_optarg opt_f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args($1, $3, 0, 0, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, $1, $3, Qnil, Qnil, escape_Qundef($4));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-07-12 15:10:22 +04:00
|
|
|
| f_arg ',' f_optarg ',' f_post_arg opt_f_block_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = new_args($1, $3, 0, $5, $6);
|
|
|
|
/*%
|
|
|
|
$$ = dispatch5(params, $1, $3, Qnil, $5, escape_Qundef($6));
|
|
|
|
%*/
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| f_arg ',' f_rest_arg opt_f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args($1, 0, $3, 0, $4);
|
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, $1, Qnil, $3, Qnil, escape_Qundef($4));
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| f_arg ',' f_rest_arg ',' f_post_arg opt_f_block_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = new_args($1, 0, $3, $5, $6);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, $1, Qnil, $3, $5, escape_Qundef($6));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| f_arg opt_f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args($1, 0, 0, 0, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, $1, Qnil, Qnil, Qnil, escape_Qundef($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| f_optarg ',' f_rest_arg opt_f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args(0, $1, $3, 0, $4);
|
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, Qnil, $1, $3, Qnil, escape_Qundef($4));
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| f_optarg ',' f_rest_arg ',' f_post_arg opt_f_block_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = new_args(0, $1, $3, $5, $6);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, Qnil, $1, $3, $5, escape_Qundef($6));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| f_optarg opt_f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args(0, $1, 0, 0, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, Qnil, $1, Qnil, Qnil, escape_Qundef($2));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-07-12 15:10:22 +04:00
|
|
|
| f_optarg ',' f_post_arg opt_f_block_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = new_args(0, $1, 0, $3, $4);
|
|
|
|
/*%
|
|
|
|
$$ = dispatch5(params, Qnil, $1, Qnil, $3, escape_Qundef($4));
|
|
|
|
%*/
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| f_rest_arg opt_f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args(0, 0, $1, 0, $2);
|
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, Qnil, Qnil, $1, Qnil, escape_Qundef($2));
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| f_rest_arg ',' f_post_arg opt_f_block_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = new_args(0, 0, $1, $3, $4);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, Qnil, Qnil, $1, $3, escape_Qundef($4));
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
| f_block_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args(0, 0, 0, 0, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, Qnil, Qnil, Qnil, Qnil, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
| /* none */
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
$$ = new_args(0, 0, 0, 0, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-06-10 03:18:04 +04:00
|
|
|
$$ = dispatch5(params, Qnil, Qnil, Qnil, Qnil, Qnil);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-03-13 10:18:45 +03:00
|
|
|
f_norm_arg : tCONSTANT
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-07-01 10:47:47 +04:00
|
|
|
yyerror("formal argument cannot be a constant");
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(param_error, $1);
|
|
|
|
%*/
|
2000-07-01 10:47:47 +04:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
| tIVAR
|
2000-07-01 10:47:47 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
yyerror("formal argument cannot be an instance variable");
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(param_error, $1);
|
|
|
|
%*/
|
2000-07-01 10:47:47 +04:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
| tGVAR
|
2000-07-01 10:47:47 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
yyerror("formal argument cannot be a global variable");
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(param_error, $1);
|
|
|
|
%*/
|
2000-07-01 10:47:47 +04:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
| tCVAR
|
2000-07-01 10:47:47 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
yyerror("formal argument cannot be a class variable");
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(param_error, $1);
|
|
|
|
%*/
|
2000-03-13 10:18:45 +03:00
|
|
|
}
|
|
|
|
| tIDENTIFIER
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!is_local_id($1))
|
|
|
|
yyerror("formal argument must be local variable");
|
2005-07-27 11:27:19 +04:00
|
|
|
if (dyna_in_block()) {
|
2006-12-31 18:02:22 +03:00
|
|
|
shadowing_lvar($1);
|
2005-07-27 11:27:19 +04:00
|
|
|
dyna_var($1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
local_cnt($1);
|
|
|
|
}
|
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $1;
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
f_arg : f_norm_arg
|
2005-08-10 05:39:24 +04:00
|
|
|
{
|
2005-09-02 18:51:19 +04:00
|
|
|
/*%%%*/
|
|
|
|
VALUE arg = ID2SYM($1);
|
|
|
|
/*%
|
|
|
|
VALUE arg = $1;
|
|
|
|
%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = rb_ary_new3(1, arg);
|
2005-08-10 05:39:24 +04:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| f_arg ',' f_norm_arg
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-09-02 18:51:19 +04:00
|
|
|
/*%%%*/
|
|
|
|
VALUE arg = ID2SYM($3);
|
2004-09-12 19:21:49 +04:00
|
|
|
$$ = $1;
|
2005-09-02 18:51:19 +04:00
|
|
|
if (rb_ary_includes($$, arg)) {
|
2006-07-12 15:10:22 +04:00
|
|
|
yyerror("duplicated argument name");
|
2005-07-28 11:16:22 +04:00
|
|
|
}
|
2005-09-02 18:51:19 +04:00
|
|
|
rb_ary_push($$, arg);
|
2005-09-04 10:01:51 +04:00
|
|
|
/*%
|
|
|
|
rb_ary_push($$, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
f_post_arg : f_norm_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = NEW_LIST(assignable($1, 0));
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add(mlhs_new(), $1);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
| f_post_arg ',' f_norm_arg
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = list_append($1, assignable($3, 0));
|
|
|
|
/*%
|
|
|
|
$$ = mlhs_add($1, $3);
|
|
|
|
%*/
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-02-18 12:52:48 +03:00
|
|
|
f_opt : tIDENTIFIER '=' arg_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!is_local_id($1))
|
|
|
|
yyerror("formal argument must be local variable");
|
2005-08-10 05:39:24 +04:00
|
|
|
if (dyna_in_block()) {
|
2006-12-31 18:02:22 +03:00
|
|
|
shadowing_lvar($1);
|
2005-08-10 05:39:24 +04:00
|
|
|
dyna_var($1);
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = assignable($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = rb_assoc_new($1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
f_optarg : f_opt
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = NEW_BLOCK($1);
|
|
|
|
$$->nd_end = $$;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = rb_ary_new3(1, $1);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
| f_optarg ',' f_opt
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = block_append($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = rb_ary_push($1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-10-04 21:51:11 +04:00
|
|
|
restarg_mark : '*'
|
|
|
|
| tSTAR
|
|
|
|
;
|
|
|
|
|
|
|
|
f_rest_arg : restarg_mark tIDENTIFIER
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!is_local_id($2))
|
|
|
|
yyerror("rest argument must be local variable");
|
2005-08-10 05:39:24 +04:00
|
|
|
if (dyna_in_block()) {
|
2006-12-31 18:02:22 +03:00
|
|
|
shadowing_lvar($2);
|
2005-08-10 05:39:24 +04:00
|
|
|
dyna_var($2);
|
|
|
|
}
|
2005-07-27 11:27:19 +04:00
|
|
|
$$ = assignable($2, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(restparam, $2);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-10-04 21:51:11 +04:00
|
|
|
| restarg_mark
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2005-08-04 19:18:38 +04:00
|
|
|
if (dyna_in_block()) {
|
|
|
|
$$ = NEW_DASGN_CURR(internal_id(), 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$$ = NEW_NODE(NODE_LASGN,0,0,local_append(0));
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(restparam, Qnil);
|
|
|
|
%*/
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-10-04 21:51:11 +04:00
|
|
|
blkarg_mark : '&'
|
|
|
|
| tAMPER
|
|
|
|
;
|
|
|
|
|
|
|
|
f_block_arg : blkarg_mark tIDENTIFIER
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2000-02-18 09:59:36 +03:00
|
|
|
if (!is_local_id($2))
|
|
|
|
yyerror("block argument must be local variable");
|
2005-07-28 11:16:22 +04:00
|
|
|
else if (!dyna_in_block() && local_id($2))
|
|
|
|
yyerror("duplicated block argument name");
|
2005-08-30 08:27:41 +04:00
|
|
|
if (dyna_in_block()) {
|
2006-12-31 18:02:22 +03:00
|
|
|
shadowing_lvar($2);
|
2005-08-30 08:27:41 +04:00
|
|
|
dyna_var($2);
|
|
|
|
$$ = assignable($2, 0);
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
else {
|
2005-08-30 08:27:41 +04:00
|
|
|
$$ = NEW_BLOCK_ARG($2);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $2;
|
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
opt_f_block_arg : ',' f_block_arg
|
|
|
|
{
|
|
|
|
$$ = $2;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
| none
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
singleton : var_ref
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = $1;
|
|
|
|
value_expr($$);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = $1;
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-02-12 09:23:24 +03:00
|
|
|
| '(' {lex_state = EXPR_BEG;} expr rparen
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2002-06-12 13:22:20 +04:00
|
|
|
if ($3 == 0) {
|
2003-08-28 00:04:23 +04:00
|
|
|
yyerror("can't define singleton method for ().");
|
2002-06-12 13:22:20 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
switch (nd_type($3)) {
|
|
|
|
case NODE_STR:
|
|
|
|
case NODE_DSTR:
|
|
|
|
case NODE_XSTR:
|
|
|
|
case NODE_DXSTR:
|
|
|
|
case NODE_DREGX:
|
|
|
|
case NODE_LIT:
|
|
|
|
case NODE_ARRAY:
|
|
|
|
case NODE_ZARRAY:
|
2003-08-28 00:04:23 +04:00
|
|
|
yyerror("can't define singleton method for literals");
|
2002-06-12 13:22:20 +04:00
|
|
|
default:
|
|
|
|
value_expr($3);
|
|
|
|
break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
$$ = $3;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch1(paren, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
assoc_list : none
|
1998-01-16 15:13:05 +03:00
|
|
|
| assocs trailer
|
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
| args trailer
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
if ($1->nd_alen%2 != 0) {
|
|
|
|
yyerror("odd number list for Hash");
|
|
|
|
}
|
|
|
|
$$ = $1;
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch1(assoclist_from_args, $1);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
assocs : assoc
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
|
|
|
{
|
|
|
|
$$ = rb_ary_new3(1, $1);
|
|
|
|
}
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
| assocs ',' assoc
|
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = list_concat($1, $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
rb_ary_push($$, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-02-18 12:52:48 +03:00
|
|
|
assoc : arg_value tASSOC arg_value
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
$$ = list_append(NEW_LIST($1), $3);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
|
|
|
$$ = dispatch2(assoc_new, $1, $3);
|
|
|
|
%*/
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-02-08 16:39:47 +03:00
|
|
|
| tLABEL arg_value
|
2004-04-05 17:16:40 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%%%*/
|
2004-04-05 17:16:40 +04:00
|
|
|
$$ = list_append(NEW_LIST(NEW_LIT(ID2SYM($1))), $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = dispatch2(assoc_new, $1, $2);
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2004-04-05 17:16:40 +04:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
operation : tIDENTIFIER
|
|
|
|
| tCONSTANT
|
|
|
|
| tFID
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
operation2 : tIDENTIFIER
|
|
|
|
| tCONSTANT
|
|
|
|
| tFID
|
|
|
|
| op
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
operation3 : tIDENTIFIER
|
|
|
|
| tFID
|
|
|
|
| op
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
dot_or_colon : '.'
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
2004-10-31 08:22:58 +03:00
|
|
|
{ $$ = $<val>1; }
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
1999-01-20 07:59:39 +03:00
|
|
|
| tCOLON2
|
2004-09-12 19:21:49 +04:00
|
|
|
/*%c%*/
|
|
|
|
/*%c
|
2004-10-31 08:22:58 +03:00
|
|
|
{ $$ = $<val>1; }
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
opt_terms : /* none */
|
|
|
|
| terms
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
opt_nl : /* none */
|
|
|
|
| '\n'
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-02-12 09:23:24 +03:00
|
|
|
rparen : opt_nl ')'
|
|
|
|
;
|
|
|
|
|
2006-06-10 20:09:12 +04:00
|
|
|
rbracket : opt_nl ']'
|
|
|
|
;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
trailer : /* none */
|
|
|
|
| '\n'
|
|
|
|
| ','
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
term : ';' {yyerrok;}
|
|
|
|
| '\n'
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
terms : term
|
|
|
|
| terms ';' {yyerrok;}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
none : /* none */
|
|
|
|
{
|
|
|
|
/*%%%*/
|
|
|
|
$$ = 0;
|
|
|
|
/*%
|
2006-12-31 18:02:22 +03:00
|
|
|
$$ = Qundef;
|
2004-09-12 19:21:49 +04:00
|
|
|
%*/
|
|
|
|
}
|
2002-03-26 09:18:51 +03:00
|
|
|
;
|
1998-01-16 15:13:05 +03:00
|
|
|
%%
|
2004-09-12 19:21:49 +04:00
|
|
|
# undef parser
|
2004-09-17 13:24:13 +04:00
|
|
|
# undef yylex
|
2004-09-12 19:21:49 +04:00
|
|
|
# undef yylval
|
2004-09-17 13:24:13 +04:00
|
|
|
# define yylval (*((YYSTYPE*)(parser->parser_yylval)))
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static int parser_regx_options(struct parser_params*);
|
|
|
|
static int parser_tokadd_string(struct parser_params*,int,int,int,long*);
|
|
|
|
static int parser_parse_string(struct parser_params*,NODE*);
|
|
|
|
static int parser_here_document(struct parser_params*,NODE*);
|
2004-09-17 13:24:13 +04:00
|
|
|
|
|
|
|
# define nextc() parser_nextc(parser)
|
|
|
|
# define pushback(c) parser_pushback(parser, c)
|
|
|
|
# define newtok() parser_newtok(parser)
|
|
|
|
# define tokadd(c) parser_tokadd(parser, c)
|
|
|
|
# define read_escape() parser_read_escape(parser)
|
|
|
|
# define tokadd_escape(t) parser_tokadd_escape(parser, t)
|
|
|
|
# define regx_options() parser_regx_options(parser)
|
|
|
|
# define tokadd_string(f,t,p,n) parser_tokadd_string(parser,f,t,p,n)
|
|
|
|
# define parse_string(n) parser_parse_string(parser,n)
|
|
|
|
# define here_document(n) parser_here_document(parser,n)
|
|
|
|
# define heredoc_identifier() parser_heredoc_identifier(parser)
|
|
|
|
# define heredoc_restore(n) parser_heredoc_restore(parser,n)
|
|
|
|
# define whole_match_p(e,l,i) parser_whole_match_p(parser,e,l,i)
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
#ifdef RIPPER
|
2004-09-12 19:21:49 +04:00
|
|
|
/* FIXME */
|
|
|
|
# define local_cnt(x) 3
|
|
|
|
# define local_id(x) 1
|
|
|
|
# define dyna_in_block() 1
|
|
|
|
#endif /* RIPPER */
|
|
|
|
|
|
|
|
#ifndef RIPPER
|
|
|
|
# define set_yylval_str(x) yylval.node = NEW_STR(x)
|
|
|
|
# define set_yylval_num(x) yylval.num = x
|
|
|
|
# define set_yylval_id(x) yylval.id = x
|
|
|
|
# define set_yylval_literal(x) yylval.node = NEW_LIT(x)
|
2004-10-31 08:22:58 +03:00
|
|
|
# define set_yylval_node(x) yylval.node = x
|
|
|
|
# define yylval_id() yylval.id
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
2005-09-25 02:34:56 +04:00
|
|
|
# define set_yylval_str(x) (void)(x)
|
|
|
|
# define set_yylval_num(x) (void)(x)
|
|
|
|
# define set_yylval_id(x) (void)(x)
|
|
|
|
# define set_yylval_literal(x) (void)(x)
|
|
|
|
# define set_yylval_node(x) (void)(x)
|
2004-10-31 08:22:58 +03:00
|
|
|
# define yylval_id() SYM2ID(yylval.val)
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
2004-09-20 07:03:12 +04:00
|
|
|
#ifdef RIPPER
|
2004-09-20 09:40:23 +04:00
|
|
|
#define ripper_flush(p) (p->tokp = p->parser_lex_p)
|
2004-09-17 13:24:13 +04:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch_scan_event(struct parser_params *parser, int t)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-20 09:40:23 +04:00
|
|
|
VALUE str;
|
|
|
|
|
|
|
|
if (lex_p < parser->tokp) rb_raise(rb_eRuntimeError, "lex_p < tokp");
|
|
|
|
if (lex_p == parser->tokp) return;
|
|
|
|
str = rb_str_new(parser->tokp, lex_p - parser->tokp);
|
2004-09-22 09:22:50 +04:00
|
|
|
yylval.val = ripper_dispatch1(parser, ripper_token2eventid(t), str);
|
2004-09-20 09:40:23 +04:00
|
|
|
ripper_flush(parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch_delayed_token(struct parser_params *parser, int t)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-20 11:59:30 +04:00
|
|
|
int saved_line = ruby_sourceline;
|
2005-10-20 17:15:19 +04:00
|
|
|
const char *saved_tokp = parser->tokp;
|
2004-09-20 11:59:30 +04:00
|
|
|
|
|
|
|
ruby_sourceline = parser->delayed_line;
|
|
|
|
parser->tokp = lex_pbeg + parser->delayed_col;
|
2004-09-22 09:22:50 +04:00
|
|
|
yylval.val = ripper_dispatch1(parser, ripper_token2eventid(t), parser->delayed);
|
2004-09-20 11:59:30 +04:00
|
|
|
parser->delayed = Qnil;
|
2004-09-20 09:40:23 +04:00
|
|
|
ruby_sourceline = saved_line;
|
|
|
|
parser->tokp = saved_tokp;
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
#endif /* RIPPER */
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#include "regex.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2000-10-20 20:37:01 +04:00
|
|
|
/* We remove any previous definition of `SIGN_EXTEND_CHAR',
|
|
|
|
since ours (we hope) works properly with all combinations of
|
|
|
|
machines, compilers, `char' and `unsigned char' argument types.
|
|
|
|
(Per Bothner suggested the basic approach.) */
|
|
|
|
#undef SIGN_EXTEND_CHAR
|
|
|
|
#if __STDC__
|
|
|
|
# define SIGN_EXTEND_CHAR(c) ((signed char)(c))
|
|
|
|
#else /* not __STDC__ */
|
|
|
|
/* As in Harbison and Steele. */
|
|
|
|
# define SIGN_EXTEND_CHAR(c) ((((unsigned char)(c)) ^ 128) - 128)
|
|
|
|
#endif
|
|
|
|
#define is_identchar(c) (SIGN_EXTEND_CHAR(c)!=-1&&(ISALNUM(c) || (c) == '_' || ismbchar(c)))
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_yyerror(struct parser_params *parser, const char *msg)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
#ifndef RIPPER
|
2005-10-20 17:15:19 +04:00
|
|
|
const char *p, *pe;
|
|
|
|
char *buf;
|
1998-01-16 15:13:05 +03:00
|
|
|
int len, i;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_compile_error("%s", msg);
|
1998-01-16 15:13:05 +03:00
|
|
|
p = lex_p;
|
|
|
|
while (lex_pbeg <= p) {
|
|
|
|
if (*p == '\n') break;
|
|
|
|
p--;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
|
|
|
|
pe = lex_p;
|
|
|
|
while (pe < lex_pend) {
|
|
|
|
if (*pe == '\n') break;
|
|
|
|
pe++;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = pe - p;
|
|
|
|
if (len > 4) {
|
2005-10-20 17:15:19 +04:00
|
|
|
char *p2;
|
1998-01-16 15:13:05 +03:00
|
|
|
buf = ALLOCA_N(char, len+2);
|
|
|
|
MEMCPY(buf, p, char, len);
|
|
|
|
buf[len] = '\0';
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_compile_error_append("%s", buf);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
i = lex_p - p;
|
2005-10-20 17:15:19 +04:00
|
|
|
p2 = buf; pe = buf + len;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-10-20 17:15:19 +04:00
|
|
|
while (p2 < pe) {
|
|
|
|
if (*p2 != '\t') *p2 = ' ';
|
|
|
|
p2++;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
buf[i] = '^';
|
|
|
|
buf[i+1] = '\0';
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_compile_error_append("%s", buf);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
|
|
|
dispatch1(parse_error, rb_str_new2(msg));
|
2004-09-17 13:24:13 +04:00
|
|
|
#endif /* !RIPPER */
|
2004-09-12 19:21:49 +04:00
|
|
|
return 0;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static void parser_prepare(struct parser_params *parser);
|
2005-05-14 06:48:07 +04:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifndef RIPPER
|
1998-01-16 15:13:05 +03:00
|
|
|
static NODE*
|
2006-12-31 18:02:22 +03:00
|
|
|
yycompile(struct parser_params *parser, const char *f, int line)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int n;
|
2005-05-14 06:48:07 +04:00
|
|
|
const char *kcode_save;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-07-18 10:00:45 +04:00
|
|
|
if (!compile_for_eval && rb_safe_level() == 0 &&
|
2000-01-05 07:41:21 +03:00
|
|
|
rb_const_defined(rb_cObject, rb_intern("SCRIPT_LINES__"))) {
|
1999-10-15 12:52:18 +04:00
|
|
|
VALUE hash, fname;
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
hash = rb_const_get(rb_cObject, rb_intern("SCRIPT_LINES__"));
|
1999-10-15 12:52:18 +04:00
|
|
|
if (TYPE(hash) == T_HASH) {
|
|
|
|
fname = rb_str_new2(f);
|
|
|
|
ruby_debug_lines = rb_hash_aref(hash, fname);
|
|
|
|
if (NIL_P(ruby_debug_lines)) {
|
|
|
|
ruby_debug_lines = rb_ary_new();
|
|
|
|
rb_hash_aset(hash, fname, ruby_debug_lines);
|
|
|
|
}
|
|
|
|
}
|
2000-01-05 07:41:21 +03:00
|
|
|
if (line > 1) {
|
|
|
|
VALUE str = rb_str_new(0,0);
|
2005-05-14 06:48:07 +04:00
|
|
|
n = line - 1;
|
|
|
|
do {
|
2000-01-05 07:41:21 +03:00
|
|
|
rb_ary_push(ruby_debug_lines, str);
|
2005-05-14 06:48:07 +04:00
|
|
|
} while (--n);
|
2000-01-05 07:41:21 +03:00
|
|
|
}
|
1999-10-15 12:52:18 +04:00
|
|
|
}
|
|
|
|
|
2005-05-14 06:48:07 +04:00
|
|
|
kcode_save = rb_get_kcode();
|
2002-08-15 15:49:40 +04:00
|
|
|
ruby_current_node = 0;
|
2002-03-07 14:19:37 +03:00
|
|
|
ruby_sourcefile = rb_source_filename(f);
|
2004-10-20 10:53:42 +04:00
|
|
|
ruby_sourceline = line - 1;
|
2005-05-14 06:48:07 +04:00
|
|
|
parser_prepare(parser);
|
2004-09-17 13:24:13 +04:00
|
|
|
n = yyparse((void*)parser);
|
1999-10-15 12:52:18 +04:00
|
|
|
ruby_debug_lines = 0;
|
1999-08-13 09:45:20 +04:00
|
|
|
compile_for_eval = 0;
|
2005-05-14 06:48:07 +04:00
|
|
|
rb_set_kcode(kcode_save);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
lex_strterm = 0;
|
2004-09-22 04:19:15 +04:00
|
|
|
if (ruby_eval_tree_begin) {
|
|
|
|
return NEW_PRELUDE(ruby_eval_tree_begin, ruby_eval_tree);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return ruby_eval_tree;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif /* !RIPPER */
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
lex_get_str(struct parser_params *parser, VALUE s)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
|
|
|
char *beg, *end, *pend;
|
|
|
|
|
2006-08-31 14:47:44 +04:00
|
|
|
beg = RSTRING_PTR(s);
|
1999-01-20 07:59:39 +03:00
|
|
|
if (lex_gets_ptr) {
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_LEN(s) == lex_gets_ptr) return Qnil;
|
1999-01-20 07:59:39 +03:00
|
|
|
beg += lex_gets_ptr;
|
|
|
|
}
|
2006-08-31 14:47:44 +04:00
|
|
|
pend = RSTRING_PTR(s) + RSTRING_LEN(s);
|
1999-01-20 07:59:39 +03:00
|
|
|
end = beg;
|
|
|
|
while (end < pend) {
|
|
|
|
if (*end++ == '\n') break;
|
|
|
|
}
|
2006-08-31 14:47:44 +04:00
|
|
|
lex_gets_ptr = end - RSTRING_PTR(s);
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_str_new(beg, end - beg);
|
|
|
|
}
|
|
|
|
|
1999-10-15 12:52:18 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
lex_getline(struct parser_params *parser)
|
1999-10-15 12:52:18 +04:00
|
|
|
{
|
2004-10-20 10:53:42 +04:00
|
|
|
VALUE line = (*parser->parser_lex_gets)(parser, parser->parser_lex_input);
|
2004-10-20 19:44:06 +04:00
|
|
|
#ifndef RIPPER
|
2004-10-20 10:53:42 +04:00
|
|
|
if (ruby_debug_lines && !NIL_P(line)) {
|
|
|
|
rb_ary_push(ruby_debug_lines, line);
|
|
|
|
}
|
2004-10-20 19:44:06 +04:00
|
|
|
#endif
|
2004-10-20 10:53:42 +04:00
|
|
|
return line;
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
1999-10-15 12:52:18 +04:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifndef RIPPER
|
1998-01-16 15:13:05 +03:00
|
|
|
NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_compile_string(const char *f, VALUE s, int line)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-07-13 17:44:21 +04:00
|
|
|
VALUE volatile vparser = rb_parser_new();
|
|
|
|
|
|
|
|
return rb_parser_compile_string(vparser, f, s, line);
|
|
|
|
}
|
|
|
|
|
|
|
|
NODE*
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_parser_compile_string(volatile VALUE vparser, const char *f, VALUE s, int line)
|
2005-07-13 17:44:21 +04:00
|
|
|
{
|
2004-12-29 23:41:04 +03:00
|
|
|
struct parser_params *parser;
|
2006-12-31 18:02:22 +03:00
|
|
|
NODE *node;
|
|
|
|
volatile VALUE tmp;
|
|
|
|
|
2004-12-29 23:41:04 +03:00
|
|
|
Data_Get_Struct(vparser, struct parser_params, parser);
|
1999-01-20 07:59:39 +03:00
|
|
|
lex_gets = lex_get_str;
|
|
|
|
lex_gets_ptr = 0;
|
|
|
|
lex_input = s;
|
|
|
|
lex_pbeg = lex_p = lex_pend = 0;
|
2006-12-31 18:02:22 +03:00
|
|
|
compile_for_eval = rb_parse_in_eval();
|
|
|
|
|
|
|
|
node = yycompile(parser, f, line);
|
|
|
|
tmp = vparser; /* prohibit tail call optimization */
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
return node;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_compile_cstr(const char *f, const char *s, int len, int line)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
return rb_compile_string(f, rb_str_new(s, len), line);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2005-07-13 17:44:21 +04:00
|
|
|
NODE*
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_parser_compile_cstr(volatile VALUE vparser, const char *f, const char *s, int len, int line)
|
2005-07-13 17:44:21 +04:00
|
|
|
{
|
|
|
|
return rb_parser_compile_string(vparser, f, rb_str_new(s, len), line);
|
|
|
|
}
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
lex_io_gets(struct parser_params *parser, VALUE io)
|
2004-09-17 13:24:13 +04:00
|
|
|
{
|
2005-02-22 01:25:28 +03:00
|
|
|
return rb_io_gets(io);
|
2004-09-17 13:24:13 +04:00
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_compile_file(const char *f, VALUE file, int start)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-07-13 17:44:21 +04:00
|
|
|
VALUE volatile vparser = rb_parser_new();
|
|
|
|
|
|
|
|
return rb_parser_compile_file(vparser, f, file, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
NODE*
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_parser_compile_file(volatile VALUE vparser, const char *f, VALUE file, int start)
|
2005-07-13 17:44:21 +04:00
|
|
|
{
|
2004-12-29 23:41:04 +03:00
|
|
|
struct parser_params *parser;
|
2006-12-31 18:02:22 +03:00
|
|
|
volatile VALUE tmp;
|
|
|
|
NODE *node;
|
|
|
|
|
2004-12-29 23:41:04 +03:00
|
|
|
Data_Get_Struct(vparser, struct parser_params, parser);
|
2004-09-17 13:24:13 +04:00
|
|
|
lex_gets = lex_io_gets;
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_input = file;
|
|
|
|
lex_pbeg = lex_p = lex_pend = 0;
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
node = yycompile(parser, f, start);
|
|
|
|
tmp = vparser; /* prohibit tail call optimization */
|
|
|
|
|
|
|
|
return node;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif /* !RIPPER */
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2001-01-10 13:07:31 +03:00
|
|
|
static inline int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_nextc(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if (lex_p == lex_pend) {
|
2006-12-31 18:02:22 +03:00
|
|
|
if (parser->eofp)
|
|
|
|
return -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (lex_input) {
|
2004-09-17 13:24:13 +04:00
|
|
|
VALUE v = lex_getline(parser);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
if (NIL_P(v)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
parser->eofp = Qtrue;
|
|
|
|
return -1;
|
|
|
|
}
|
2004-09-20 07:03:12 +04:00
|
|
|
#ifdef RIPPER
|
2004-09-20 09:40:23 +04:00
|
|
|
if (parser->tokp < lex_pend) {
|
2004-09-20 11:59:30 +04:00
|
|
|
if (NIL_P(parser->delayed)) {
|
|
|
|
parser->delayed = rb_str_buf_new(1024);
|
|
|
|
rb_str_buf_cat(parser->delayed,
|
|
|
|
parser->tokp, lex_pend - parser->tokp);
|
|
|
|
parser->delayed_line = ruby_sourceline;
|
|
|
|
parser->delayed_col = parser->tokp - lex_pbeg;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_str_buf_cat(parser->delayed,
|
|
|
|
parser->tokp, lex_pend - parser->tokp);
|
|
|
|
}
|
2004-09-20 09:40:23 +04:00
|
|
|
}
|
2004-09-20 07:03:12 +04:00
|
|
|
#endif
|
2002-09-10 18:38:20 +04:00
|
|
|
if (heredoc_end > 0) {
|
|
|
|
ruby_sourceline = heredoc_end;
|
|
|
|
heredoc_end = 0;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
ruby_sourceline++;
|
2005-05-14 06:48:07 +04:00
|
|
|
parser->line_count++;
|
2006-08-31 14:47:44 +04:00
|
|
|
lex_pbeg = lex_p = RSTRING_PTR(v);
|
|
|
|
lex_pend = lex_p + RSTRING_LEN(v);
|
2004-09-20 07:03:12 +04:00
|
|
|
#ifdef RIPPER
|
|
|
|
ripper_flush(parser);
|
|
|
|
#endif
|
1998-01-16 15:19:22 +03:00
|
|
|
lex_lastline = v;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:19:22 +03:00
|
|
|
lex_lastline = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c = (unsigned char)*lex_p++;
|
2002-12-16 09:56:33 +03:00
|
|
|
if (c == '\r' && lex_p < lex_pend && *lex_p == '\n') {
|
1999-09-16 13:40:33 +04:00
|
|
|
lex_p++;
|
|
|
|
c = '\n';
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_pushback(struct parser_params *parser, int c)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
if (c == -1) return;
|
|
|
|
lex_p--;
|
2004-09-20 07:03:12 +04:00
|
|
|
if (lex_p > lex_pbeg && lex_p[0] == '\n' && lex_p[-1] == '\r') {
|
|
|
|
lex_p--;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-09-20 07:03:12 +04:00
|
|
|
#define lex_goto_eol(parser) (parser->parser_lex_p = parser->parser_lex_pend)
|
2002-12-31 01:56:21 +03:00
|
|
|
#define was_bol() (lex_p == lex_pbeg + 1)
|
1999-08-13 09:45:20 +04:00
|
|
|
#define peek(c) (lex_p != lex_pend && (c) == *lex_p)
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#define tokfix() (tokenbuf[tokidx]='\0')
|
|
|
|
#define tok() tokenbuf
|
|
|
|
#define toklen() tokidx
|
|
|
|
#define toklast() (tokidx>0?tokenbuf[tokidx-1]:0)
|
|
|
|
|
|
|
|
static char*
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_newtok(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
tokidx = 0;
|
|
|
|
if (!tokenbuf) {
|
|
|
|
toksiz = 60;
|
|
|
|
tokenbuf = ALLOC_N(char, 60);
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
if (toksiz > 4096) {
|
1998-01-16 15:13:05 +03:00
|
|
|
toksiz = 60;
|
|
|
|
REALLOC_N(tokenbuf, char, 60);
|
|
|
|
}
|
|
|
|
return tokenbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-06-10 03:18:04 +04:00
|
|
|
parser_tokadd(struct parser_params *parser, int c)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-06-10 03:18:04 +04:00
|
|
|
tokenbuf[tokidx++] = (char)c;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (tokidx >= toksiz) {
|
|
|
|
toksiz *= 2;
|
|
|
|
REALLOC_N(tokenbuf, char, toksiz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_read_escape(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
switch (c = nextc()) {
|
|
|
|
case '\\': /* Backslash */
|
|
|
|
return c;
|
|
|
|
|
|
|
|
case 'n': /* newline */
|
|
|
|
return '\n';
|
|
|
|
|
|
|
|
case 't': /* horizontal tab */
|
|
|
|
return '\t';
|
|
|
|
|
|
|
|
case 'r': /* carriage-return */
|
|
|
|
return '\r';
|
|
|
|
|
|
|
|
case 'f': /* form-feed */
|
|
|
|
return '\f';
|
|
|
|
|
|
|
|
case 'v': /* vertical tab */
|
|
|
|
return '\13';
|
|
|
|
|
|
|
|
case 'a': /* alarm(bell) */
|
|
|
|
return '\007';
|
|
|
|
|
|
|
|
case 'e': /* escape */
|
|
|
|
return 033;
|
|
|
|
|
|
|
|
case '0': case '1': case '2': case '3': /* octal constant */
|
|
|
|
case '4': case '5': case '6': case '7':
|
|
|
|
{
|
2002-03-12 12:28:50 +03:00
|
|
|
int numlen;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
pushback(c);
|
2002-03-12 12:28:50 +03:00
|
|
|
c = scan_oct(lex_p, 3, &numlen);
|
|
|
|
lex_p += numlen;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return c;
|
|
|
|
|
|
|
|
case 'x': /* hex constant */
|
|
|
|
{
|
2000-03-08 09:25:19 +03:00
|
|
|
int numlen;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2000-03-08 09:25:19 +03:00
|
|
|
c = scan_hex(lex_p, 2, &numlen);
|
2002-06-14 10:27:18 +04:00
|
|
|
if (numlen == 0) {
|
|
|
|
yyerror("Invalid escape character syntax");
|
|
|
|
return 0;
|
|
|
|
}
|
2000-03-08 09:25:19 +03:00
|
|
|
lex_p += numlen;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return c;
|
|
|
|
|
|
|
|
case 'b': /* backspace */
|
1999-08-13 09:45:20 +04:00
|
|
|
return '\010';
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
case 's': /* space */
|
|
|
|
return ' ';
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case 'M':
|
|
|
|
if ((c = nextc()) != '-') {
|
|
|
|
yyerror("Invalid escape character syntax");
|
|
|
|
pushback(c);
|
|
|
|
return '\0';
|
|
|
|
}
|
|
|
|
if ((c = nextc()) == '\\') {
|
|
|
|
return read_escape() | 0x80;
|
|
|
|
}
|
|
|
|
else if (c == -1) goto eof;
|
|
|
|
else {
|
|
|
|
return ((c & 0xff) | 0x80);
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'C':
|
|
|
|
if ((c = nextc()) != '-') {
|
|
|
|
yyerror("Invalid escape character syntax");
|
|
|
|
pushback(c);
|
|
|
|
return '\0';
|
|
|
|
}
|
|
|
|
case 'c':
|
|
|
|
if ((c = nextc())== '\\') {
|
|
|
|
c = read_escape();
|
|
|
|
}
|
|
|
|
else if (c == '?')
|
|
|
|
return 0177;
|
|
|
|
else if (c == -1) goto eof;
|
|
|
|
return c & 0x9f;
|
|
|
|
|
|
|
|
eof:
|
|
|
|
case -1:
|
2006-12-31 18:02:22 +03:00
|
|
|
yyerror("Invalid escape character syntax");
|
1998-01-16 15:13:05 +03:00
|
|
|
return '\0';
|
|
|
|
|
|
|
|
default:
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-12 13:07:57 +04:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_tokadd_escape(struct parser_params *parser, int term)
|
2000-05-12 13:07:57 +04:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
switch (c = nextc()) {
|
|
|
|
case '\n':
|
|
|
|
return 0; /* just ignore */
|
|
|
|
|
|
|
|
case '0': case '1': case '2': case '3': /* octal constant */
|
|
|
|
case '4': case '5': case '6': case '7':
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
tokadd('\\');
|
|
|
|
tokadd(c);
|
|
|
|
for (i=0; i<2; i++) {
|
|
|
|
c = nextc();
|
|
|
|
if (c == -1) goto eof;
|
|
|
|
if (c < '0' || '7' < c) {
|
|
|
|
pushback(c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tokadd(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 'x': /* hex constant */
|
|
|
|
{
|
|
|
|
int numlen;
|
|
|
|
|
2000-05-25 09:55:12 +04:00
|
|
|
tokadd('\\');
|
|
|
|
tokadd(c);
|
2000-05-12 13:07:57 +04:00
|
|
|
scan_hex(lex_p, 2, &numlen);
|
2002-06-14 10:27:18 +04:00
|
|
|
if (numlen == 0) {
|
|
|
|
yyerror("Invalid escape character syntax");
|
|
|
|
return -1;
|
|
|
|
}
|
2000-05-12 13:07:57 +04:00
|
|
|
while (numlen--)
|
|
|
|
tokadd(nextc());
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 'M':
|
|
|
|
if ((c = nextc()) != '-') {
|
|
|
|
yyerror("Invalid escape character syntax");
|
|
|
|
pushback(c);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
tokadd('\\'); tokadd('M'); tokadd('-');
|
|
|
|
goto escaped;
|
|
|
|
|
|
|
|
case 'C':
|
|
|
|
if ((c = nextc()) != '-') {
|
|
|
|
yyerror("Invalid escape character syntax");
|
|
|
|
pushback(c);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
tokadd('\\'); tokadd('C'); tokadd('-');
|
|
|
|
goto escaped;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
tokadd('\\'); tokadd('c');
|
|
|
|
escaped:
|
|
|
|
if ((c = nextc()) == '\\') {
|
2001-08-20 08:29:58 +04:00
|
|
|
return tokadd_escape(term);
|
2000-05-12 13:07:57 +04:00
|
|
|
}
|
|
|
|
else if (c == -1) goto eof;
|
|
|
|
tokadd(c);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
eof:
|
|
|
|
case -1:
|
2006-12-31 18:02:22 +03:00
|
|
|
yyerror("Invalid escape character syntax");
|
2000-05-12 13:07:57 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
default:
|
2002-06-11 11:02:23 +04:00
|
|
|
if (c != '\\' || c != term)
|
2001-08-20 08:29:58 +04:00
|
|
|
tokadd('\\');
|
2000-05-12 13:07:57 +04:00
|
|
|
tokadd(c);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_regx_options(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-03-26 17:04:13 +04:00
|
|
|
extern int rb_char_to_option_kcode(int c, int *option, int *kcode);
|
|
|
|
|
|
|
|
int kcode = 0;
|
1999-01-20 07:59:39 +03:00
|
|
|
int options = 0;
|
2006-05-13 12:55:39 +04:00
|
|
|
int c, opt, kc;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
newtok();
|
2002-06-24 11:20:42 +04:00
|
|
|
while (c = nextc(), ISALPHA(c)) {
|
2006-03-26 17:04:13 +04:00
|
|
|
if (c == 'o') {
|
|
|
|
options |= RE_OPTION_ONCE;
|
|
|
|
}
|
|
|
|
else if (rb_char_to_option_kcode(c, &opt, &kc)) {
|
|
|
|
options |= opt;
|
|
|
|
if (kc != 0) kcode = kc;
|
|
|
|
}
|
|
|
|
else {
|
2002-06-24 11:20:42 +04:00
|
|
|
tokadd(c);
|
2006-03-26 17:04:13 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
pushback(c);
|
|
|
|
if (toklen()) {
|
|
|
|
tokfix();
|
2004-09-17 13:24:13 +04:00
|
|
|
compile_error(PARSER_ARG "unknown regexp option%s - %s",
|
|
|
|
toklen() > 1 ? "s" : "", tok());
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
return options | kcode;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2002-06-26 12:01:00 +04:00
|
|
|
#define STR_FUNC_ESCAPE 0x01
|
|
|
|
#define STR_FUNC_EXPAND 0x02
|
|
|
|
#define STR_FUNC_REGEXP 0x04
|
|
|
|
#define STR_FUNC_QWORDS 0x08
|
2002-10-23 14:17:30 +04:00
|
|
|
#define STR_FUNC_SYMBOL 0x10
|
2002-06-26 12:01:00 +04:00
|
|
|
#define STR_FUNC_INDENT 0x20
|
|
|
|
|
|
|
|
enum string_type {
|
|
|
|
str_squote = (0),
|
|
|
|
str_dquote = (STR_FUNC_EXPAND),
|
2003-09-24 11:42:06 +04:00
|
|
|
str_xquote = (STR_FUNC_EXPAND),
|
2002-06-26 12:01:00 +04:00
|
|
|
str_regexp = (STR_FUNC_REGEXP|STR_FUNC_ESCAPE|STR_FUNC_EXPAND),
|
|
|
|
str_sword = (STR_FUNC_QWORDS),
|
|
|
|
str_dword = (STR_FUNC_QWORDS|STR_FUNC_EXPAND),
|
2002-10-23 14:17:30 +04:00
|
|
|
str_ssym = (STR_FUNC_SYMBOL),
|
|
|
|
str_dsym = (STR_FUNC_SYMBOL|STR_FUNC_EXPAND),
|
2002-06-26 12:01:00 +04:00
|
|
|
};
|
|
|
|
|
2002-12-15 05:48:40 +03:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
dispose_string(VALUE str)
|
2002-12-15 05:48:40 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
/* TODO: should use another API? */
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RBASIC(str)->flags & RSTRING_NOEMBED)
|
|
|
|
xfree(RSTRING_PTR(str));
|
2002-12-15 05:48:40 +03:00
|
|
|
rb_gc_force_recycle(str);
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_tokadd_string(struct parser_params *parser,
|
|
|
|
int func, int term, int paren, long *nest)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
unsigned char uc;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
while ((c = nextc()) != -1) {
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned char)c;
|
2002-06-24 11:20:42 +04:00
|
|
|
if (paren && c == paren) {
|
2003-07-11 20:22:01 +04:00
|
|
|
++*nest;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
else if (c == term) {
|
2003-07-11 20:22:01 +04:00
|
|
|
if (!nest || !*nest) {
|
2002-06-24 11:20:42 +04:00
|
|
|
pushback(c);
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-07-11 20:22:01 +04:00
|
|
|
--*nest;
|
2002-03-18 05:04:23 +03:00
|
|
|
}
|
2002-06-26 12:01:00 +04:00
|
|
|
else if ((func & STR_FUNC_EXPAND) && c == '#' && lex_p < lex_pend) {
|
2002-06-24 11:20:42 +04:00
|
|
|
int c2 = *lex_p;
|
|
|
|
if (c2 == '$' || c2 == '@' || c2 == '{') {
|
|
|
|
pushback(c);
|
|
|
|
break;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else if (c == '\\') {
|
|
|
|
c = nextc();
|
|
|
|
switch (c) {
|
|
|
|
case '\n':
|
2003-09-04 18:59:43 +04:00
|
|
|
if (func & STR_FUNC_QWORDS) break;
|
|
|
|
if (func & STR_FUNC_EXPAND) continue;
|
|
|
|
tokadd('\\');
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '\\':
|
2002-06-26 12:01:00 +04:00
|
|
|
if (func & STR_FUNC_ESCAPE) tokadd(c);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2002-06-26 12:01:00 +04:00
|
|
|
if (func & STR_FUNC_REGEXP) {
|
2002-06-24 11:20:42 +04:00
|
|
|
pushback(c);
|
|
|
|
if (tokadd_escape(term) < 0)
|
|
|
|
return -1;
|
2001-02-08 12:19:27 +03:00
|
|
|
continue;
|
|
|
|
}
|
2002-06-26 12:01:00 +04:00
|
|
|
else if (func & STR_FUNC_EXPAND) {
|
2002-06-24 11:20:42 +04:00
|
|
|
pushback(c);
|
2002-06-26 12:01:00 +04:00
|
|
|
if (func & STR_FUNC_ESCAPE) tokadd('\\');
|
2002-06-24 11:20:42 +04:00
|
|
|
c = read_escape();
|
|
|
|
}
|
2002-08-01 13:42:38 +04:00
|
|
|
else if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
|
|
|
|
/* ignore backslashed spaces in %w */
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
else if (c != term && !(paren && c == paren)) {
|
|
|
|
tokadd('\\');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
else if (ismbchar(uc)) {
|
|
|
|
int i, len = mbclen(uc)-1;
|
2002-06-24 11:20:42 +04:00
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
tokadd(c);
|
|
|
|
c = nextc();
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
2002-06-26 12:01:00 +04:00
|
|
|
else if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
|
2000-02-01 06:12:21 +03:00
|
|
|
pushback(c);
|
2002-06-26 12:01:00 +04:00
|
|
|
break;
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2002-10-23 14:17:30 +04:00
|
|
|
if (!c && (func & STR_FUNC_SYMBOL)) {
|
|
|
|
func &= ~STR_FUNC_SYMBOL;
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "symbol cannot contain '\\0'");
|
2002-10-23 14:17:30 +04:00
|
|
|
continue;
|
|
|
|
}
|
2000-02-01 06:12:21 +03:00
|
|
|
tokadd(c);
|
|
|
|
}
|
2002-06-26 12:01:00 +04:00
|
|
|
return c;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-09-20 06:02:58 +04:00
|
|
|
#define NEW_STRTERM0(func, term, paren) \
|
2003-07-11 20:22:01 +04:00
|
|
|
rb_node_newnode(NODE_STRTERM, (func), (term) | ((paren) << (CHAR_BIT * 2)), 0)
|
2004-09-20 06:02:58 +04:00
|
|
|
#ifndef RIPPER
|
2004-09-20 07:03:12 +04:00
|
|
|
# define NEW_STRTERM(func, term, paren) NEW_STRTERM0(func, term, paren)
|
2004-09-20 06:02:58 +04:00
|
|
|
#else
|
2004-09-20 07:03:12 +04:00
|
|
|
# define NEW_STRTERM(func, term, paren) ripper_new_strterm(parser, func, term, paren)
|
2004-09-20 06:02:58 +04:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_new_strterm(struct parser_params *parser, VALUE func, VALUE term, VALUE paren)
|
2004-09-20 06:02:58 +04:00
|
|
|
{
|
|
|
|
NODE *node = NEW_STRTERM0(func, term, paren);
|
|
|
|
nd_set_line(node, ruby_sourceline);
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
#endif
|
2002-06-24 11:20:42 +04:00
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_parse_string(struct parser_params *parser, NODE *quote)
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2002-06-26 12:01:00 +04:00
|
|
|
int func = quote->nd_func;
|
2003-07-11 20:22:01 +04:00
|
|
|
int term = nd_term(quote);
|
|
|
|
int paren = nd_paren(quote);
|
2002-06-26 12:01:00 +04:00
|
|
|
int c, space = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
if (func == -1) return tSTRING_END;
|
|
|
|
c = nextc();
|
2002-06-26 12:01:00 +04:00
|
|
|
if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
|
|
|
|
do {c = nextc();} while (ISSPACE(c));
|
|
|
|
space = 1;
|
|
|
|
}
|
2003-09-17 15:34:02 +04:00
|
|
|
if (c == term && !quote->nd_nest) {
|
2002-12-31 01:56:21 +03:00
|
|
|
if (func & STR_FUNC_QWORDS) {
|
|
|
|
quote->nd_func = -1;
|
|
|
|
return ' ';
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
2002-12-31 01:56:21 +03:00
|
|
|
if (!(func & STR_FUNC_REGEXP)) return tSTRING_END;
|
2004-09-12 19:21:49 +04:00
|
|
|
set_yylval_num(regx_options());
|
2002-12-31 01:56:21 +03:00
|
|
|
return tREGEXP_END;
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
2002-06-26 12:01:00 +04:00
|
|
|
if (space) {
|
|
|
|
pushback(c);
|
|
|
|
return ' ';
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
newtok();
|
2002-06-26 12:01:00 +04:00
|
|
|
if ((func & STR_FUNC_EXPAND) && c == '#') {
|
2002-06-24 11:20:42 +04:00
|
|
|
switch (c = nextc()) {
|
|
|
|
case '$':
|
|
|
|
case '@':
|
|
|
|
pushback(c);
|
|
|
|
return tSTRING_DVAR;
|
|
|
|
case '{':
|
|
|
|
return tSTRING_DBEG;
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
tokadd('#');
|
|
|
|
}
|
|
|
|
pushback(c);
|
2003-07-11 20:22:01 +04:00
|
|
|
if (tokadd_string(func, term, paren, "e->nd_nest) == -1) {
|
2006-02-13 07:53:22 +03:00
|
|
|
if (func & STR_FUNC_REGEXP) {
|
|
|
|
ruby_sourceline = nd_line(quote);
|
|
|
|
rb_compile_error(PARSER_ARG "unterminated regexp meets end of file");
|
|
|
|
return tREGEXP_END;
|
|
|
|
}
|
|
|
|
else {
|
2006-12-31 18:02:22 +03:00
|
|
|
ruby_sourceline = nd_line(quote);
|
|
|
|
rb_compile_error(PARSER_ARG "unterminated string meets end of file");
|
|
|
|
return tSTRING_END;
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
tokfix();
|
2004-09-12 19:21:49 +04:00
|
|
|
set_yylval_str(rb_str_new(tok(), toklen()));
|
2002-06-24 11:20:42 +04:00
|
|
|
return tSTRING_CONTENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_heredoc_identifier(struct parser_params *parser)
|
2002-06-24 11:20:42 +04:00
|
|
|
{
|
2002-06-26 12:01:00 +04:00
|
|
|
int c = nextc(), term, func = 0, len;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
unsigned int uc;
|
2002-06-24 11:20:42 +04:00
|
|
|
|
|
|
|
if (c == '-') {
|
|
|
|
c = nextc();
|
2002-06-26 12:01:00 +04:00
|
|
|
func = STR_FUNC_INDENT;
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
switch (c) {
|
|
|
|
case '\'':
|
2002-07-15 05:33:36 +04:00
|
|
|
func |= str_squote; goto quoted;
|
2002-06-24 11:20:42 +04:00
|
|
|
case '"':
|
2002-07-15 05:33:36 +04:00
|
|
|
func |= str_dquote; goto quoted;
|
2002-06-24 11:20:42 +04:00
|
|
|
case '`':
|
2002-06-26 12:01:00 +04:00
|
|
|
func |= str_xquote;
|
2002-07-15 05:33:36 +04:00
|
|
|
quoted:
|
2002-06-24 11:20:42 +04:00
|
|
|
newtok();
|
2002-06-26 12:01:00 +04:00
|
|
|
tokadd(func);
|
2002-06-24 11:20:42 +04:00
|
|
|
term = c;
|
|
|
|
while ((c = nextc()) != -1 && c != term) {
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned int)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
len = mbclen(uc);
|
2002-06-24 11:20:42 +04:00
|
|
|
do {tokadd(c);} while (--len > 0 && (c = nextc()) != -1);
|
|
|
|
}
|
|
|
|
if (c == -1) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "unterminated here document identifier");
|
2002-06-24 11:20:42 +04:00
|
|
|
return 0;
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned int)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
if (!is_identchar(uc)) {
|
2002-12-31 01:56:21 +03:00
|
|
|
pushback(c);
|
|
|
|
if (func & STR_FUNC_INDENT) {
|
|
|
|
pushback('-');
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
newtok();
|
|
|
|
term = '"';
|
2002-06-26 12:01:00 +04:00
|
|
|
tokadd(func |= str_dquote);
|
2002-06-24 11:20:42 +04:00
|
|
|
do {
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned int)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
len = mbclen(uc);
|
2002-06-24 11:20:42 +04:00
|
|
|
do {tokadd(c);} while (--len > 0 && (c = nextc()) != -1);
|
2005-02-22 01:25:28 +03:00
|
|
|
} while ((c = nextc()) != -1 &&
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
(uc = (unsigned char)c, is_identchar(uc)));
|
1998-01-16 15:19:22 +03:00
|
|
|
pushback(c);
|
|
|
|
break;
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
tokfix();
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
2004-09-20 07:03:12 +04:00
|
|
|
ripper_dispatch_scan_event(parser, tHEREDOC_BEG);
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
2002-06-24 11:20:42 +04:00
|
|
|
len = lex_p - lex_pbeg;
|
2004-09-20 07:03:12 +04:00
|
|
|
lex_goto_eol(parser);
|
2002-06-24 11:20:42 +04:00
|
|
|
lex_strterm = rb_node_newnode(NODE_HEREDOC,
|
|
|
|
rb_str_new(tok(), toklen()), /* nd_lit */
|
|
|
|
len, /* nd_nth */
|
|
|
|
lex_lastline); /* nd_orig */
|
2004-09-20 06:02:58 +04:00
|
|
|
nd_set_line(lex_strterm, ruby_sourceline);
|
2004-09-20 07:03:12 +04:00
|
|
|
#ifdef RIPPER
|
|
|
|
ripper_flush(parser);
|
|
|
|
#endif
|
2002-06-24 11:20:42 +04:00
|
|
|
return term == '`' ? tXSTRING_BEG : tSTRING_BEG;
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_heredoc_restore(struct parser_params *parser, NODE *here)
|
2002-06-24 11:20:42 +04:00
|
|
|
{
|
2004-09-12 19:21:49 +04:00
|
|
|
VALUE line;
|
|
|
|
|
|
|
|
#ifdef RIPPER
|
2004-09-20 11:59:30 +04:00
|
|
|
if (!NIL_P(parser->delayed))
|
|
|
|
ripper_dispatch_delayed_token(parser, tSTRING_CONTENT);
|
2004-09-20 07:03:12 +04:00
|
|
|
lex_goto_eol(parser);
|
|
|
|
ripper_dispatch_scan_event(parser, tHEREDOC_END);
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
|
|
|
line = here->nd_orig;
|
2002-06-24 11:20:42 +04:00
|
|
|
lex_lastline = line;
|
2006-08-31 14:47:44 +04:00
|
|
|
lex_pbeg = RSTRING_PTR(line);
|
|
|
|
lex_pend = lex_pbeg + RSTRING_LEN(line);
|
2002-06-24 11:20:42 +04:00
|
|
|
lex_p = lex_pbeg + here->nd_nth;
|
2002-09-10 18:38:20 +04:00
|
|
|
heredoc_end = ruby_sourceline;
|
|
|
|
ruby_sourceline = nd_line(here);
|
2002-12-15 05:48:40 +03:00
|
|
|
dispose_string(here->nd_lit);
|
2002-06-24 11:20:42 +04:00
|
|
|
rb_gc_force_recycle((VALUE)here);
|
2004-09-20 07:03:12 +04:00
|
|
|
#ifdef RIPPER
|
|
|
|
ripper_flush(parser);
|
|
|
|
#endif
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_whole_match_p(struct parser_params *parser,
|
|
|
|
const char *eos, int len, int indent)
|
2002-06-24 11:20:42 +04:00
|
|
|
{
|
2005-10-20 17:15:19 +04:00
|
|
|
const char *p = lex_pbeg;
|
2002-12-30 21:19:08 +03:00
|
|
|
int n;
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
if (indent) {
|
|
|
|
while (*p && ISSPACE(*p)) p++;
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-12-30 21:19:08 +03:00
|
|
|
n= lex_pend - (p + len);
|
2003-01-16 10:38:40 +03:00
|
|
|
if (n < 0 || (n > 0 && p[len] != '\n' && p[len] != '\r')) return Qfalse;
|
2002-12-30 21:19:08 +03:00
|
|
|
if (strncmp(eos, p, len) == 0) return Qtrue;
|
2002-06-24 11:20:42 +04:00
|
|
|
return Qfalse;
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_here_document(struct parser_params *parser, NODE *here)
|
2002-06-24 11:20:42 +04:00
|
|
|
{
|
|
|
|
int c, func, indent = 0;
|
2005-10-20 17:15:19 +04:00
|
|
|
const char *eos, *p, *pend;
|
2002-08-21 19:47:54 +04:00
|
|
|
long len;
|
2002-12-31 01:56:21 +03:00
|
|
|
VALUE str = 0;
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2006-08-31 14:47:44 +04:00
|
|
|
eos = RSTRING_PTR(here->nd_lit);
|
|
|
|
len = RSTRING_LEN(here->nd_lit) - 1;
|
2002-06-26 12:01:00 +04:00
|
|
|
indent = (func = *eos++) & STR_FUNC_INDENT;
|
2002-06-24 11:20:42 +04:00
|
|
|
|
|
|
|
if ((c = nextc()) == -1) {
|
|
|
|
error:
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "can't find string \"%s\" anywhere before EOF", eos);
|
2002-06-24 11:20:42 +04:00
|
|
|
heredoc_restore(lex_strterm);
|
|
|
|
lex_strterm = 0;
|
|
|
|
return 0;
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-12-31 01:56:21 +03:00
|
|
|
if (was_bol() && whole_match_p(eos, len, indent)) {
|
2002-06-24 11:20:42 +04:00
|
|
|
heredoc_restore(lex_strterm);
|
|
|
|
return tSTRING_END;
|
|
|
|
}
|
|
|
|
|
2002-06-26 12:01:00 +04:00
|
|
|
if (!(func & STR_FUNC_EXPAND)) {
|
2002-06-24 11:20:42 +04:00
|
|
|
do {
|
2006-08-31 14:47:44 +04:00
|
|
|
p = RSTRING_PTR(lex_lastline);
|
2002-12-31 01:56:21 +03:00
|
|
|
pend = lex_pend;
|
|
|
|
if (pend > p) {
|
|
|
|
switch (pend[-1]) {
|
|
|
|
case '\n':
|
|
|
|
if (--pend == p || pend[-1] != '\r') {
|
|
|
|
pend++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '\r':
|
|
|
|
--pend;
|
|
|
|
}
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
if (str)
|
2002-12-31 01:56:21 +03:00
|
|
|
rb_str_cat(str, p, pend - p);
|
2002-06-24 11:20:42 +04:00
|
|
|
else
|
2002-12-31 01:56:21 +03:00
|
|
|
str = rb_str_new(p, pend - p);
|
|
|
|
if (pend < lex_pend) rb_str_cat(str, "\n", 1);
|
2004-09-20 07:03:12 +04:00
|
|
|
lex_goto_eol(parser);
|
2002-06-24 11:20:42 +04:00
|
|
|
if (nextc() == -1) {
|
2002-12-15 05:48:40 +03:00
|
|
|
if (str) dispose_string(str);
|
2002-06-24 11:20:42 +04:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
} while (!whole_match_p(eos, len, indent));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
newtok();
|
|
|
|
if (c == '#') {
|
|
|
|
switch (c = nextc()) {
|
|
|
|
case '$':
|
|
|
|
case '@':
|
|
|
|
pushback(c);
|
|
|
|
return tSTRING_DVAR;
|
|
|
|
case '{':
|
|
|
|
return tSTRING_DBEG;
|
|
|
|
}
|
|
|
|
tokadd('#');
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
pushback(c);
|
2003-07-11 20:22:01 +04:00
|
|
|
if ((c = tokadd_string(func, '\n', 0, NULL)) == -1) goto error;
|
2002-06-24 11:20:42 +04:00
|
|
|
if (c != '\n') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_str(rb_str_new(tok(), toklen()));
|
2002-06-24 11:20:42 +04:00
|
|
|
return tSTRING_CONTENT;
|
|
|
|
}
|
|
|
|
tokadd(nextc());
|
|
|
|
if ((c = nextc()) == -1) goto error;
|
|
|
|
} while (!whole_match_p(eos, len, indent));
|
|
|
|
str = rb_str_new(tok(), toklen());
|
|
|
|
}
|
|
|
|
heredoc_restore(lex_strterm);
|
|
|
|
lex_strterm = NEW_STRTERM(-1, 0, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
set_yylval_str(str);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tSTRING_CONTENT;
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "lex.c"
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifndef RIPPER
|
1998-01-16 15:13:05 +03:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
arg_ambiguous(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-04-22 12:18:19 +04:00
|
|
|
rb_warning("ambiguous first argument; put parentheses or even spaces");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_arg_ambiguous(struct parser_params *parser)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
dispatch0(arg_ambiguous);
|
|
|
|
}
|
2004-09-17 13:24:13 +04:00
|
|
|
#define arg_ambiguous() ripper_arg_ambiguous(parser)
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
lvar_defined_gen(struct parser_params *parser, ID id)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
#ifndef RIPPER
|
2006-12-31 18:02:22 +03:00
|
|
|
return (dyna_in_block() && dvar_defined(id)) || local_id(id);
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-05-14 06:48:07 +04:00
|
|
|
/* emacsen -*- hack */
|
2005-06-02 18:43:10 +04:00
|
|
|
#ifndef RIPPER
|
2005-09-25 04:39:22 +04:00
|
|
|
typedef void (*rb_pragma_setter_t)(struct parser_params *parser, const char *name, const char *val);
|
2005-05-14 06:48:07 +04:00
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
pragma_encoding(struct parser_params *parser, const char *name, const char *val)
|
2005-05-14 06:48:07 +04:00
|
|
|
{
|
|
|
|
if (parser && parser->line_count != (parser->has_shebang ? 2 : 1))
|
|
|
|
return;
|
|
|
|
rb_set_kcode(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct pragma {
|
|
|
|
const char *name;
|
|
|
|
rb_pragma_setter_t func;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pragma pragmas[] = {
|
|
|
|
{"coding", pragma_encoding},
|
|
|
|
};
|
2005-06-02 18:43:10 +04:00
|
|
|
#endif
|
2005-05-14 06:48:07 +04:00
|
|
|
|
|
|
|
static const char *
|
2005-09-26 16:01:29 +04:00
|
|
|
pragma_marker(const char *str, int len)
|
2005-05-14 06:48:07 +04:00
|
|
|
{
|
|
|
|
int i = 2;
|
|
|
|
|
|
|
|
while (i < len) {
|
|
|
|
switch (str[i]) {
|
|
|
|
case '-':
|
|
|
|
if (str[i-1] == '*' && str[i-2] == '-') {
|
|
|
|
return str + i + 1;
|
|
|
|
}
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
if (i + 1 >= len) return 0;
|
|
|
|
if (str[i+1] != '-') {
|
|
|
|
i += 4;
|
|
|
|
}
|
|
|
|
else if (str[i-1] != '-') {
|
|
|
|
i += 2;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return str + i + 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
i += 3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_pragma(struct parser_params *parser, const char *str, int len)
|
2005-05-14 06:48:07 +04:00
|
|
|
{
|
|
|
|
VALUE name = 0, val = 0;
|
|
|
|
const char *beg, *end, *vbeg, *vend;
|
|
|
|
#define str_copy(_s, _p, _n) ((_s) \
|
|
|
|
? (rb_str_resize((_s), (_n)), \
|
2006-08-31 14:47:44 +04:00
|
|
|
MEMCPY(RSTRING_PTR(_s), (_p), char, (_n)), (_s)) \
|
2005-05-14 06:48:07 +04:00
|
|
|
: ((_s) = rb_str_new((_p), (_n))))
|
|
|
|
|
|
|
|
if (len <= 7) return Qfalse;
|
|
|
|
if (!(beg = pragma_marker(str, len))) return Qfalse;
|
|
|
|
if (!(end = pragma_marker(beg, str + len - beg))) return Qfalse;
|
|
|
|
str = beg;
|
|
|
|
len = end - beg - 3;
|
|
|
|
|
|
|
|
/* %r"([^\\s\'\":;]+)\\s*:\\s*(\"(?:\\\\.|[^\"])*\"|[^\"\\s;]+)[\\s;]*" */
|
|
|
|
while (len > 0) {
|
2005-06-02 18:43:10 +04:00
|
|
|
#ifndef RIPPER
|
2005-05-14 06:48:07 +04:00
|
|
|
const struct pragma *p = pragmas;
|
2005-06-02 18:43:10 +04:00
|
|
|
#endif
|
2005-05-14 06:48:07 +04:00
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
for (; len > 0 && *str; str++, --len) {
|
|
|
|
switch (*str) {
|
|
|
|
case '\'': case '"': case ':': case ';':
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!ISSPACE(*str)) break;
|
|
|
|
}
|
|
|
|
for (beg = str; len > 0; str++, --len) {
|
|
|
|
switch (*str) {
|
|
|
|
case '\'': case '"': case ':': case ';':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (ISSPACE(*str)) break;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (end = str; len > 0 && ISSPACE(*str); str++, --len);
|
|
|
|
if (!len) break;
|
|
|
|
if (*str != ':') continue;
|
|
|
|
|
|
|
|
do str++; while (--len > 0 && ISSPACE(*str));
|
|
|
|
if (!len) break;
|
|
|
|
if (*str == '"') {
|
|
|
|
for (vbeg = ++str; --len > 0 && *str != '"'; str++) {
|
|
|
|
if (*str == '\\') {
|
|
|
|
--len;
|
|
|
|
++str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vend = str;
|
|
|
|
if (len) {
|
|
|
|
--len;
|
|
|
|
++str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (vbeg = str; len > 0 && *str != '"' && !ISSPACE(*str); --len, str++);
|
|
|
|
vend = str;
|
|
|
|
}
|
|
|
|
while (len > 0 && (*str == ';' || ISSPACE(*str))) --len, str++;
|
|
|
|
|
2005-05-22 07:31:08 +04:00
|
|
|
n = end - beg;
|
|
|
|
str_copy(name, beg, n);
|
2005-05-14 06:48:07 +04:00
|
|
|
rb_funcall(name, rb_intern("downcase!"), 0);
|
2005-06-02 18:43:10 +04:00
|
|
|
#ifndef RIPPER
|
2005-05-14 06:48:07 +04:00
|
|
|
do {
|
2006-08-31 14:47:44 +04:00
|
|
|
if (strncmp(p->name, RSTRING_PTR(name), n) == 0) {
|
2005-05-14 06:48:07 +04:00
|
|
|
str_copy(val, vbeg, vend - vbeg);
|
2006-08-31 14:47:44 +04:00
|
|
|
(*p->func)(parser, RSTRING_PTR(name), RSTRING_PTR(val));
|
2005-05-14 06:48:07 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (++p < pragmas + sizeof(pragmas) / sizeof(*p));
|
2005-06-02 18:43:10 +04:00
|
|
|
#else
|
|
|
|
dispatch2(pragma, name, val);
|
|
|
|
#endif
|
2005-05-14 06:48:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_prepare(struct parser_params *parser)
|
2005-05-14 06:48:07 +04:00
|
|
|
{
|
|
|
|
int c = nextc();
|
|
|
|
switch (c) {
|
|
|
|
case '#':
|
|
|
|
if (peek('!')) parser->has_shebang = 1;
|
|
|
|
break;
|
|
|
|
case 0xef: /* UTF-8 BOM marker */
|
|
|
|
if (lex_pend - lex_p >= 2 &&
|
|
|
|
(unsigned char)lex_p[0] == 0xbb &&
|
|
|
|
(unsigned char)lex_p[1] == 0xbf) {
|
|
|
|
rb_set_kcode("UTF-8");
|
|
|
|
lex_p += 2;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case EOF:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
}
|
|
|
|
|
2003-01-31 07:00:17 +03:00
|
|
|
#define IS_ARG() (lex_state == EXPR_ARG || lex_state == EXPR_CMDARG)
|
2005-02-08 16:39:47 +03:00
|
|
|
#define IS_BEG() (lex_state == EXPR_BEG || lex_state == EXPR_MID || lex_state == EXPR_VALUE || lex_state == EXPR_CLASS)
|
2001-05-30 13:12:34 +04:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_yylex(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
register int c;
|
|
|
|
int space_seen = 0;
|
2001-05-30 13:12:34 +04:00
|
|
|
int cmd_state;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
unsigned char uc;
|
2005-10-22 08:09:24 +04:00
|
|
|
enum lex_state_e last_state;
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
|
|
|
int fallthru = Qfalse;
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
if (lex_strterm) {
|
|
|
|
int token;
|
|
|
|
if (nd_type(lex_strterm) == NODE_HEREDOC) {
|
|
|
|
token = here_document(lex_strterm);
|
|
|
|
if (token == tSTRING_END) {
|
|
|
|
lex_strterm = 0;
|
|
|
|
lex_state = EXPR_END;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
token = parse_string(lex_strterm);
|
|
|
|
if (token == tSTRING_END || token == tREGEXP_END) {
|
|
|
|
rb_gc_force_recycle((VALUE)lex_strterm);
|
|
|
|
lex_strterm = 0;
|
|
|
|
lex_state = EXPR_END;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return token;
|
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
cmd_state = command_start;
|
|
|
|
command_start = Qfalse;
|
1999-08-13 09:45:20 +04:00
|
|
|
retry:
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
|
|
|
while ((c = nextc())) {
|
2006-12-31 18:02:22 +03:00
|
|
|
switch (c) {
|
|
|
|
case ' ': case '\t': case '\f': case '\r':
|
|
|
|
case '\13': /* '\v' */
|
|
|
|
space_seen++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto outofloop;
|
|
|
|
}
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
2004-09-20 07:03:12 +04:00
|
|
|
outofloop:
|
2004-09-12 19:21:49 +04:00
|
|
|
pushback(c);
|
2004-09-20 07:03:12 +04:00
|
|
|
ripper_dispatch_scan_event(parser, tSP);
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
switch (c = nextc()) {
|
|
|
|
case '\0': /* NUL */
|
|
|
|
case '\004': /* ^D */
|
|
|
|
case '\032': /* ^Z */
|
|
|
|
case -1: /* end of script. */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* white spaces */
|
|
|
|
case ' ': case '\t': case '\f': case '\r':
|
|
|
|
case '\13': /* '\v' */
|
2000-12-12 10:42:35 +03:00
|
|
|
space_seen++;
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '#': /* it's a comment */
|
2005-05-14 06:48:07 +04:00
|
|
|
if (!parser->has_shebang || parser->line_count != 1) {
|
|
|
|
/* no pragma in shebang line */
|
|
|
|
parser_pragma(parser, lex_p, lex_pend - lex_p);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-05-14 06:48:07 +04:00
|
|
|
lex_p = lex_pend;
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
2006-12-31 18:02:22 +03:00
|
|
|
ripper_dispatch_scan_event(parser, tCOMMENT);
|
|
|
|
fallthru = Qtrue;
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
/* fall through */
|
|
|
|
case '\n':
|
1999-01-20 07:59:39 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_BEG:
|
|
|
|
case EXPR_FNAME:
|
|
|
|
case EXPR_DOT:
|
2002-03-08 10:03:09 +03:00
|
|
|
case EXPR_CLASS:
|
2005-02-08 16:39:47 +03:00
|
|
|
case EXPR_VALUE:
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
2006-12-31 18:02:22 +03:00
|
|
|
if (!fallthru) {
|
|
|
|
ripper_dispatch_scan_event(parser, tIGNORED_NL);
|
|
|
|
}
|
|
|
|
fallthru = Qfalse;
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
1999-01-20 07:59:39 +03:00
|
|
|
default:
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
command_start = Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
return '\n';
|
|
|
|
|
|
|
|
case '*':
|
|
|
|
if ((c = nextc()) == '*') {
|
2002-06-03 02:16:55 +04:00
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(tPOW);
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
2002-02-19 08:39:06 +03:00
|
|
|
c = tPOW;
|
2000-05-30 08:24:17 +04:00
|
|
|
}
|
|
|
|
else {
|
2002-02-19 08:39:06 +03:00
|
|
|
if (c == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('*');
|
2002-02-19 08:39:06 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
return tOP_ASGN;
|
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
if (IS_ARG() && space_seen && !ISSPACE(c)){
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_warning0("`*' interpreted as argument prefix");
|
2002-02-19 08:39:06 +03:00
|
|
|
c = tSTAR;
|
|
|
|
}
|
2004-03-20 19:45:41 +03:00
|
|
|
else if (IS_BEG()) {
|
2002-02-19 08:39:06 +03:00
|
|
|
c = tSTAR;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c = '*';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-05-30 08:24:17 +04:00
|
|
|
return c;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '!':
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
if ((c = nextc()) == '=') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tNEQ;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
if (c == '~') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tNMATCH;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '!';
|
|
|
|
|
|
|
|
case '=':
|
2002-12-31 01:56:21 +03:00
|
|
|
if (was_bol()) {
|
1998-01-16 15:13:05 +03:00
|
|
|
/* skip embedded rd document */
|
1999-01-20 07:59:39 +03:00
|
|
|
if (strncmp(lex_p, "begin", 5) == 0 && ISSPACE(lex_p[5])) {
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
2006-12-31 18:02:22 +03:00
|
|
|
int first_p = Qtrue;
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_goto_eol(parser);
|
|
|
|
ripper_dispatch_scan_event(parser, tEMBDOC_BEG);
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
for (;;) {
|
2004-09-20 07:03:12 +04:00
|
|
|
lex_goto_eol(parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
2006-12-31 18:02:22 +03:00
|
|
|
if (!first_p) {
|
|
|
|
ripper_dispatch_scan_event(parser, tEMBDOC);
|
|
|
|
}
|
|
|
|
first_p = Qfalse;
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
c = nextc();
|
1998-01-16 15:19:22 +03:00
|
|
|
if (c == -1) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "embedded document meets end of file");
|
1998-01-16 15:19:22 +03:00
|
|
|
return 0;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if (c != '=') continue;
|
2000-10-31 11:37:47 +03:00
|
|
|
if (strncmp(lex_p, "end", 3) == 0 &&
|
|
|
|
(lex_p + 3 == lex_pend || ISSPACE(lex_p[3]))) {
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-09-20 07:03:12 +04:00
|
|
|
lex_goto_eol(parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
2006-12-31 18:02:22 +03:00
|
|
|
ripper_dispatch_scan_event(parser, tEMBDOC_END);
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if ((c = nextc()) == '=') {
|
|
|
|
if ((c = nextc()) == '=') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tEQQ;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
1999-01-20 07:59:39 +03:00
|
|
|
return tEQ;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
if (c == '~') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tMATCH;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else if (c == '>') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tASSOC;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '=';
|
|
|
|
|
|
|
|
case '<':
|
1998-01-16 15:19:22 +03:00
|
|
|
c = nextc();
|
|
|
|
if (c == '<' &&
|
2001-06-01 10:47:32 +04:00
|
|
|
lex_state != EXPR_END &&
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state != EXPR_DOT &&
|
2005-02-22 01:25:28 +03:00
|
|
|
lex_state != EXPR_ENDARG &&
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state != EXPR_CLASS &&
|
2001-05-30 13:12:34 +04:00
|
|
|
(!IS_ARG() || space_seen)) {
|
2002-06-24 11:20:42 +04:00
|
|
|
int token = heredoc_identifier();
|
|
|
|
if (token) return token;
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
if (c == '=') {
|
1998-01-16 15:13:05 +03:00
|
|
|
if ((c = nextc()) == '>') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tCMP;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
1999-01-20 07:59:39 +03:00
|
|
|
return tLEQ;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
if (c == '<') {
|
2002-06-18 07:53:23 +04:00
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(tLSHFT);
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
1999-01-20 07:59:39 +03:00
|
|
|
return tLSHFT;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '<';
|
|
|
|
|
|
|
|
case '>':
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if ((c = nextc()) == '=') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tGEQ;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
if (c == '>') {
|
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(tRSHFT);
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
1999-01-20 07:59:39 +03:00
|
|
|
return tRSHFT;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '>';
|
|
|
|
|
|
|
|
case '"':
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_dquote, '"', 0);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tSTRING_BEG;
|
2002-06-18 10:29:07 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case '`':
|
2002-06-18 10:29:07 +04:00
|
|
|
if (lex_state == EXPR_FNAME) {
|
|
|
|
lex_state = EXPR_END;
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
if (lex_state == EXPR_DOT) {
|
2003-01-31 07:00:17 +03:00
|
|
|
if (cmd_state)
|
|
|
|
lex_state = EXPR_CMDARG;
|
|
|
|
else
|
|
|
|
lex_state = EXPR_ARG;
|
2002-06-18 10:29:07 +04:00
|
|
|
return c;
|
|
|
|
}
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_xquote, '`', 0);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tXSTRING_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '\'':
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_squote, '\'', 0);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tSTRING_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '?':
|
2005-06-30 10:20:09 +04:00
|
|
|
if (lex_state == EXPR_END ||
|
|
|
|
lex_state == EXPR_ENDARG) {
|
2005-02-08 16:39:47 +03:00
|
|
|
lex_state = EXPR_VALUE;
|
1999-01-20 07:59:39 +03:00
|
|
|
return '?';
|
|
|
|
}
|
|
|
|
c = nextc();
|
2001-08-29 10:28:51 +04:00
|
|
|
if (c == -1) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "incomplete character syntax");
|
2000-12-12 10:42:35 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned char)c;
|
2002-06-18 10:29:07 +04:00
|
|
|
if (ISSPACE(c)){
|
|
|
|
if (!IS_ARG()){
|
2002-09-04 10:37:39 +04:00
|
|
|
int c2 = 0;
|
2002-06-18 10:29:07 +04:00
|
|
|
switch (c) {
|
|
|
|
case ' ':
|
2002-09-04 10:37:39 +04:00
|
|
|
c2 = 's';
|
2002-06-18 10:29:07 +04:00
|
|
|
break;
|
|
|
|
case '\n':
|
2002-09-04 10:37:39 +04:00
|
|
|
c2 = 'n';
|
2002-06-18 10:29:07 +04:00
|
|
|
break;
|
|
|
|
case '\t':
|
2002-09-04 10:37:39 +04:00
|
|
|
c2 = 't';
|
2002-06-18 10:29:07 +04:00
|
|
|
break;
|
|
|
|
case '\v':
|
2002-09-04 10:37:39 +04:00
|
|
|
c2 = 'v';
|
|
|
|
break;
|
|
|
|
case '\r':
|
|
|
|
c2 = 'r';
|
|
|
|
break;
|
|
|
|
case '\f':
|
|
|
|
c2 = 'f';
|
2002-06-18 10:29:07 +04:00
|
|
|
break;
|
|
|
|
}
|
2002-09-04 10:37:39 +04:00
|
|
|
if (c2) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_warnI("invalid character syntax; use ?\\%c", c2);
|
2002-06-18 10:29:07 +04:00
|
|
|
}
|
|
|
|
}
|
2002-06-18 19:53:57 +04:00
|
|
|
ternary:
|
1999-01-20 07:59:39 +03:00
|
|
|
pushback(c);
|
2005-02-08 16:39:47 +03:00
|
|
|
lex_state = EXPR_VALUE;
|
1999-01-20 07:59:39 +03:00
|
|
|
return '?';
|
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
newtok();
|
|
|
|
if (ismbchar(uc)) {
|
|
|
|
int i, len = mbclen(uc)-1;
|
|
|
|
|
|
|
|
tokadd(c);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
c = nextc();
|
|
|
|
tokadd(c);
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
else if ((ISALNUM(c) || c == '_') && lex_p < lex_pend && is_identchar(*lex_p)) {
|
2002-06-18 19:53:57 +04:00
|
|
|
goto ternary;
|
|
|
|
}
|
2002-06-18 10:29:07 +04:00
|
|
|
else if (c == '\\') {
|
1998-01-16 15:13:05 +03:00
|
|
|
c = read_escape();
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
tokadd(c);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
else {
|
|
|
|
tokadd(c);
|
|
|
|
}
|
|
|
|
tokfix();
|
|
|
|
set_yylval_str(rb_str_new(tok(), toklen()));
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_END;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
return tCHAR;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '&':
|
|
|
|
if ((c = nextc()) == '&') {
|
1999-01-20 07:59:39 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(tANDOP);
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return tANDOP;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else if (c == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('&');
|
1999-01-20 07:59:39 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
2001-05-30 13:12:34 +04:00
|
|
|
if (IS_ARG() && space_seen && !ISSPACE(c)){
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_warning0("`&' interpreted as argument prefix");
|
2000-05-30 08:24:17 +04:00
|
|
|
c = tAMPER;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2004-03-20 19:45:41 +03:00
|
|
|
else if (IS_BEG()) {
|
2000-05-30 08:24:17 +04:00
|
|
|
c = tAMPER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c = '&';
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
}
|
2000-05-30 08:24:17 +04:00
|
|
|
return c;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '|':
|
|
|
|
if ((c = nextc()) == '|') {
|
2002-02-19 08:39:06 +03:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(tOROP);
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return tOROP;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
if (c == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('|');
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
if (lex_state == EXPR_FNAME || lex_state == EXPR_DOT) {
|
|
|
|
lex_state = EXPR_ARG;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c);
|
|
|
|
return '|';
|
|
|
|
|
|
|
|
case '+':
|
|
|
|
c = nextc();
|
1999-08-13 09:45:20 +04:00
|
|
|
if (lex_state == EXPR_FNAME || lex_state == EXPR_DOT) {
|
2002-02-19 08:39:06 +03:00
|
|
|
lex_state = EXPR_ARG;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (c == '@') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tUPLUS;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '+';
|
|
|
|
}
|
|
|
|
if (c == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('+');
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-03-20 19:45:41 +03:00
|
|
|
if (IS_BEG() ||
|
2001-05-30 13:12:34 +04:00
|
|
|
(IS_ARG() && space_seen && !ISSPACE(c))) {
|
|
|
|
if (IS_ARG()) arg_ambiguous();
|
2000-05-30 08:24:17 +04:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
pushback(c);
|
2000-02-26 04:16:48 +03:00
|
|
|
if (ISDIGIT(c)) {
|
|
|
|
c = '+';
|
|
|
|
goto start_num;
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return tUPLUS;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
pushback(c);
|
|
|
|
return '+';
|
|
|
|
|
|
|
|
case '-':
|
|
|
|
c = nextc();
|
1999-08-13 09:45:20 +04:00
|
|
|
if (lex_state == EXPR_FNAME || lex_state == EXPR_DOT) {
|
2002-02-19 08:39:06 +03:00
|
|
|
lex_state = EXPR_ARG;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (c == '@') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tUMINUS;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '-';
|
|
|
|
}
|
|
|
|
if (c == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('-');
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-07-27 11:27:19 +04:00
|
|
|
if (c == '>') {
|
|
|
|
lex_state = EXPR_ARG;
|
2006-12-31 18:02:22 +03:00
|
|
|
return tLAMBDA;
|
|
|
|
}
|
2004-03-20 19:45:41 +03:00
|
|
|
if (IS_BEG() ||
|
2001-05-30 13:12:34 +04:00
|
|
|
(IS_ARG() && space_seen && !ISSPACE(c))) {
|
|
|
|
if (IS_ARG()) arg_ambiguous();
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
pushback(c);
|
2000-02-01 06:12:21 +03:00
|
|
|
if (ISDIGIT(c)) {
|
2003-01-23 06:39:25 +03:00
|
|
|
return tUMINUS_NUM;
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return tUMINUS;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
pushback(c);
|
|
|
|
return '-';
|
|
|
|
|
|
|
|
case '.':
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
if ((c = nextc()) == '.') {
|
|
|
|
if ((c = nextc()) == '.') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tDOT3;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
1999-01-20 07:59:39 +03:00
|
|
|
return tDOT2;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
2003-02-05 11:11:27 +03:00
|
|
|
if (ISDIGIT(c)) {
|
2003-02-20 23:40:20 +03:00
|
|
|
yyerror("no .<digit> floating literal anymore; put 0 before dot");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-02-05 11:11:27 +03:00
|
|
|
lex_state = EXPR_DOT;
|
|
|
|
return '.';
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
start_num:
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
|
|
|
{
|
2002-01-28 12:33:56 +03:00
|
|
|
int is_float, seen_point, seen_e, nondigit;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-01-28 12:33:56 +03:00
|
|
|
is_float = seen_point = seen_e = nondigit = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_END;
|
|
|
|
newtok();
|
|
|
|
if (c == '-' || c == '+') {
|
|
|
|
tokadd(c);
|
|
|
|
c = nextc();
|
|
|
|
}
|
|
|
|
if (c == '0') {
|
2002-01-28 12:33:56 +03:00
|
|
|
int start = toklen();
|
1998-01-16 15:13:05 +03:00
|
|
|
c = nextc();
|
|
|
|
if (c == 'x' || c == 'X') {
|
|
|
|
/* hexadecimal */
|
1999-08-13 09:45:20 +04:00
|
|
|
c = nextc();
|
2002-01-28 12:33:56 +03:00
|
|
|
if (ISXDIGIT(c)) {
|
|
|
|
do {
|
|
|
|
if (c == '_') {
|
|
|
|
if (nondigit) break;
|
|
|
|
nondigit = c;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!ISXDIGIT(c)) break;
|
|
|
|
nondigit = 0;
|
|
|
|
tokadd(c);
|
2002-09-23 19:48:42 +04:00
|
|
|
} while ((c = nextc()) != -1);
|
2002-01-28 12:33:56 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c);
|
|
|
|
tokfix();
|
2002-01-28 12:33:56 +03:00
|
|
|
if (toklen() == start) {
|
2002-07-26 10:12:39 +04:00
|
|
|
yyerror("numeric literal without digits");
|
2000-12-22 06:22:25 +03:00
|
|
|
}
|
2002-01-28 12:33:56 +03:00
|
|
|
else if (nondigit) goto trailing_uc;
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_literal(rb_cstr_to_inum(tok(), 16, Qfalse));
|
1999-01-20 07:59:39 +03:00
|
|
|
return tINTEGER;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
if (c == 'b' || c == 'B') {
|
|
|
|
/* binary */
|
|
|
|
c = nextc();
|
2002-01-28 12:33:56 +03:00
|
|
|
if (c == '0' || c == '1') {
|
|
|
|
do {
|
|
|
|
if (c == '_') {
|
|
|
|
if (nondigit) break;
|
|
|
|
nondigit = c;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c != '0' && c != '1') break;
|
|
|
|
nondigit = 0;
|
|
|
|
tokadd(c);
|
2002-09-23 19:48:42 +04:00
|
|
|
} while ((c = nextc()) != -1);
|
2002-01-28 12:33:56 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
pushback(c);
|
|
|
|
tokfix();
|
2002-01-28 12:33:56 +03:00
|
|
|
if (toklen() == start) {
|
2000-12-22 06:22:25 +03:00
|
|
|
yyerror("numeric literal without digits");
|
|
|
|
}
|
2002-01-28 12:33:56 +03:00
|
|
|
else if (nondigit) goto trailing_uc;
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_literal(rb_cstr_to_inum(tok(), 2, Qfalse));
|
1999-08-13 09:45:20 +04:00
|
|
|
return tINTEGER;
|
|
|
|
}
|
2002-07-26 10:12:39 +04:00
|
|
|
if (c == 'd' || c == 'D') {
|
|
|
|
/* decimal */
|
|
|
|
c = nextc();
|
|
|
|
if (ISDIGIT(c)) {
|
|
|
|
do {
|
|
|
|
if (c == '_') {
|
|
|
|
if (nondigit) break;
|
|
|
|
nondigit = c;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!ISDIGIT(c)) break;
|
|
|
|
nondigit = 0;
|
|
|
|
tokadd(c);
|
2002-09-23 19:48:42 +04:00
|
|
|
} while ((c = nextc()) != -1);
|
2002-07-26 10:12:39 +04:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
tokfix();
|
|
|
|
if (toklen() == start) {
|
|
|
|
yyerror("numeric literal without digits");
|
|
|
|
}
|
|
|
|
else if (nondigit) goto trailing_uc;
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_literal(rb_cstr_to_inum(tok(), 10, Qfalse));
|
2002-07-26 10:12:39 +04:00
|
|
|
return tINTEGER;
|
|
|
|
}
|
|
|
|
if (c == '_') {
|
|
|
|
/* 0_0 */
|
|
|
|
goto octal_number;
|
|
|
|
}
|
|
|
|
if (c == 'o' || c == 'O') {
|
|
|
|
/* prefixed octal */
|
|
|
|
c = nextc();
|
|
|
|
if (c == '_') {
|
|
|
|
yyerror("numeric literal without digits");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (c >= '0' && c <= '7') {
|
1999-08-13 09:45:20 +04:00
|
|
|
/* octal */
|
2002-07-26 10:12:39 +04:00
|
|
|
octal_number:
|
2006-12-31 18:02:22 +03:00
|
|
|
do {
|
2000-12-22 06:22:25 +03:00
|
|
|
if (c == '_') {
|
2002-01-28 12:33:56 +03:00
|
|
|
if (nondigit) break;
|
|
|
|
nondigit = c;
|
2000-12-22 06:22:25 +03:00
|
|
|
continue;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
if (c < '0' || c > '7') break;
|
2002-01-28 12:33:56 +03:00
|
|
|
nondigit = 0;
|
1999-08-13 09:45:20 +04:00
|
|
|
tokadd(c);
|
2002-09-23 19:48:42 +04:00
|
|
|
} while ((c = nextc()) != -1);
|
2002-01-28 12:33:56 +03:00
|
|
|
if (toklen() > start) {
|
|
|
|
pushback(c);
|
|
|
|
tokfix();
|
|
|
|
if (nondigit) goto trailing_uc;
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_literal(rb_cstr_to_inum(tok(), 8, Qfalse));
|
2002-01-28 12:33:56 +03:00
|
|
|
return tINTEGER;
|
|
|
|
}
|
2002-06-10 14:06:12 +04:00
|
|
|
if (nondigit) {
|
|
|
|
pushback(c);
|
|
|
|
goto trailing_uc;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
if (c > '7' && c <= '9') {
|
1998-01-16 15:19:22 +03:00
|
|
|
yyerror("Illegal octal digit");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-01-28 12:33:56 +03:00
|
|
|
else if (c == '.' || c == 'e' || c == 'E') {
|
1998-01-16 15:13:05 +03:00
|
|
|
tokadd('0');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pushback(c);
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_literal(INT2FIX(0));
|
1999-01-20 07:59:39 +03:00
|
|
|
return tINTEGER;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
switch (c) {
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
2002-01-28 12:33:56 +03:00
|
|
|
nondigit = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
tokadd(c);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '.':
|
2002-01-28 12:33:56 +03:00
|
|
|
if (nondigit) goto trailing_uc;
|
1999-01-20 07:59:39 +03:00
|
|
|
if (seen_point || seen_e) {
|
1998-01-16 15:13:05 +03:00
|
|
|
goto decode_num;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int c0 = nextc();
|
1999-01-20 07:59:39 +03:00
|
|
|
if (!ISDIGIT(c0)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c0);
|
|
|
|
goto decode_num;
|
|
|
|
}
|
|
|
|
c = c0;
|
|
|
|
}
|
|
|
|
tokadd('.');
|
|
|
|
tokadd(c);
|
|
|
|
is_float++;
|
|
|
|
seen_point++;
|
2002-01-28 12:33:56 +03:00
|
|
|
nondigit = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'e':
|
|
|
|
case 'E':
|
2002-01-28 12:33:56 +03:00
|
|
|
if (nondigit) {
|
|
|
|
pushback(c);
|
|
|
|
c = nondigit;
|
|
|
|
goto decode_num;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if (seen_e) {
|
|
|
|
goto decode_num;
|
|
|
|
}
|
|
|
|
tokadd(c);
|
|
|
|
seen_e++;
|
|
|
|
is_float++;
|
2002-01-28 12:33:56 +03:00
|
|
|
nondigit = c;
|
|
|
|
c = nextc();
|
|
|
|
if (c != '-' && c != '+') continue;
|
|
|
|
tokadd(c);
|
|
|
|
nondigit = c;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
2000-12-22 06:22:25 +03:00
|
|
|
case '_': /* `_' in number just ignored */
|
2002-01-28 12:33:56 +03:00
|
|
|
if (nondigit) goto decode_num;
|
|
|
|
nondigit = c;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
goto decode_num;
|
|
|
|
}
|
|
|
|
c = nextc();
|
|
|
|
}
|
|
|
|
|
|
|
|
decode_num:
|
|
|
|
pushback(c);
|
|
|
|
tokfix();
|
2002-01-28 12:33:56 +03:00
|
|
|
if (nondigit) {
|
|
|
|
char tmp[30];
|
2000-12-22 06:22:25 +03:00
|
|
|
trailing_uc:
|
2002-01-28 12:33:56 +03:00
|
|
|
sprintf(tmp, "trailing `%c' in number", nondigit);
|
|
|
|
yyerror(tmp);
|
2000-12-22 06:22:25 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if (is_float) {
|
1999-08-13 09:45:20 +04:00
|
|
|
double d = strtod(tok(), 0);
|
|
|
|
if (errno == ERANGE) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_warnS("Float %s out of range", tok());
|
1999-08-13 09:45:20 +04:00
|
|
|
errno = 0;
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_literal(rb_float_new(d));
|
1999-01-20 07:59:39 +03:00
|
|
|
return tFLOAT;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_literal(rb_cstr_to_inum(tok(), 10, Qfalse));
|
1999-01-20 07:59:39 +03:00
|
|
|
return tINTEGER;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2005-08-12 12:13:28 +04:00
|
|
|
case ')':
|
1998-01-16 15:13:05 +03:00
|
|
|
case ']':
|
2005-08-20 19:44:54 +04:00
|
|
|
paren_nest--;
|
1998-01-16 15:13:05 +03:00
|
|
|
case '}':
|
2001-05-30 13:12:34 +04:00
|
|
|
COND_LEXPOP();
|
|
|
|
CMDARG_LEXPOP();
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_END;
|
|
|
|
return c;
|
|
|
|
|
|
|
|
case ':':
|
|
|
|
c = nextc();
|
|
|
|
if (c == ':') {
|
2004-03-20 19:45:41 +03:00
|
|
|
if (IS_BEG() ||
|
2003-08-14 21:20:14 +04:00
|
|
|
lex_state == EXPR_CLASS || (IS_ARG() && space_seen)) {
|
1999-01-20 07:59:39 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
return tCOLON3;
|
|
|
|
}
|
|
|
|
lex_state = EXPR_DOT;
|
|
|
|
return tCOLON2;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
if (lex_state == EXPR_END ||
|
2005-06-30 10:20:09 +04:00
|
|
|
lex_state == EXPR_ENDARG || ISSPACE(c)) {
|
2002-10-23 14:17:30 +04:00
|
|
|
pushback(c);
|
1999-01-20 07:59:39 +03:00
|
|
|
lex_state = EXPR_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
return ':';
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2002-10-23 14:17:30 +04:00
|
|
|
switch (c) {
|
|
|
|
case '\'':
|
|
|
|
lex_strterm = NEW_STRTERM(str_ssym, c, 0);
|
|
|
|
break;
|
|
|
|
case '"':
|
|
|
|
lex_strterm = NEW_STRTERM(str_dsym, c, 0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pushback(c);
|
|
|
|
break;
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
lex_state = EXPR_FNAME;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tSYMBEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '/':
|
2004-03-20 19:45:41 +03:00
|
|
|
if (IS_BEG()) {
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_regexp, '/', 0);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tREGEXP_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('/');
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-05-30 08:24:17 +04:00
|
|
|
pushback(c);
|
2001-05-30 13:12:34 +04:00
|
|
|
if (IS_ARG() && space_seen) {
|
2000-05-30 08:24:17 +04:00
|
|
|
if (!ISSPACE(c)) {
|
2000-12-12 10:42:35 +03:00
|
|
|
arg_ambiguous();
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_regexp, '/', 0);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tREGEXP_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
return '/';
|
|
|
|
|
|
|
|
case '^':
|
2000-11-10 10:16:52 +03:00
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('^');
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c);
|
2000-11-10 10:16:52 +03:00
|
|
|
return '^';
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case ';':
|
2005-06-12 20:56:06 +04:00
|
|
|
lex_state = EXPR_BEG;
|
2001-05-30 13:12:34 +04:00
|
|
|
command_start = Qtrue;
|
2005-06-12 20:56:06 +04:00
|
|
|
return ';';
|
|
|
|
|
2001-05-30 13:12:34 +04:00
|
|
|
case ',':
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_BEG;
|
2005-06-12 20:56:06 +04:00
|
|
|
return ',';
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '~':
|
1999-08-13 09:45:20 +04:00
|
|
|
if (lex_state == EXPR_FNAME || lex_state == EXPR_DOT) {
|
1998-01-16 15:13:05 +03:00
|
|
|
if ((c = nextc()) != '@') {
|
|
|
|
pushback(c);
|
|
|
|
}
|
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
return '~';
|
|
|
|
|
|
|
|
case '(':
|
2004-03-20 19:45:41 +03:00
|
|
|
if (IS_BEG()) {
|
1999-01-20 07:59:39 +03:00
|
|
|
c = tLPAREN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
else if (space_seen) {
|
2003-01-31 07:00:17 +03:00
|
|
|
if (lex_state == EXPR_CMDARG) {
|
|
|
|
c = tLPAREN_ARG;
|
|
|
|
}
|
|
|
|
else if (lex_state == EXPR_ARG) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
rb_warning0("don't put space before argument parentheses");
|
2003-10-15 06:27:56 +04:00
|
|
|
c = '(';
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-08-12 12:13:28 +04:00
|
|
|
paren_nest++;
|
2001-05-30 13:12:34 +04:00
|
|
|
COND_PUSH(0);
|
|
|
|
CMDARG_PUSH(0);
|
2000-05-30 08:24:17 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
return c;
|
|
|
|
|
|
|
|
case '[':
|
2005-08-20 19:44:54 +04:00
|
|
|
paren_nest++;
|
1999-08-13 09:45:20 +04:00
|
|
|
if (lex_state == EXPR_FNAME || lex_state == EXPR_DOT) {
|
2002-02-19 08:39:06 +03:00
|
|
|
lex_state = EXPR_ARG;
|
1998-01-16 15:13:05 +03:00
|
|
|
if ((c = nextc()) == ']') {
|
|
|
|
if ((c = nextc()) == '=') {
|
1999-01-20 07:59:39 +03:00
|
|
|
return tASET;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
1999-01-20 07:59:39 +03:00
|
|
|
return tAREF;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '[';
|
|
|
|
}
|
2004-03-20 19:45:41 +03:00
|
|
|
else if (IS_BEG()) {
|
1999-01-20 07:59:39 +03:00
|
|
|
c = tLBRACK;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
else if (IS_ARG() && space_seen) {
|
1999-01-20 07:59:39 +03:00
|
|
|
c = tLBRACK;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
lex_state = EXPR_BEG;
|
2001-05-30 13:12:34 +04:00
|
|
|
COND_PUSH(0);
|
|
|
|
CMDARG_PUSH(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
return c;
|
|
|
|
|
|
|
|
case '{':
|
2005-08-12 12:13:28 +04:00
|
|
|
if (lpar_beg && lpar_beg == paren_nest) {
|
|
|
|
lex_state = EXPR_BEG;
|
2005-08-16 19:24:15 +04:00
|
|
|
lpar_beg = 0;
|
|
|
|
--paren_nest;
|
2005-08-12 12:13:28 +04:00
|
|
|
return tLAMBEG;
|
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
if (IS_ARG() || lex_state == EXPR_END)
|
2006-12-31 18:02:22 +03:00
|
|
|
c = '{'; /* block (primary) */
|
2002-07-26 07:13:06 +04:00
|
|
|
else if (lex_state == EXPR_ENDARG)
|
|
|
|
c = tLBRACE_ARG; /* block (expr) */
|
|
|
|
else
|
|
|
|
c = tLBRACE; /* hash */
|
2001-05-30 13:12:34 +04:00
|
|
|
COND_PUSH(0);
|
|
|
|
CMDARG_PUSH(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
return c;
|
|
|
|
|
|
|
|
case '\\':
|
|
|
|
c = nextc();
|
|
|
|
if (c == '\n') {
|
|
|
|
space_seen = 1;
|
2004-09-20 07:03:12 +04:00
|
|
|
#ifdef RIPPER
|
|
|
|
ripper_dispatch_scan_event(parser, tSP);
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry; /* skip \\n */
|
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
return '\\';
|
|
|
|
|
|
|
|
case '%':
|
2004-03-20 19:45:41 +03:00
|
|
|
if (IS_BEG()) {
|
1998-01-16 15:13:05 +03:00
|
|
|
int term;
|
1999-01-20 07:59:39 +03:00
|
|
|
int paren;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
c = nextc();
|
|
|
|
quotation:
|
1999-01-20 07:59:39 +03:00
|
|
|
if (!ISALNUM(c)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
term = c;
|
1999-01-20 07:59:39 +03:00
|
|
|
c = 'Q';
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
term = nextc();
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned char)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
if (ISALNUM(term) || ismbchar(uc)) {
|
2001-10-15 19:15:45 +04:00
|
|
|
yyerror("unknown type of %string");
|
|
|
|
return 0;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
if (c == -1 || term == -1) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "unterminated quoted string meets end of file");
|
1998-01-16 15:13:05 +03:00
|
|
|
return 0;
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
paren = term;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (term == '(') term = ')';
|
|
|
|
else if (term == '[') term = ']';
|
|
|
|
else if (term == '{') term = '}';
|
|
|
|
else if (term == '<') term = '>';
|
1999-08-13 09:45:20 +04:00
|
|
|
else paren = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case 'Q':
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_dquote, term, paren);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tSTRING_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'q':
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_squote, term, paren);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tSTRING_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2002-06-26 12:01:00 +04:00
|
|
|
case 'W':
|
2006-10-17 19:56:28 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_dword, term, paren);
|
2002-06-26 12:01:00 +04:00
|
|
|
do {c = nextc();} while (ISSPACE(c));
|
|
|
|
pushback(c);
|
|
|
|
return tWORDS_BEG;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
case 'w':
|
2006-10-17 19:56:28 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_sword, term, paren);
|
2002-06-26 12:01:00 +04:00
|
|
|
do {c = nextc();} while (ISSPACE(c));
|
|
|
|
pushback(c);
|
|
|
|
return tQWORDS_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'x':
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_xquote, term, paren);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tXSTRING_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case 'r':
|
2002-06-26 12:01:00 +04:00
|
|
|
lex_strterm = NEW_STRTERM(str_regexp, term, paren);
|
2002-06-24 11:20:42 +04:00
|
|
|
return tREGEXP_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-10-23 14:17:30 +04:00
|
|
|
case 's':
|
|
|
|
lex_strterm = NEW_STRTERM(str_ssym, term, paren);
|
|
|
|
lex_state = EXPR_FNAME;
|
|
|
|
return tSYMBEG;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
default:
|
1999-01-20 07:59:39 +03:00
|
|
|
yyerror("unknown type of %string");
|
1998-01-16 15:13:05 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((c = nextc()) == '=') {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id('%');
|
2002-06-18 10:29:07 +04:00
|
|
|
lex_state = EXPR_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
return tOP_ASGN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
if (IS_ARG() && space_seen && !ISSPACE(c)) {
|
1999-08-13 09:45:20 +04:00
|
|
|
goto quotation;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-02-19 08:39:06 +03:00
|
|
|
switch (lex_state) {
|
|
|
|
case EXPR_FNAME: case EXPR_DOT:
|
|
|
|
lex_state = EXPR_ARG; break;
|
|
|
|
default:
|
|
|
|
lex_state = EXPR_BEG; break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c);
|
|
|
|
return '%';
|
|
|
|
|
|
|
|
case '$':
|
2005-10-22 08:09:24 +04:00
|
|
|
last_state = lex_state;
|
1998-01-16 15:13:05 +03:00
|
|
|
lex_state = EXPR_END;
|
|
|
|
newtok();
|
|
|
|
c = nextc();
|
|
|
|
switch (c) {
|
1998-01-16 15:19:22 +03:00
|
|
|
case '_': /* $_: last read line string */
|
2000-09-15 10:00:30 +04:00
|
|
|
c = nextc();
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned char)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
if (is_identchar(uc)) {
|
2000-09-15 10:00:30 +04:00
|
|
|
tokadd('$');
|
|
|
|
tokadd('_');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pushback(c);
|
|
|
|
c = '_';
|
2000-09-19 11:54:28 +04:00
|
|
|
/* fall through */
|
|
|
|
case '~': /* $~: match-data */
|
2005-10-20 17:15:19 +04:00
|
|
|
(void)local_cnt(c);
|
1998-01-16 15:13:05 +03:00
|
|
|
/* fall through */
|
|
|
|
case '*': /* $*: argv */
|
|
|
|
case '$': /* $$: pid */
|
|
|
|
case '?': /* $?: last status */
|
|
|
|
case '!': /* $!: error string */
|
|
|
|
case '@': /* $@: error position */
|
|
|
|
case '/': /* $/: input record separator */
|
|
|
|
case '\\': /* $\: output record separator */
|
|
|
|
case ';': /* $;: field separator */
|
|
|
|
case ',': /* $,: output field separator */
|
|
|
|
case '.': /* $.: last read line number */
|
|
|
|
case '=': /* $=: ignorecase */
|
|
|
|
case ':': /* $:: load path */
|
|
|
|
case '<': /* $<: reading filename */
|
|
|
|
case '>': /* $>: default output handle */
|
|
|
|
case '\"': /* $": already loaded files */
|
|
|
|
tokadd('$');
|
|
|
|
tokadd(c);
|
|
|
|
tokfix();
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(rb_intern(tok()));
|
1999-01-20 07:59:39 +03:00
|
|
|
return tGVAR;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '-':
|
|
|
|
tokadd('$');
|
|
|
|
tokadd(c);
|
|
|
|
c = nextc();
|
2005-10-22 08:09:24 +04:00
|
|
|
uc = (unsigned char)c;
|
|
|
|
if (is_identchar(uc)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
tokadd(c);
|
2005-10-22 08:09:24 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
pushback(c);
|
|
|
|
}
|
|
|
|
gvar:
|
1998-01-16 15:13:05 +03:00
|
|
|
tokfix();
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(rb_intern(tok()));
|
2004-10-31 08:22:58 +03:00
|
|
|
if (!is_global_id(yylval_id())) {
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_compile_error(PARSER_ARG "invalid global variable `%s'", rb_id2name(yylval.id));
|
2004-03-03 07:55:35 +03:00
|
|
|
return 0;
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return tGVAR;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '&': /* $&: last match */
|
|
|
|
case '`': /* $`: string before last match */
|
|
|
|
case '\'': /* $': string after last match */
|
|
|
|
case '+': /* $+: string matches last paren. */
|
2005-10-22 08:09:24 +04:00
|
|
|
if (last_state == EXPR_FNAME) {
|
|
|
|
tokadd('$');
|
|
|
|
tokadd(c);
|
|
|
|
goto gvar;
|
|
|
|
}
|
2004-10-31 08:22:58 +03:00
|
|
|
set_yylval_node(NEW_BACK_REF(c));
|
1999-01-20 07:59:39 +03:00
|
|
|
return tBACK_REF;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case '1': case '2': case '3':
|
|
|
|
case '4': case '5': case '6':
|
|
|
|
case '7': case '8': case '9':
|
2000-05-09 08:53:16 +04:00
|
|
|
tokadd('$');
|
2002-12-31 01:56:21 +03:00
|
|
|
do {
|
1998-01-16 15:13:05 +03:00
|
|
|
tokadd(c);
|
|
|
|
c = nextc();
|
2002-12-31 01:56:21 +03:00
|
|
|
} while (ISDIGIT(c));
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c);
|
2005-10-22 08:09:24 +04:00
|
|
|
if (last_state == EXPR_FNAME) goto gvar;
|
1998-01-16 15:13:05 +03:00
|
|
|
tokfix();
|
2004-10-31 08:22:58 +03:00
|
|
|
set_yylval_node(NEW_NTH_REF(atoi(tok()+1)));
|
1999-01-20 07:59:39 +03:00
|
|
|
return tNTH_REF;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
default:
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned char)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
if (!is_identchar(uc)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c);
|
|
|
|
return '$';
|
|
|
|
}
|
|
|
|
case '0':
|
|
|
|
tokadd('$');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '@':
|
|
|
|
c = nextc();
|
2000-02-18 09:59:36 +03:00
|
|
|
newtok();
|
|
|
|
tokadd('@');
|
|
|
|
if (c == '@') {
|
|
|
|
tokadd('@');
|
|
|
|
c = nextc();
|
|
|
|
}
|
2000-07-11 12:27:06 +04:00
|
|
|
if (ISDIGIT(c)) {
|
2002-06-13 07:55:44 +04:00
|
|
|
if (tokidx == 1) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "`@%c' is not allowed as an instance variable name", c);
|
2002-06-13 07:55:44 +04:00
|
|
|
}
|
|
|
|
else {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "`@@%c' is not allowed as a class variable name", c);
|
2002-06-13 07:55:44 +04:00
|
|
|
}
|
2000-07-11 12:27:06 +04:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned char)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
if (!is_identchar(uc)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
pushback(c);
|
|
|
|
return '@';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-12-30 21:19:08 +03:00
|
|
|
case '_':
|
2002-12-31 01:56:21 +03:00
|
|
|
if (was_bol() && whole_match_p("__END__", 7, 0)) {
|
2002-12-30 21:19:08 +03:00
|
|
|
ruby__end__seen = 1;
|
|
|
|
lex_lastline = 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifndef RIPPER
|
2002-12-30 21:19:08 +03:00
|
|
|
return -1;
|
2004-09-12 19:21:49 +04:00
|
|
|
#else
|
2006-12-31 18:02:22 +03:00
|
|
|
lex_goto_eol(parser);
|
|
|
|
ripper_dispatch_scan_event(parser, k__END__);
|
|
|
|
return 0;
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif
|
2002-12-30 21:19:08 +03:00
|
|
|
}
|
|
|
|
newtok();
|
|
|
|
break;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
default:
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
uc = (unsigned char)c;
|
|
|
|
if (!is_identchar(uc)) {
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_compile_error(PARSER_ARG "Invalid char `\\%03o' in expression", c);
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
|
|
|
newtok();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
uc = (unsigned char)c;
|
2002-12-31 01:56:21 +03:00
|
|
|
do {
|
1998-01-16 15:13:05 +03:00
|
|
|
tokadd(c);
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
if (ismbchar(uc)) {
|
|
|
|
int i, len = mbclen(uc)-1;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
c = nextc();
|
|
|
|
tokadd(c);
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
c = nextc();
|
2006-12-31 18:02:22 +03:00
|
|
|
uc = (unsigned char)c;
|
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c, regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c, regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as its argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-04 17:43:08 +03:00
|
|
|
} while (is_identchar(uc));
|
1999-08-13 09:45:20 +04:00
|
|
|
if ((c == '!' || c == '?') && is_identchar(tok()[0]) && !peek('=')) {
|
1998-01-16 15:13:05 +03:00
|
|
|
tokadd(c);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pushback(c);
|
|
|
|
}
|
|
|
|
tokfix();
|
|
|
|
|
|
|
|
{
|
2000-01-17 11:37:53 +03:00
|
|
|
int result = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-10-22 08:09:24 +04:00
|
|
|
last_state = lex_state;
|
1998-01-16 15:13:05 +03:00
|
|
|
switch (tok()[0]) {
|
|
|
|
case '$':
|
|
|
|
lex_state = EXPR_END;
|
1999-01-20 07:59:39 +03:00
|
|
|
result = tGVAR;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case '@':
|
|
|
|
lex_state = EXPR_END;
|
2000-02-18 09:59:36 +03:00
|
|
|
if (tok()[1] == '@')
|
2000-03-23 11:37:35 +03:00
|
|
|
result = tCVAR;
|
2000-02-18 09:59:36 +03:00
|
|
|
else
|
|
|
|
result = tIVAR;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
2001-09-05 10:54:57 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
default:
|
2001-09-05 10:54:57 +04:00
|
|
|
if (toklast() == '!' || toklast() == '?') {
|
|
|
|
result = tFID;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (lex_state == EXPR_FNAME) {
|
|
|
|
if ((c = nextc()) == '=' && !peek('~') && !peek('>') &&
|
2002-09-23 19:48:42 +04:00
|
|
|
(!peek('=') || (lex_p + 1 < lex_pend && lex_p[1] == '>'))) {
|
2001-09-05 10:54:57 +04:00
|
|
|
result = tIDENTIFIER;
|
|
|
|
tokadd(c);
|
2003-05-21 20:01:49 +04:00
|
|
|
tokfix();
|
2001-09-05 10:54:57 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
pushback(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (result == 0 && ISUPPER(tok()[0])) {
|
|
|
|
result = tCONSTANT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = tIDENTIFIER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (lex_state != EXPR_DOT) {
|
2005-07-13 17:44:21 +04:00
|
|
|
const struct kwtable *kw;
|
2001-09-05 10:54:57 +04:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
/* See if it is a reserved word. */
|
|
|
|
kw = rb_reserved_word(tok(), toklen());
|
|
|
|
if (kw) {
|
2004-09-12 19:21:49 +04:00
|
|
|
enum lex_state_e state = lex_state;
|
1999-08-13 09:45:20 +04:00
|
|
|
lex_state = kw->state;
|
|
|
|
if (state == EXPR_FNAME) {
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(rb_intern(kw->name));
|
2006-06-17 18:50:04 +04:00
|
|
|
return kw->id[0];
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
if (kw->id[0] == keyword_do) {
|
2005-08-12 12:13:28 +04:00
|
|
|
if (lpar_beg && lpar_beg == paren_nest) {
|
2005-08-16 19:24:15 +04:00
|
|
|
lpar_beg = 0;
|
|
|
|
--paren_nest;
|
2006-06-26 18:15:49 +04:00
|
|
|
return keyword_do_LAMBDA;
|
2005-08-12 12:13:28 +04:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
if (COND_P()) return keyword_do_cond;
|
2003-01-31 07:00:17 +03:00
|
|
|
if (CMDARG_P() && state != EXPR_CMDARG)
|
2006-06-26 18:15:49 +04:00
|
|
|
return keyword_do_block;
|
2005-03-02 06:21:31 +03:00
|
|
|
if (state == EXPR_ENDARG || state == EXPR_BEG)
|
2006-06-26 18:15:49 +04:00
|
|
|
return keyword_do_block;
|
|
|
|
return keyword_do;
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2005-02-08 16:39:47 +03:00
|
|
|
if (state == EXPR_BEG || state == EXPR_VALUE)
|
2001-05-02 08:22:21 +04:00
|
|
|
return kw->id[0];
|
|
|
|
else {
|
|
|
|
if (kw->id[0] != kw->id[1])
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
return kw->id[1];
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2005-06-07 12:22:42 +04:00
|
|
|
if ((lex_state == EXPR_BEG && !cmd_state) ||
|
2003-01-31 07:00:17 +03:00
|
|
|
lex_state == EXPR_ARG ||
|
|
|
|
lex_state == EXPR_CMDARG) {
|
2004-03-20 19:45:41 +03:00
|
|
|
if (peek(':') && !(lex_p + 1 < lex_pend && lex_p[1] == ':')) {
|
|
|
|
lex_state = EXPR_BEG;
|
|
|
|
nextc();
|
2004-10-31 08:22:58 +03:00
|
|
|
set_yylval_id(rb_intern(tok()));
|
2004-03-20 19:45:41 +03:00
|
|
|
return tLABEL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (IS_BEG() ||
|
|
|
|
lex_state == EXPR_DOT ||
|
|
|
|
IS_ARG()) {
|
2003-01-31 07:00:17 +03:00
|
|
|
if (cmd_state) {
|
|
|
|
lex_state = EXPR_CMDARG;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lex_state = EXPR_ARG;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
lex_state = EXPR_END;
|
|
|
|
}
|
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
|
|
|
ID ident = rb_intern(tok());
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
set_yylval_id(ident);
|
|
|
|
if (last_state != EXPR_DOT && is_local_id(ident) && lvar_defined(ident)) {
|
|
|
|
lex_state = EXPR_END;
|
|
|
|
}
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
#if YYPURE
|
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
yylex(void *lval, void *p)
|
2004-09-17 13:24:13 +04:00
|
|
|
#else
|
2005-09-26 16:01:29 +04:00
|
|
|
yylex(void *p)
|
2004-09-17 13:24:13 +04:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
struct parser_params *parser = (struct parser_params*)p;
|
|
|
|
int t;
|
|
|
|
|
|
|
|
#if YYPURE
|
|
|
|
parser->parser_yylval = (union tmpyystype*)lval;
|
|
|
|
parser->parser_yylval->val = Qundef;
|
|
|
|
#endif
|
|
|
|
t = parser_yylex(parser);
|
|
|
|
#ifdef RIPPER
|
2004-09-20 11:59:30 +04:00
|
|
|
if (!NIL_P(parser->delayed)) {
|
|
|
|
ripper_dispatch_delayed_token(parser, t);
|
|
|
|
return t;
|
|
|
|
}
|
2004-09-20 09:51:13 +04:00
|
|
|
if (t != 0)
|
2004-09-20 07:03:12 +04:00
|
|
|
ripper_dispatch_scan_event(parser, t);
|
2004-09-17 13:24:13 +04:00
|
|
|
#endif
|
2004-09-20 07:03:12 +04:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifndef RIPPER
|
1998-01-16 15:13:05 +03:00
|
|
|
NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_node_newnode(enum node_type type, VALUE a0, VALUE a1, VALUE a2)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
NODE *n = (NODE*)rb_newobj();
|
|
|
|
|
|
|
|
n->flags |= T_NODE;
|
|
|
|
nd_set_type(n, type);
|
1999-01-20 07:59:39 +03:00
|
|
|
nd_set_line(n, ruby_sourceline);
|
|
|
|
n->nd_file = ruby_sourcefile;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-07-04 19:30:35 +04:00
|
|
|
n->u1.value = a0;
|
|
|
|
n->u2.value = a1;
|
|
|
|
n->u3.value = a2;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
enum node_type
|
2005-09-26 16:01:29 +04:00
|
|
|
nodetype(NODE *node) /* for debug */
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
return (enum node_type)nd_type(node);
|
|
|
|
}
|
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
int
|
2005-09-26 16:01:29 +04:00
|
|
|
nodeline(NODE *node)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
return nd_line(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
newline_node(NODE *node)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-11-18 06:45:23 +03:00
|
|
|
if (node) {
|
|
|
|
node->flags |= NODE_NEWLINE;
|
|
|
|
}
|
2004-01-21 19:47:23 +03:00
|
|
|
return node;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
fixpos(NODE *node, NODE *orig)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
if (!node) return;
|
|
|
|
if (!orig) return;
|
2002-01-18 17:24:01 +03:00
|
|
|
if (orig == (NODE*)1) return;
|
1998-01-16 15:19:22 +03:00
|
|
|
node->nd_file = orig->nd_file;
|
1998-01-16 15:13:05 +03:00
|
|
|
nd_set_line(node, nd_line(orig));
|
|
|
|
}
|
|
|
|
|
2003-04-21 12:44:38 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_warning(NODE *node, const char *mesg)
|
2003-04-21 12:44:38 +04:00
|
|
|
{
|
|
|
|
int line = ruby_sourceline;
|
|
|
|
ruby_sourceline = nd_line(node);
|
2006-10-14 18:33:10 +04:00
|
|
|
rb_warning("%s", mesg);
|
2003-04-21 12:44:38 +04:00
|
|
|
ruby_sourceline = line;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_warn(NODE *node, const char *mesg)
|
2003-04-21 12:44:38 +04:00
|
|
|
{
|
|
|
|
int line = ruby_sourceline;
|
|
|
|
ruby_sourceline = nd_line(node);
|
2006-10-14 18:33:10 +04:00
|
|
|
rb_warn("%s", mesg);
|
2003-04-21 12:44:38 +04:00
|
|
|
ruby_sourceline = line;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
block_append(NODE *head, NODE *tail)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-02-03 05:23:20 +03:00
|
|
|
NODE *end, *h = head, *nd;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
if (tail == 0) return head;
|
|
|
|
|
2002-09-20 18:03:45 +04:00
|
|
|
if (h == 0) return tail;
|
|
|
|
switch (nd_type(h)) {
|
|
|
|
case NODE_LIT:
|
|
|
|
case NODE_STR:
|
2004-10-02 15:34:13 +04:00
|
|
|
case NODE_SELF:
|
|
|
|
case NODE_TRUE:
|
|
|
|
case NODE_FALSE:
|
|
|
|
case NODE_NIL:
|
2003-04-21 12:44:38 +04:00
|
|
|
parser_warning(h, "unused literal ignored");
|
2002-09-20 18:03:45 +04:00
|
|
|
return tail;
|
|
|
|
default:
|
2004-01-21 19:47:23 +03:00
|
|
|
h = end = NEW_BLOCK(head);
|
1998-01-16 15:13:05 +03:00
|
|
|
end->nd_end = end;
|
|
|
|
fixpos(end, head);
|
|
|
|
head = end;
|
2002-09-20 18:03:45 +04:00
|
|
|
break;
|
|
|
|
case NODE_BLOCK:
|
|
|
|
end = h->nd_end;
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-02-03 05:23:20 +03:00
|
|
|
nd = end->nd_head;
|
|
|
|
switch (nd_type(nd)) {
|
|
|
|
case NODE_RETURN:
|
|
|
|
case NODE_BREAK:
|
|
|
|
case NODE_NEXT:
|
|
|
|
case NODE_REDO:
|
|
|
|
case NODE_RETRY:
|
|
|
|
if (RTEST(ruby_verbose)) {
|
2003-04-21 12:44:38 +04:00
|
|
|
parser_warning(nd, "statement not reached");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-02-03 05:23:20 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nd_type(tail) != NODE_BLOCK) {
|
|
|
|
tail = NEW_BLOCK(tail);
|
|
|
|
tail->nd_end = tail;
|
|
|
|
}
|
|
|
|
end->nd_next = tail;
|
2004-01-21 19:47:23 +03:00
|
|
|
h->nd_end = tail->nd_end;
|
1998-01-16 15:13:05 +03:00
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
2002-07-26 10:12:39 +04:00
|
|
|
/* append item to the list */
|
1998-01-16 15:13:05 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
list_append(NODE *list, NODE *item)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
NODE *last;
|
|
|
|
|
2002-07-26 10:12:39 +04:00
|
|
|
if (list == 0) return NEW_LIST(item);
|
2003-01-14 10:45:19 +03:00
|
|
|
if (list->nd_next) {
|
|
|
|
last = list->nd_next->nd_end;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
last = list;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2002-07-26 10:12:39 +04:00
|
|
|
list->nd_alen += 1;
|
2003-01-14 10:45:19 +03:00
|
|
|
last->nd_next = NEW_LIST(item);
|
|
|
|
list->nd_next->nd_end = last->nd_next;
|
2002-07-26 10:12:39 +04:00
|
|
|
return list;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2002-07-26 10:12:39 +04:00
|
|
|
/* concat two lists */
|
1998-01-16 15:13:05 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
list_concat(NODE *head, NODE *tail)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
NODE *last;
|
|
|
|
|
2003-01-14 10:45:19 +03:00
|
|
|
if (head->nd_next) {
|
|
|
|
last = head->nd_next->nd_end;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
last = head;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
head->nd_alen += tail->nd_alen;
|
2003-01-14 10:45:19 +03:00
|
|
|
last->nd_next = tail;
|
|
|
|
if (tail->nd_next) {
|
|
|
|
head->nd_next->nd_end = tail->nd_next->nd_end;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
head->nd_next->nd_end = tail;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
2002-09-20 18:03:45 +04:00
|
|
|
/* concat two string literals */
|
2002-06-24 11:20:42 +04:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
literal_concat(NODE *head, NODE *tail)
|
2002-06-24 11:20:42 +04:00
|
|
|
{
|
2002-09-20 18:03:45 +04:00
|
|
|
enum node_type htype;
|
2002-06-24 11:20:42 +04:00
|
|
|
|
|
|
|
if (!head) return tail;
|
|
|
|
if (!tail) return head;
|
|
|
|
|
2002-09-20 18:03:45 +04:00
|
|
|
htype = nd_type(head);
|
|
|
|
if (htype == NODE_EVSTR) {
|
|
|
|
NODE *node = NEW_DSTR(rb_str_new(0, 0));
|
2003-01-14 10:45:19 +03:00
|
|
|
head = list_append(node, head);
|
2002-09-20 18:03:45 +04:00
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
switch (nd_type(tail)) {
|
|
|
|
case NODE_STR:
|
2002-09-20 18:03:45 +04:00
|
|
|
if (htype == NODE_STR) {
|
2002-06-24 11:20:42 +04:00
|
|
|
rb_str_concat(head->nd_lit, tail->nd_lit);
|
|
|
|
rb_gc_force_recycle((VALUE)tail);
|
|
|
|
}
|
2002-09-20 18:03:45 +04:00
|
|
|
else {
|
|
|
|
list_append(head, tail);
|
|
|
|
}
|
2002-09-23 19:48:42 +04:00
|
|
|
break;
|
2002-06-24 11:20:42 +04:00
|
|
|
|
2002-09-20 18:03:45 +04:00
|
|
|
case NODE_DSTR:
|
|
|
|
if (htype == NODE_STR) {
|
|
|
|
rb_str_concat(head->nd_lit, tail->nd_lit);
|
|
|
|
tail->nd_lit = head->nd_lit;
|
|
|
|
rb_gc_force_recycle((VALUE)head);
|
|
|
|
head = tail;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nd_set_type(tail, NODE_ARRAY);
|
|
|
|
tail->nd_head = NEW_STR(tail->nd_lit);
|
|
|
|
list_concat(head, tail);
|
|
|
|
}
|
2002-09-23 19:48:42 +04:00
|
|
|
break;
|
2002-09-20 18:03:45 +04:00
|
|
|
|
|
|
|
case NODE_EVSTR:
|
|
|
|
if (htype == NODE_STR) {
|
|
|
|
nd_set_type(head, NODE_DSTR);
|
2004-05-18 09:00:58 +04:00
|
|
|
head->nd_alen = 1;
|
2002-09-20 18:03:45 +04:00
|
|
|
}
|
|
|
|
list_append(head, tail);
|
2002-09-23 19:48:42 +04:00
|
|
|
break;
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
2002-09-23 19:48:42 +04:00
|
|
|
return head;
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
|
2003-05-21 20:01:49 +04:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
evstr2dstr(NODE *node)
|
2003-05-21 20:01:49 +04:00
|
|
|
{
|
|
|
|
if (nd_type(node) == NODE_EVSTR) {
|
|
|
|
node = list_append(NEW_DSTR(rb_str_new(0, 0)), node);
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2002-06-24 11:20:42 +04:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
new_evstr(NODE *node)
|
2002-06-24 11:20:42 +04:00
|
|
|
{
|
2002-09-23 19:48:42 +04:00
|
|
|
NODE *head = node;
|
2002-06-24 11:20:42 +04:00
|
|
|
|
2002-09-20 18:03:45 +04:00
|
|
|
if (node) {
|
|
|
|
switch (nd_type(node)) {
|
|
|
|
case NODE_STR: case NODE_DSTR: case NODE_EVSTR:
|
|
|
|
return node;
|
|
|
|
}
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
2002-09-23 19:48:42 +04:00
|
|
|
return NEW_EVSTR(head);
|
2002-06-24 11:20:42 +04:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
call_op_gen(struct parser_params *parser, NODE *recv, ID id, int narg, NODE *arg1)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
value_expr(arg1);
|
1998-01-16 15:13:05 +03:00
|
|
|
if (narg == 1) {
|
|
|
|
value_expr(arg1);
|
2003-02-20 06:35:44 +03:00
|
|
|
arg1 = NEW_LIST(arg1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-02-20 06:35:44 +03:00
|
|
|
else {
|
|
|
|
arg1 = 0;
|
|
|
|
}
|
|
|
|
return NEW_CALL(recv, id, arg1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
match_op_gen(struct parser_params *parser, NODE *node1, NODE *node2)
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
|
|
|
local_cnt('~');
|
|
|
|
|
2002-06-12 13:22:20 +04:00
|
|
|
value_expr(node1);
|
|
|
|
value_expr(node2);
|
|
|
|
if (node1) {
|
|
|
|
switch (nd_type(node1)) {
|
|
|
|
case NODE_DREGX:
|
|
|
|
case NODE_DREGX_ONCE:
|
1998-01-16 15:19:22 +03:00
|
|
|
return NEW_MATCH2(node1, node2);
|
2002-06-12 13:22:20 +04:00
|
|
|
|
|
|
|
case NODE_LIT:
|
|
|
|
if (TYPE(node1->nd_lit) == T_REGEXP) {
|
|
|
|
return NEW_MATCH2(node1, node2);
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-12 13:22:20 +04:00
|
|
|
if (node2) {
|
|
|
|
switch (nd_type(node2)) {
|
|
|
|
case NODE_DREGX:
|
|
|
|
case NODE_DREGX_ONCE:
|
1998-01-16 15:19:22 +03:00
|
|
|
return NEW_MATCH3(node2, node1);
|
2002-06-12 13:22:20 +04:00
|
|
|
|
|
|
|
case NODE_LIT:
|
|
|
|
if (TYPE(node2->nd_lit) == T_REGEXP) {
|
|
|
|
return NEW_MATCH3(node2, node1);
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
return NEW_CALL(node1, tMATCH, NEW_LIST(node2));
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
gettable_gen(struct parser_params *parser, ID id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-06-26 18:15:49 +04:00
|
|
|
if (id == keyword_self) {
|
1998-01-16 15:13:05 +03:00
|
|
|
return NEW_SELF();
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword_nil) {
|
1998-01-16 15:13:05 +03:00
|
|
|
return NEW_NIL();
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword_true) {
|
1998-01-16 15:19:22 +03:00
|
|
|
return NEW_TRUE();
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword_false) {
|
1998-01-16 15:19:22 +03:00
|
|
|
return NEW_FALSE();
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword__FILE__) {
|
2002-01-16 12:25:59 +03:00
|
|
|
return NEW_STR(rb_str_new2(ruby_sourcefile));
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword__LINE__) {
|
1999-01-20 07:59:39 +03:00
|
|
|
return NEW_LIT(INT2FIX(ruby_sourceline));
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
else if (is_local_id(id)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
if (dyna_in_block() && dvar_defined(id)) return NEW_DVAR(id);
|
1998-01-16 15:13:05 +03:00
|
|
|
if (local_id(id)) return NEW_LVAR(id);
|
|
|
|
/* method call without arguments */
|
2006-12-31 18:02:22 +03:00
|
|
|
dyna_check(id);
|
1998-01-16 15:13:05 +03:00
|
|
|
return NEW_VCALL(id);
|
|
|
|
}
|
|
|
|
else if (is_global_id(id)) {
|
|
|
|
return NEW_GVAR(id);
|
|
|
|
}
|
|
|
|
else if (is_instance_id(id)) {
|
|
|
|
return NEW_IVAR(id);
|
|
|
|
}
|
1999-12-14 09:50:43 +03:00
|
|
|
else if (is_const_id(id)) {
|
2000-03-23 11:37:35 +03:00
|
|
|
return NEW_CONST(id);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-03-23 11:37:35 +03:00
|
|
|
else if (is_class_id(id)) {
|
2000-08-29 06:52:41 +04:00
|
|
|
return NEW_CVAR(id);
|
2000-02-18 09:59:36 +03:00
|
|
|
}
|
2001-11-21 18:42:12 +03:00
|
|
|
rb_compile_error("identifier %s is not valid", rb_id2name(id));
|
1998-01-16 15:13:05 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
assignable_gen(struct parser_params *parser, ID id, NODE *val)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
value_expr(val);
|
2006-06-26 18:15:49 +04:00
|
|
|
if (id == keyword_self) {
|
1998-01-16 15:13:05 +03:00
|
|
|
yyerror("Can't change the value of self");
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword_nil) {
|
1998-01-16 15:13:05 +03:00
|
|
|
yyerror("Can't assign to nil");
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword_true) {
|
1998-01-16 15:19:22 +03:00
|
|
|
yyerror("Can't assign to true");
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword_false) {
|
1998-01-16 15:19:22 +03:00
|
|
|
yyerror("Can't assign to false");
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword__FILE__) {
|
1999-01-20 07:59:39 +03:00
|
|
|
yyerror("Can't assign to __FILE__");
|
|
|
|
}
|
2006-06-26 18:15:49 +04:00
|
|
|
else if (id == keyword__LINE__) {
|
1999-01-20 07:59:39 +03:00
|
|
|
yyerror("Can't assign to __LINE__");
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
else if (is_local_id(id)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
if (dvar_curr(id)) {
|
2000-08-28 13:53:42 +04:00
|
|
|
return NEW_DASGN_CURR(id, val);
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
else if (dvar_defined(id)) {
|
2000-08-28 13:53:42 +04:00
|
|
|
return NEW_DASGN(id, val);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
else if (local_id(id) || !dyna_in_block()) {
|
2000-08-28 13:53:42 +04:00
|
|
|
return NEW_LASGN(id, val);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else{
|
2005-03-09 12:29:52 +03:00
|
|
|
dyna_var(id);
|
2000-08-28 13:53:42 +04:00
|
|
|
return NEW_DASGN_CURR(id, val);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (is_global_id(id)) {
|
2000-08-28 13:53:42 +04:00
|
|
|
return NEW_GASGN(id, val);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else if (is_instance_id(id)) {
|
2000-08-28 13:53:42 +04:00
|
|
|
return NEW_IASGN(id, val);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-12-14 09:50:43 +03:00
|
|
|
else if (is_const_id(id)) {
|
2001-02-13 08:09:11 +03:00
|
|
|
if (in_def || in_single)
|
1999-12-14 09:50:43 +03:00
|
|
|
yyerror("dynamic constant assignment");
|
2003-02-20 06:35:44 +03:00
|
|
|
return NEW_CDECL(id, val, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-03-23 11:37:35 +03:00
|
|
|
else if (is_class_id(id)) {
|
2002-02-13 12:01:11 +03:00
|
|
|
if (in_def || in_single) return NEW_CVASGN(id, val);
|
2000-08-28 13:53:42 +04:00
|
|
|
return NEW_CVDECL(id, val);
|
2000-02-18 09:59:36 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
else {
|
2003-09-17 15:34:02 +04:00
|
|
|
rb_compile_error("identifier %s is not valid", rb_id2name(id));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-08-28 13:53:42 +04:00
|
|
|
return 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2005-08-10 05:39:24 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
shadowing_lvar_gen(struct parser_params *parser, ID name)
|
2005-08-10 05:39:24 +04:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
if (dvar_defined(name) || local_id(name)) {
|
2005-08-10 05:39:24 +04:00
|
|
|
rb_warningS("shadowing outer local variable - %s", rb_id2name(name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-09 12:29:52 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
new_bv_gen(struct parser_params *parser, ID name, NODE *val)
|
2005-03-09 12:29:52 +03:00
|
|
|
{
|
2005-07-28 06:33:28 +04:00
|
|
|
if (!is_local_id(name)) {
|
|
|
|
compile_error(PARSER_ARG "invalid local variable - %s",
|
2005-03-09 12:29:52 +03:00
|
|
|
rb_id2name(name));
|
|
|
|
return 0;
|
|
|
|
}
|
2005-08-10 05:39:24 +04:00
|
|
|
shadowing_lvar(name);
|
2005-07-28 06:33:28 +04:00
|
|
|
dyna_var(name);
|
|
|
|
return NEW_DASGN_CURR(name, val);
|
2005-03-09 12:29:52 +03:00
|
|
|
}
|
2005-07-28 06:33:28 +04:00
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
aryset_gen(struct parser_params *parser, NODE *recv, NODE *idx)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-02-20 06:35:44 +03:00
|
|
|
if (recv && nd_type(recv) == NODE_SELF)
|
|
|
|
recv = (NODE *)1;
|
|
|
|
else
|
|
|
|
value_expr(recv);
|
2002-12-19 12:20:20 +03:00
|
|
|
return NEW_ATTRASGN(recv, tASET, idx);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2005-06-12 20:56:06 +04:00
|
|
|
static void
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
block_dup_check(NODE *node1, NODE *node2)
|
2005-06-12 20:56:06 +04:00
|
|
|
{
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
if (node2 && node1 && nd_type(node1) == NODE_BLOCK_PASS) {
|
|
|
|
compile_error("both block arg and actual block given");
|
2005-06-12 20:56:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
ID
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_id_attrset(ID id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
id &= ~ID_SCOPE_MASK;
|
|
|
|
id |= ID_ATTRSET;
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
attrset_gen(struct parser_params *parser, NODE *recv, ID id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-02-20 06:35:44 +03:00
|
|
|
if (recv && nd_type(recv) == NODE_SELF)
|
|
|
|
recv = (NODE *)1;
|
|
|
|
else
|
|
|
|
value_expr(recv);
|
2002-12-17 13:34:30 +03:00
|
|
|
return NEW_ATTRASGN(recv, rb_id_attrset(id), 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_backref_error(NODE *node)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
switch (nd_type(node)) {
|
|
|
|
case NODE_NTH_REF:
|
2005-09-24 04:17:43 +04:00
|
|
|
rb_compile_error("Can't set variable $%ld", node->nd_nth);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case NODE_BACK_REF:
|
2003-01-01 06:24:29 +03:00
|
|
|
rb_compile_error("Can't set variable $%c", (int)node->nd_nth);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
arg_concat(NODE *node1, NODE *node2)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2000-01-17 11:37:53 +03:00
|
|
|
if (!node2) return node1;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
if (nd_type(node1) == NODE_BLOCK_PASS) {
|
|
|
|
node1->nd_iter = arg_concat(node1->nd_iter, node2);
|
|
|
|
return node1;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
return NEW_ARGSCAT(node1, node2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static NODE *
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
arg_append(NODE *node1, NODE *node2)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
|
|
|
if (!node1) return NEW_LIST(node2);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
switch (nd_type(node1)) {
|
|
|
|
case NODE_ARRAY:
|
1999-08-13 09:45:20 +04:00
|
|
|
return list_append(node1, node2);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
case NODE_BLOCK_PASS:
|
|
|
|
node1->nd_head = arg_append(node1->nd_head, node2);
|
|
|
|
return node1;
|
|
|
|
default:
|
2006-06-29 18:05:40 +04:00
|
|
|
return NEW_ARGSPUSH(node1, node2);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static NODE *
|
|
|
|
arg_add(NODE *node1, NODE *node2)
|
|
|
|
{
|
|
|
|
if (!node1) return NEW_LIST(node2);
|
|
|
|
switch (nd_type(node1)) {
|
|
|
|
case NODE_ARRAY:
|
|
|
|
return list_append(node1, node2);
|
|
|
|
case NODE_BLOCK_PASS:
|
|
|
|
node1->nd_head = arg_add(node1->nd_head, node2);
|
|
|
|
return node1;
|
|
|
|
default:
|
2000-01-17 11:37:53 +03:00
|
|
|
return NEW_ARGSPUSH(node1, node2);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
node_assign_gen(struct parser_params *parser, NODE *lhs, NODE *rhs)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
|
|
|
if (!lhs) return 0;
|
|
|
|
|
|
|
|
value_expr(rhs);
|
|
|
|
switch (nd_type(lhs)) {
|
|
|
|
case NODE_GASGN:
|
|
|
|
case NODE_IASGN:
|
|
|
|
case NODE_LASGN:
|
|
|
|
case NODE_DASGN:
|
2000-02-01 06:12:21 +03:00
|
|
|
case NODE_DASGN_CURR:
|
1999-08-13 09:45:20 +04:00
|
|
|
case NODE_MASGN:
|
1999-11-17 10:30:37 +03:00
|
|
|
case NODE_CDECL:
|
2000-03-23 11:37:35 +03:00
|
|
|
case NODE_CVDECL:
|
2000-11-21 17:26:25 +03:00
|
|
|
case NODE_CVASGN:
|
1999-08-13 09:45:20 +04:00
|
|
|
lhs->nd_value = rhs;
|
|
|
|
break;
|
|
|
|
|
2002-12-17 13:34:30 +03:00
|
|
|
case NODE_ATTRASGN:
|
1999-08-13 09:45:20 +04:00
|
|
|
case NODE_CALL:
|
|
|
|
lhs->nd_args = arg_add(lhs->nd_args, rhs);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* should not happen */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
value_expr_gen(struct parser_params *parser, NODE *node)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-10-18 18:13:41 +04:00
|
|
|
int cond = 0;
|
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
while (node) {
|
|
|
|
switch (nd_type(node)) {
|
|
|
|
case NODE_DEFN:
|
|
|
|
case NODE_DEFS:
|
2003-04-21 12:44:38 +04:00
|
|
|
parser_warning(node, "void value expression");
|
2002-06-18 07:53:23 +04:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
case NODE_RETURN:
|
|
|
|
case NODE_BREAK:
|
|
|
|
case NODE_NEXT:
|
|
|
|
case NODE_REDO:
|
|
|
|
case NODE_RETRY:
|
2002-10-18 18:13:41 +04:00
|
|
|
if (!cond) yyerror("void value expression");
|
2002-06-18 07:53:23 +04:00
|
|
|
/* or "control never reach"? */
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
case NODE_BLOCK:
|
|
|
|
while (node->nd_next) {
|
|
|
|
node = node->nd_next;
|
|
|
|
}
|
|
|
|
node = node->nd_head;
|
|
|
|
break;
|
2000-05-17 08:38:19 +04:00
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
case NODE_BEGIN:
|
|
|
|
node = node->nd_body;
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
case NODE_IF:
|
|
|
|
if (!value_expr(node->nd_body)) return Qfalse;
|
|
|
|
node = node->nd_else;
|
|
|
|
break;
|
2002-06-12 13:22:20 +04:00
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
case NODE_AND:
|
|
|
|
case NODE_OR:
|
2002-10-18 18:13:41 +04:00
|
|
|
cond = 1;
|
2002-06-18 07:53:23 +04:00
|
|
|
node = node->nd_2nd;
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
default:
|
|
|
|
return Qtrue;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-06-18 07:53:23 +04:00
|
|
|
|
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
void_expr_gen(struct parser_params *parser, NODE *node)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
const char *useless = 0;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-04-11 14:03:01 +04:00
|
|
|
if (!RTEST(ruby_verbose)) return;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2003-04-19 22:17:59 +04:00
|
|
|
if (!node) return;
|
1999-08-13 09:45:20 +04:00
|
|
|
switch (nd_type(node)) {
|
|
|
|
case NODE_CALL:
|
|
|
|
switch (node->nd_mid) {
|
|
|
|
case '+':
|
|
|
|
case '-':
|
|
|
|
case '*':
|
|
|
|
case '/':
|
|
|
|
case '%':
|
|
|
|
case tPOW:
|
|
|
|
case tUPLUS:
|
|
|
|
case tUMINUS:
|
|
|
|
case '|':
|
|
|
|
case '^':
|
|
|
|
case '&':
|
|
|
|
case tCMP:
|
|
|
|
case '>':
|
|
|
|
case tGEQ:
|
|
|
|
case '<':
|
|
|
|
case tLEQ:
|
|
|
|
case tEQ:
|
|
|
|
case tNEQ:
|
|
|
|
useless = rb_id2name(node->nd_mid);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NODE_LVAR:
|
|
|
|
case NODE_DVAR:
|
|
|
|
case NODE_GVAR:
|
|
|
|
case NODE_IVAR:
|
2000-03-23 11:37:35 +03:00
|
|
|
case NODE_CVAR:
|
1999-08-13 09:45:20 +04:00
|
|
|
case NODE_NTH_REF:
|
|
|
|
case NODE_BACK_REF:
|
|
|
|
useless = "a variable";
|
|
|
|
break;
|
2000-03-23 11:37:35 +03:00
|
|
|
case NODE_CONST:
|
1999-08-13 09:45:20 +04:00
|
|
|
case NODE_CREF:
|
|
|
|
useless = "a constant";
|
|
|
|
break;
|
|
|
|
case NODE_LIT:
|
|
|
|
case NODE_STR:
|
|
|
|
case NODE_DSTR:
|
|
|
|
case NODE_DREGX:
|
|
|
|
case NODE_DREGX_ONCE:
|
|
|
|
useless = "a literal";
|
|
|
|
break;
|
|
|
|
case NODE_COLON2:
|
|
|
|
case NODE_COLON3:
|
|
|
|
useless = "::";
|
|
|
|
break;
|
|
|
|
case NODE_DOT2:
|
|
|
|
useless = "..";
|
|
|
|
break;
|
|
|
|
case NODE_DOT3:
|
|
|
|
useless = "...";
|
|
|
|
break;
|
|
|
|
case NODE_SELF:
|
|
|
|
useless = "self";
|
|
|
|
break;
|
|
|
|
case NODE_NIL:
|
|
|
|
useless = "nil";
|
|
|
|
break;
|
|
|
|
case NODE_TRUE:
|
|
|
|
useless = "true";
|
|
|
|
break;
|
|
|
|
case NODE_FALSE:
|
|
|
|
useless = "false";
|
|
|
|
break;
|
|
|
|
case NODE_DEFINED:
|
|
|
|
useless = "defined?";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (useless) {
|
|
|
|
int line = ruby_sourceline;
|
|
|
|
|
|
|
|
ruby_sourceline = nd_line(node);
|
|
|
|
rb_warn("useless use of %s in void context", useless);
|
|
|
|
ruby_sourceline = line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
void_stmts_gen(struct parser_params *parser, NODE *node)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2002-04-11 14:03:01 +04:00
|
|
|
if (!RTEST(ruby_verbose)) return;
|
1999-08-13 09:45:20 +04:00
|
|
|
if (!node) return;
|
|
|
|
if (nd_type(node) != NODE_BLOCK) return;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (!node->nd_next) return;
|
|
|
|
void_expr(node->nd_head);
|
|
|
|
node = node->nd_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-18 18:13:41 +04:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
remove_begin(NODE *node)
|
2002-10-18 18:13:41 +04:00
|
|
|
{
|
|
|
|
NODE **n = &node;
|
|
|
|
while (*n) {
|
2004-01-21 19:47:23 +03:00
|
|
|
if (nd_type(*n) != NODE_BEGIN) {
|
2002-10-18 18:13:41 +04:00
|
|
|
return node;
|
|
|
|
}
|
2004-01-21 19:47:23 +03:00
|
|
|
*n = (*n)->nd_body;
|
2002-10-18 18:13:41 +04:00
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2004-02-03 05:23:20 +03:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
reduce_nodes(NODE **body)
|
2004-02-03 05:23:20 +03:00
|
|
|
{
|
|
|
|
NODE *node = *body;
|
|
|
|
|
2004-11-29 09:09:40 +03:00
|
|
|
if (!node) {
|
|
|
|
*body = NEW_NIL();
|
|
|
|
return;
|
|
|
|
}
|
2004-02-03 05:23:20 +03:00
|
|
|
#define subnodes(n1, n2) \
|
|
|
|
((!node->n1) ? (node->n2 ? (body = &node->n2, 1) : 0) : \
|
|
|
|
(!node->n2) ? (body = &node->n1, 1) : \
|
|
|
|
(reduce_nodes(&node->n1), body = &node->n2, 1))
|
|
|
|
|
|
|
|
while (node) {
|
|
|
|
switch (nd_type(node)) {
|
|
|
|
end:
|
|
|
|
case NODE_NIL:
|
|
|
|
*body = 0;
|
|
|
|
return;
|
|
|
|
case NODE_RETURN:
|
|
|
|
*body = node = node->nd_stts;
|
|
|
|
continue;
|
|
|
|
case NODE_BEGIN:
|
|
|
|
*body = node = node->nd_body;
|
|
|
|
continue;
|
|
|
|
case NODE_BLOCK:
|
|
|
|
body = &node->nd_end->nd_head;
|
|
|
|
break;
|
|
|
|
case NODE_IF:
|
|
|
|
if (subnodes(nd_body, nd_else)) break;
|
|
|
|
return;
|
|
|
|
case NODE_CASE:
|
|
|
|
body = &node->nd_body;
|
|
|
|
break;
|
|
|
|
case NODE_WHEN:
|
|
|
|
if (!subnodes(nd_body, nd_next)) goto end;
|
|
|
|
break;
|
|
|
|
case NODE_ENSURE:
|
|
|
|
if (!subnodes(nd_head, nd_resq)) goto end;
|
|
|
|
break;
|
|
|
|
case NODE_RESCUE:
|
|
|
|
if (!subnodes(nd_head, nd_resq)) goto end;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
node = *body;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef subnodes
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
assign_in_cond(struct parser_params *parser, NODE *node)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
|
|
|
switch (nd_type(node)) {
|
|
|
|
case NODE_MASGN:
|
|
|
|
yyerror("multiple assignment in conditional");
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case NODE_LASGN:
|
|
|
|
case NODE_DASGN:
|
|
|
|
case NODE_GASGN:
|
|
|
|
case NODE_IASGN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (nd_type(node->nd_value)) {
|
|
|
|
case NODE_LIT:
|
|
|
|
case NODE_STR:
|
|
|
|
case NODE_NIL:
|
|
|
|
case NODE_TRUE:
|
|
|
|
case NODE_FALSE:
|
|
|
|
/* reports always */
|
2003-04-21 12:44:38 +04:00
|
|
|
parser_warn(node->nd_value, "found = in conditional, should be ==");
|
1999-01-20 07:59:39 +03:00
|
|
|
return 1;
|
|
|
|
|
2000-10-10 11:03:36 +04:00
|
|
|
case NODE_DSTR:
|
|
|
|
case NODE_XSTR:
|
|
|
|
case NODE_DXSTR:
|
|
|
|
case NODE_EVSTR:
|
|
|
|
case NODE_DREGX:
|
1999-01-20 07:59:39 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-02-08 12:19:27 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
e_option_supplied(void)
|
2001-02-08 12:19:27 +03:00
|
|
|
{
|
|
|
|
if (strcmp(ruby_sourcefile, "-e") == 0)
|
|
|
|
return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2000-12-28 08:00:47 +03:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
warn_unless_e_option(NODE *node, const char *str)
|
2000-12-28 08:00:47 +03:00
|
|
|
{
|
2003-04-21 12:44:38 +04:00
|
|
|
if (!e_option_supplied()) parser_warn(node, str);
|
2001-02-08 12:19:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
warning_unless_e_option(NODE *node, const char *str)
|
2001-02-08 12:19:27 +03:00
|
|
|
{
|
2003-04-21 12:44:38 +04:00
|
|
|
if (!e_option_supplied()) parser_warning(node, str);
|
2000-12-28 08:00:47 +03:00
|
|
|
}
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
static NODE *cond0(struct parser_params*,NODE*);
|
2001-02-19 10:03:06 +03:00
|
|
|
|
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
range_op(struct parser_params *parser, NODE *node)
|
2001-02-19 10:03:06 +03:00
|
|
|
{
|
|
|
|
enum node_type type;
|
|
|
|
|
|
|
|
if (!e_option_supplied()) return node;
|
2002-06-12 13:22:20 +04:00
|
|
|
if (node == 0) return 0;
|
2001-02-19 10:03:06 +03:00
|
|
|
|
2002-06-18 07:53:23 +04:00
|
|
|
value_expr(node);
|
2004-09-17 13:24:13 +04:00
|
|
|
node = cond0(parser, node);
|
2001-02-19 10:03:06 +03:00
|
|
|
type = nd_type(node);
|
|
|
|
if (type == NODE_LIT && FIXNUM_P(node->nd_lit)) {
|
2003-04-21 12:44:38 +04:00
|
|
|
warn_unless_e_option(node, "integer literal in conditional range");
|
2001-02-19 10:03:06 +03:00
|
|
|
return call_op(node,tEQ,1,NEW_GVAR(rb_intern("$.")));
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2003-04-17 09:22:40 +04:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
literal_node(NODE *node)
|
2003-04-17 09:22:40 +04:00
|
|
|
{
|
|
|
|
if (!node) return 1; /* same as NODE_NIL */
|
|
|
|
switch (nd_type(node)) {
|
|
|
|
case NODE_LIT:
|
|
|
|
case NODE_STR:
|
|
|
|
case NODE_DSTR:
|
|
|
|
case NODE_EVSTR:
|
|
|
|
case NODE_DREGX:
|
|
|
|
case NODE_DREGX_ONCE:
|
|
|
|
case NODE_DSYM:
|
|
|
|
return 2;
|
|
|
|
case NODE_TRUE:
|
|
|
|
case NODE_FALSE:
|
|
|
|
case NODE_NIL:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
cond0(struct parser_params *parser, NODE *node)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-07-14 18:51:42 +04:00
|
|
|
if (node == 0) return 0;
|
2004-09-17 13:24:13 +04:00
|
|
|
assign_in_cond(parser, node);
|
2001-08-06 07:05:23 +04:00
|
|
|
|
2004-07-14 18:51:42 +04:00
|
|
|
switch (nd_type(node)) {
|
2000-12-27 08:59:03 +03:00
|
|
|
case NODE_DSTR:
|
2003-04-17 09:22:40 +04:00
|
|
|
case NODE_EVSTR:
|
2001-03-13 08:45:13 +03:00
|
|
|
case NODE_STR:
|
2001-03-13 09:00:50 +03:00
|
|
|
rb_warn("string literal in condition");
|
2001-03-13 08:45:13 +03:00
|
|
|
break;
|
2001-02-08 12:19:27 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case NODE_DREGX:
|
|
|
|
case NODE_DREGX_ONCE:
|
2003-04-21 12:44:38 +04:00
|
|
|
warning_unless_e_option(node, "regex literal in condition");
|
1998-01-16 15:13:05 +03:00
|
|
|
local_cnt('_');
|
|
|
|
local_cnt('~');
|
1998-01-16 15:19:22 +03:00
|
|
|
return NEW_MATCH2(node, NEW_GVAR(rb_intern("$_")));
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-08-14 12:13:31 +04:00
|
|
|
case NODE_AND:
|
|
|
|
case NODE_OR:
|
2004-09-17 13:24:13 +04:00
|
|
|
node->nd_1st = cond0(parser, node->nd_1st);
|
|
|
|
node->nd_2nd = cond0(parser, node->nd_2nd);
|
2001-08-14 12:13:31 +04:00
|
|
|
break;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case NODE_DOT2:
|
|
|
|
case NODE_DOT3:
|
2004-09-17 13:24:13 +04:00
|
|
|
node->nd_beg = range_op(parser, node->nd_beg);
|
|
|
|
node->nd_end = range_op(parser, node->nd_end);
|
2004-07-14 18:51:42 +04:00
|
|
|
if (nd_type(node) == NODE_DOT2) nd_set_type(node,NODE_FLIP2);
|
|
|
|
else if (nd_type(node) == NODE_DOT3) nd_set_type(node, NODE_FLIP3);
|
2001-09-20 10:23:50 +04:00
|
|
|
node->nd_cnt = local_append(internal_id());
|
2003-04-17 09:22:40 +04:00
|
|
|
if (!e_option_supplied()) {
|
|
|
|
int b = literal_node(node->nd_beg);
|
|
|
|
int e = literal_node(node->nd_end);
|
|
|
|
if ((b == 1 && e == 1) || (b + e >= 2 && RTEST(ruby_verbose))) {
|
2003-04-21 12:44:38 +04:00
|
|
|
parser_warn(node, "range literal in condition");
|
2003-04-17 09:22:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NODE_DSYM:
|
2003-04-21 12:44:38 +04:00
|
|
|
parser_warning(node, "literal in condition");
|
2000-12-28 08:00:47 +03:00
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case NODE_LIT:
|
2001-02-19 10:03:06 +03:00
|
|
|
if (TYPE(node->nd_lit) == T_REGEXP) {
|
2003-04-21 12:44:38 +04:00
|
|
|
warn_unless_e_option(node, "regex literal in condition");
|
2000-12-27 08:59:03 +03:00
|
|
|
nd_set_type(node, NODE_MATCH);
|
1998-01-16 15:13:05 +03:00
|
|
|
local_cnt('_');
|
|
|
|
local_cnt('~');
|
|
|
|
}
|
2001-08-14 12:13:31 +04:00
|
|
|
else {
|
2003-04-21 12:44:38 +04:00
|
|
|
parser_warning(node, "literal in condition");
|
2001-08-14 12:13:31 +04:00
|
|
|
}
|
2002-06-05 10:10:57 +04:00
|
|
|
default:
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-12-27 08:59:03 +03:00
|
|
|
return node;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
cond_gen(struct parser_params *parser, NODE *node)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
if (node == 0) return 0;
|
2002-06-18 07:53:23 +04:00
|
|
|
value_expr(node);
|
2004-09-17 13:24:13 +04:00
|
|
|
return cond0(parser, node);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
logop_gen(struct parser_params *parser, enum node_type type, NODE *left, NODE *right)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
value_expr(left);
|
2003-10-30 07:37:50 +03:00
|
|
|
if (left && nd_type(left) == type) {
|
2002-06-18 07:53:23 +04:00
|
|
|
NODE *node = left, *second;
|
|
|
|
while ((second = node->nd_2nd) != 0 && nd_type(second) == type) {
|
|
|
|
node = second;
|
|
|
|
}
|
2003-07-04 19:30:35 +04:00
|
|
|
node->nd_2nd = NEW_NODE(type, second, right, 0);
|
2002-06-18 07:53:23 +04:00
|
|
|
return left;
|
|
|
|
}
|
2003-07-04 19:30:35 +04:00
|
|
|
return NEW_NODE(type, left, right, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2003-03-20 10:03:22 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
cond_negative(NODE **nodep)
|
2003-03-20 10:03:22 +03:00
|
|
|
{
|
|
|
|
NODE *c = *nodep;
|
|
|
|
|
|
|
|
if (!c) return 0;
|
|
|
|
switch (nd_type(c)) {
|
|
|
|
case NODE_NOT:
|
|
|
|
*nodep = c->nd_body;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-06-20 11:11:44 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
no_blockarg(NODE *node)
|
2003-06-20 11:11:44 +04:00
|
|
|
{
|
|
|
|
if (node && nd_type(node) == NODE_BLOCK_PASS) {
|
|
|
|
rb_compile_error("block argument should not be given");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-30 13:12:34 +04:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
ret_args(NODE *node)
|
2001-05-30 13:12:34 +04:00
|
|
|
{
|
|
|
|
if (node) {
|
2003-06-20 11:11:44 +04:00
|
|
|
no_blockarg(node);
|
2004-05-07 12:44:24 +04:00
|
|
|
if (nd_type(node) == NODE_ARRAY) {
|
|
|
|
if (node->nd_next == 0) {
|
|
|
|
node = node->nd_head;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nd_set_type(node, NODE_VALUES);
|
|
|
|
}
|
2003-06-20 11:11:44 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
new_yield(NODE *node)
|
2003-06-20 11:11:44 +04:00
|
|
|
{
|
2003-10-29 20:47:24 +03:00
|
|
|
long state = Qtrue;
|
|
|
|
|
|
|
|
if (node) {
|
2006-12-31 18:02:22 +03:00
|
|
|
no_blockarg(node);
|
|
|
|
if (nd_type(node) == NODE_ARRAY && node->nd_next == 0) {
|
|
|
|
node = node->nd_head;
|
|
|
|
state = Qfalse;
|
|
|
|
}
|
|
|
|
else if (node && nd_type(node) == NODE_SPLAT) {
|
|
|
|
state = Qtrue;
|
|
|
|
}
|
2003-10-29 20:47:24 +03:00
|
|
|
}
|
|
|
|
else {
|
2006-12-31 18:02:22 +03:00
|
|
|
state = Qfalse;
|
2003-10-29 20:47:24 +03:00
|
|
|
}
|
|
|
|
return NEW_YIELD(node, state);
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
|
|
|
|
2003-01-23 06:39:25 +03:00
|
|
|
static NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
negate_lit(NODE *node)
|
2003-01-23 06:39:25 +03:00
|
|
|
{
|
|
|
|
switch (TYPE(node->nd_lit)) {
|
|
|
|
case T_FIXNUM:
|
|
|
|
node->nd_lit = LONG2FIX(-FIX2LONG(node->nd_lit));
|
|
|
|
break;
|
|
|
|
case T_BIGNUM:
|
|
|
|
node->nd_lit = rb_funcall(node->nd_lit,tUMINUS,0,0);
|
|
|
|
break;
|
|
|
|
case T_FLOAT:
|
|
|
|
RFLOAT(node->nd_lit)->value = -RFLOAT(node->nd_lit)->value;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
arg_blk_pass(NODE *node1, NODE *node2)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
|
|
|
if (node2) {
|
|
|
|
node2->nd_head = node1;
|
|
|
|
return node2;
|
|
|
|
}
|
|
|
|
return node1;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-07-28 11:16:22 +04:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
arg_dup_check(ID vid, VALUE m, VALUE list, NODE *node)
|
2005-07-28 11:16:22 +04:00
|
|
|
{
|
2006-09-04 09:57:35 +04:00
|
|
|
VALUE sym;
|
|
|
|
|
|
|
|
if (!vid) return 0;
|
2006-11-06 09:37:40 +03:00
|
|
|
if (is_junk_id(vid)) return 0;
|
2006-09-04 09:57:35 +04:00
|
|
|
sym = ID2SYM(vid);
|
2005-07-28 11:16:22 +04:00
|
|
|
if ((m && rb_ary_includes(m, sym)) || rb_ary_includes(list, sym)) {
|
|
|
|
ruby_sourceline = nd_line(node);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
rb_ary_push(list, sym);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NODE*
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
new_args_gen(struct parser_params *parser, VALUE m, NODE *o, NODE *r, NODE *p, NODE *b)
|
2005-07-28 11:16:22 +04:00
|
|
|
{
|
|
|
|
int saved_line = ruby_sourceline;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
NODE *node;
|
2005-07-28 11:16:22 +04:00
|
|
|
VALUE list;
|
|
|
|
|
|
|
|
list = rb_ary_new();
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
node = o;
|
|
|
|
while (node) {
|
|
|
|
if (!node->nd_head) break;
|
|
|
|
if (arg_dup_check(node->nd_head->nd_vid, m, list, node)) {
|
2005-07-28 11:16:22 +04:00
|
|
|
yyerror("duplicated optional argument name");
|
|
|
|
return 0;
|
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
node = node->nd_next;
|
2005-07-28 11:16:22 +04:00
|
|
|
}
|
2005-07-29 04:58:14 +04:00
|
|
|
if (RTEST(r)) {
|
2005-07-28 11:16:22 +04:00
|
|
|
if (arg_dup_check(r->nd_vid, m, list, r)) {
|
|
|
|
yyerror("duplicated rest argument name");
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-12 15:10:22 +04:00
|
|
|
}
|
|
|
|
if (p) {
|
|
|
|
node = p;
|
|
|
|
while (node) {
|
|
|
|
if (!node->nd_head) break;
|
|
|
|
if (arg_dup_check(node->nd_head->nd_vid, m, list, node)) {
|
|
|
|
yyerror("duplicated argument name");
|
2006-12-31 18:02:22 +03:00
|
|
|
return 0;
|
2006-07-12 15:10:22 +04:00
|
|
|
}
|
|
|
|
node = node->nd_next;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
}
|
2006-07-12 15:10:22 +04:00
|
|
|
r = NEW_POSTARG(r, p);
|
2005-07-28 11:16:22 +04:00
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
node = NEW_ARGS(m, o, r);
|
2005-07-28 11:16:22 +04:00
|
|
|
if (b) {
|
|
|
|
if (arg_dup_check(b->nd_vid, m, list, b)) {
|
|
|
|
yyerror("duplicated block argument name");
|
|
|
|
return 0;
|
|
|
|
}
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
node = block_append(node, b);
|
2005-07-28 11:16:22 +04:00
|
|
|
}
|
|
|
|
ruby_sourceline = saved_line;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
return node;
|
2000-06-23 11:05:59 +04:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static void
|
2006-12-31 18:02:22 +03:00
|
|
|
local_push_gen(struct parser_params *parser, int inherit_dvars)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct local_vars *local;
|
|
|
|
|
|
|
|
local = ALLOC(struct local_vars);
|
|
|
|
local->prev = lvtbl;
|
|
|
|
local->tbl = 0;
|
2005-03-09 12:29:52 +03:00
|
|
|
local->dnames = 0;
|
2006-12-31 18:02:22 +03:00
|
|
|
local->dvars = inherit_dvars ? DVARS_INHERIT : DVARS_TOPSCOPE;
|
1998-01-16 15:13:05 +03:00
|
|
|
lvtbl = local;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
local_pop_gen(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
struct local_vars *local = lvtbl->prev;
|
2006-12-31 18:02:22 +03:00
|
|
|
vtable_free(lvtbl->tbl);
|
|
|
|
vtable_free(lvtbl->dnames);
|
|
|
|
vtable_free(lvtbl->dvars);
|
2004-10-02 15:34:13 +04:00
|
|
|
xfree(lvtbl);
|
1999-01-20 07:59:39 +03:00
|
|
|
lvtbl = local;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
static ID*
|
|
|
|
vtable_to_tbl(struct vtable *src)
|
|
|
|
{
|
|
|
|
int i, cnt = vtable_size(src);
|
|
|
|
|
|
|
|
if (cnt > 0) {
|
|
|
|
ID *tbl = ALLOC_N(ID, cnt + 1);
|
|
|
|
tbl[0] = cnt;
|
|
|
|
for (i = 0; i < cnt; i++) {
|
|
|
|
tbl[i+1] = src->tbl[i];
|
|
|
|
}
|
|
|
|
return tbl;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static ID*
|
2005-09-26 16:01:29 +04:00
|
|
|
local_tbl_gen(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
return vtable_to_tbl(lvtbl->tbl);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ID*
|
|
|
|
dyna_tbl_gen(struct parser_params *parser)
|
|
|
|
{
|
|
|
|
return vtable_to_tbl(lvtbl->dvars);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
local_append_gen(struct parser_params *parser, ID id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
if (lvtbl->tbl == 0) {
|
2006-12-31 18:02:22 +03:00
|
|
|
lvtbl->tbl = vtable_alloc(0);
|
|
|
|
vtable_add(lvtbl->tbl, '_');
|
|
|
|
vtable_add(lvtbl->tbl, '~');
|
1999-01-20 07:59:39 +03:00
|
|
|
if (id == '_') return 0;
|
|
|
|
if (id == '~') return 1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
vtable_add(lvtbl->tbl, id);
|
|
|
|
return vtable_size(lvtbl->tbl) - 1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
local_cnt_gen(struct parser_params *parser, ID id)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
int cnt, max;
|
|
|
|
if (id == 0) return vtable_size(lvtbl->tbl);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
for (cnt=0, max=vtable_size(lvtbl->tbl); cnt<max;cnt++) {
|
|
|
|
if (lvtbl->tbl->tbl[cnt] == id) {
|
|
|
|
return cnt;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
return local_append(id);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
local_id_gen(struct parser_params *parser, ID id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
if (lvtbl == 0) return Qfalse;
|
2006-12-31 18:02:22 +03:00
|
|
|
return vtable_included(lvtbl->tbl, id);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
extern int rb_dvar_current(void);
|
|
|
|
extern int rb_scope_base_local_tbl_size(void);
|
|
|
|
extern ID rb_scope_base_local_tbl_id(int i);
|
|
|
|
extern void rb_scope_setup_top_local_tbl(ID *tbl);
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
top_local_init_gen(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
int i, cnt;
|
|
|
|
|
|
|
|
local_push(rb_dvar_current());
|
|
|
|
if (cnt = rb_scope_base_local_tbl_size()) {
|
|
|
|
if (lvtbl->tbl == 0) {
|
|
|
|
lvtbl->tbl = vtable_alloc(0);
|
|
|
|
}
|
|
|
|
for (i = 0; i < cnt; i++) {
|
|
|
|
vtable_add(lvtbl->tbl, rb_scope_base_local_tbl_id(i));
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
top_local_setup_gen(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
if (lvtbl->dvars != 0) {
|
|
|
|
/* eval */
|
|
|
|
rb_scope_setup_top_local_tbl(dyna_tbl());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_scope_setup_top_local_tbl(local_tbl());
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
local_pop();
|
|
|
|
}
|
|
|
|
|
2005-03-09 12:29:52 +03:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
dyna_var_gen(struct parser_params *parser, ID id)
|
2005-03-09 12:29:52 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
if (!POINTER_P(lvtbl->dvars)) {
|
|
|
|
lvtbl->dvars = vtable_alloc(lvtbl->dvars);
|
2005-03-09 12:29:52 +03:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
vtable_add(lvtbl->dvars, id);
|
|
|
|
if (!vtable_included(lvtbl->dnames, id)) {
|
|
|
|
if (!lvtbl->dnames) {
|
|
|
|
lvtbl->dnames = vtable_alloc(0);
|
|
|
|
}
|
|
|
|
vtable_add(lvtbl->dnames, id);
|
2005-03-09 12:29:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
dyna_check_gen(struct parser_params *parser, ID id)
|
2005-03-09 12:29:52 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (in_defined) return; /* no check needed */
|
2006-12-31 18:02:22 +03:00
|
|
|
for (i=0; i<vtable_size(lvtbl->dnames); i++) {
|
|
|
|
if (lvtbl->dnames->tbl[i] == id) {
|
2005-03-09 12:29:52 +03:00
|
|
|
rb_warnS("out-of-scope variable - %s", rb_id2name(id));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
static int
|
2005-09-26 16:01:29 +04:00
|
|
|
dyna_push_gen(struct parser_params *parser)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
lvtbl->dvars = vtable_alloc(lvtbl->dvars);
|
|
|
|
return 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
dyna_pop_gen(struct parser_params *parser, struct RVarmap* vars)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
struct vtable *tmp = lvtbl->dvars;
|
|
|
|
lvtbl->dvars = lvtbl->dvars->prev;
|
|
|
|
vtable_free(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
dyna_in_block_gen(struct parser_params *parser)
|
|
|
|
{
|
|
|
|
return lvtbl->dvars != DVARS_TOPSCOPE;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-06-06 15:29:20 +04:00
|
|
|
static NODE *
|
2006-12-31 18:02:22 +03:00
|
|
|
dyna_init_gen(struct parser_params *parser, NODE *node, int pre_cnt)
|
2003-06-06 15:29:20 +04:00
|
|
|
{
|
|
|
|
NODE *var;
|
2006-12-31 18:02:22 +03:00
|
|
|
int post_cnt = vtable_size(lvtbl->dvars);
|
2003-06-06 15:29:20 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
if (!node || pre_cnt == post_cnt) return node;
|
|
|
|
for (var = 0; post_cnt != pre_cnt; post_cnt--) {
|
|
|
|
var = NEW_DASGN_CURR(lvtbl->dvars->tbl[post_cnt-1], var);
|
2003-06-06 15:29:20 +04:00
|
|
|
}
|
|
|
|
return block_append(var, node);
|
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
static int
|
|
|
|
dvar_defined_gen(struct parser_params *parser, ID id)
|
|
|
|
{
|
|
|
|
struct vtable *dvars = lvtbl->dvars;
|
|
|
|
while(POINTER_P(dvars)){
|
|
|
|
if(vtable_included(dvars, id)){
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
dvars = dvars->prev;
|
|
|
|
}
|
|
|
|
if(dvars == DVARS_INHERIT){
|
|
|
|
return rb_dvar_defined(id);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
dvar_curr_gen(struct parser_params *parser, ID id)
|
|
|
|
{
|
|
|
|
return vtable_included(lvtbl->dvars, id);
|
|
|
|
}
|
|
|
|
|
2002-09-06 00:00:52 +04:00
|
|
|
void
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_gc_mark_parser(void)
|
2002-09-06 00:00:52 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-09-22 04:19:15 +04:00
|
|
|
NODE*
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_parser_append_print(NODE *node)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-10-29 06:35:11 +04:00
|
|
|
NODE *prelude = 0;
|
2004-09-24 09:53:43 +04:00
|
|
|
|
2004-10-29 06:35:11 +04:00
|
|
|
if (node && (nd_type(node) == NODE_PRELUDE)) {
|
|
|
|
prelude = node;
|
2004-09-24 09:53:43 +04:00
|
|
|
node = node->nd_body;
|
|
|
|
}
|
|
|
|
node = block_append(node,
|
2004-09-22 04:19:15 +04:00
|
|
|
NEW_FCALL(rb_intern("print"),
|
|
|
|
NEW_ARRAY(NEW_GVAR(rb_intern("$_")))));
|
2004-09-24 09:53:43 +04:00
|
|
|
if (prelude) {
|
|
|
|
prelude->nd_body = node;
|
|
|
|
return prelude;
|
|
|
|
}
|
|
|
|
return node;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-09-22 04:19:15 +04:00
|
|
|
NODE *
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_parser_while_loop(NODE *node, int chop, int split)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-10-29 06:35:11 +04:00
|
|
|
NODE *prelude = 0;
|
2004-09-24 09:53:43 +04:00
|
|
|
|
2004-10-29 06:35:11 +04:00
|
|
|
if (node && (nd_type(node) == NODE_PRELUDE)) {
|
|
|
|
prelude = node;
|
2004-09-24 09:53:43 +04:00
|
|
|
node = node->nd_body;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if (split) {
|
2004-09-22 04:19:15 +04:00
|
|
|
node = block_append(NEW_GASGN(rb_intern("$F"),
|
|
|
|
NEW_CALL(NEW_GVAR(rb_intern("$_")),
|
|
|
|
rb_intern("split"), 0)),
|
|
|
|
node);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
if (chop) {
|
2004-09-22 04:19:15 +04:00
|
|
|
node = block_append(NEW_CALL(NEW_GVAR(rb_intern("$_")),
|
|
|
|
rb_intern("chop!"), 0), node);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-09-24 09:53:43 +04:00
|
|
|
node = NEW_OPT_N(node);
|
|
|
|
if (prelude) {
|
|
|
|
prelude->nd_body = node;
|
|
|
|
return prelude;
|
|
|
|
}
|
|
|
|
return node;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2005-07-13 17:44:21 +04:00
|
|
|
static const struct {
|
1999-01-20 07:59:39 +03:00
|
|
|
ID token;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
const char *name;
|
1999-01-20 07:59:39 +03:00
|
|
|
} op_tbl[] = {
|
2002-04-24 08:54:16 +04:00
|
|
|
{tDOT2, ".."},
|
|
|
|
{tDOT3, "..."},
|
|
|
|
{'+', "+"},
|
|
|
|
{'-', "-"},
|
|
|
|
{'+', "+(binary)"},
|
|
|
|
{'-', "-(binary)"},
|
|
|
|
{'*', "*"},
|
|
|
|
{'/', "/"},
|
|
|
|
{'%', "%"},
|
|
|
|
{tPOW, "**"},
|
|
|
|
{tUPLUS, "+@"},
|
|
|
|
{tUMINUS, "-@"},
|
|
|
|
{tUPLUS, "+(unary)"},
|
|
|
|
{tUMINUS, "-(unary)"},
|
|
|
|
{'|', "|"},
|
|
|
|
{'^', "^"},
|
|
|
|
{'&', "&"},
|
|
|
|
{tCMP, "<=>"},
|
|
|
|
{'>', ">"},
|
|
|
|
{tGEQ, ">="},
|
|
|
|
{'<', "<"},
|
|
|
|
{tLEQ, "<="},
|
|
|
|
{tEQ, "=="},
|
|
|
|
{tEQQ, "==="},
|
|
|
|
{tNEQ, "!="},
|
|
|
|
{tMATCH, "=~"},
|
|
|
|
{tNMATCH, "!~"},
|
|
|
|
{'!', "!"},
|
|
|
|
{'~', "~"},
|
|
|
|
{'!', "!(unary)"},
|
|
|
|
{'~', "~(unary)"},
|
|
|
|
{'!', "!@"},
|
|
|
|
{'~', "~@"},
|
|
|
|
{tAREF, "[]"},
|
|
|
|
{tASET, "[]="},
|
|
|
|
{tLSHFT, "<<"},
|
|
|
|
{tRSHFT, ">>"},
|
|
|
|
{tCOLON2, "::"},
|
|
|
|
{'`', "`"},
|
|
|
|
{0, 0}
|
1998-01-16 15:13:05 +03:00
|
|
|
};
|
|
|
|
|
2005-07-13 17:44:21 +04:00
|
|
|
static struct symbols {
|
|
|
|
ID last_id;
|
2006-09-02 19:05:27 +04:00
|
|
|
st_table *sym_id;
|
|
|
|
st_table *id_sym;
|
2005-07-13 17:44:21 +04:00
|
|
|
} global_symbols = {tLAST_TOKEN};
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-09-02 19:05:27 +04:00
|
|
|
static struct st_hash_type symhash = {
|
|
|
|
rb_str_cmp,
|
|
|
|
rb_str_hash,
|
|
|
|
};
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
2005-09-26 16:01:29 +04:00
|
|
|
Init_sym(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2006-09-02 19:05:27 +04:00
|
|
|
global_symbols.sym_id = st_init_table_with_size(&symhash, 1000);
|
|
|
|
global_symbols.id_sym = st_init_numtable_with_size(1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-25 09:57:37 +04:00
|
|
|
rb_gc_mark_symbols(void)
|
2006-09-02 19:05:27 +04:00
|
|
|
{
|
|
|
|
rb_mark_tbl(global_symbols.id_sym);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2001-09-20 10:23:50 +04:00
|
|
|
static ID
|
2005-09-26 16:01:29 +04:00
|
|
|
internal_id(void)
|
2001-09-20 10:23:50 +04:00
|
|
|
{
|
2005-07-13 17:44:21 +04:00
|
|
|
return ID_INTERNAL | (++global_symbols.last_id << ID_SCOPE_SHIFT);
|
2001-09-20 10:23:50 +04:00
|
|
|
}
|
|
|
|
|
2005-10-22 08:09:24 +04:00
|
|
|
static int
|
|
|
|
is_special_global_name(const char *m)
|
|
|
|
{
|
|
|
|
switch (*m) {
|
|
|
|
case '~': case '*': case '$': case '?': case '!': case '@':
|
|
|
|
case '/': case '\\': case ';': case ',': case '.': case '=':
|
|
|
|
case ':': case '<': case '>': case '\"':
|
|
|
|
case '&': case '`': case '\'': case '+':
|
|
|
|
case '0':
|
|
|
|
++m;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
++m;
|
|
|
|
if (is_identchar(*m)) m += mbclen(*m);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!ISDIGIT(*m)) return 0;
|
|
|
|
do ++m; while (ISDIGIT(*m));
|
|
|
|
}
|
|
|
|
return !*m;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_symname_p(const char *name)
|
|
|
|
{
|
|
|
|
const char *m = name;
|
|
|
|
int localid = Qfalse;
|
|
|
|
|
|
|
|
if (!m) return Qfalse;
|
|
|
|
switch (*m) {
|
|
|
|
case '\0':
|
|
|
|
return Qfalse;
|
|
|
|
|
|
|
|
case '$':
|
|
|
|
if (is_special_global_name(++m)) return Qtrue;
|
|
|
|
goto id;
|
|
|
|
|
|
|
|
case '@':
|
|
|
|
if (*++m == '@') ++m;
|
|
|
|
goto id;
|
|
|
|
|
|
|
|
case '<':
|
|
|
|
switch (*++m) {
|
|
|
|
case '<': ++m; break;
|
|
|
|
case '=': if (*++m == '>') ++m; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '>':
|
2005-12-19 17:33:11 +03:00
|
|
|
switch (*++m) {
|
|
|
|
case '>': case '=': ++m; break;
|
|
|
|
}
|
2005-10-22 08:09:24 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '=':
|
|
|
|
switch (*++m) {
|
|
|
|
case '~': ++m; break;
|
|
|
|
case '=': if (*++m == '=') ++m; break;
|
|
|
|
default: return Qfalse;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '*':
|
|
|
|
if (*++m == '*') ++m;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '+': case '-':
|
|
|
|
if (*++m == '@') ++m;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '|': case '^': case '&': case '/': case '%': case '~': case '`':
|
2005-12-19 17:33:11 +03:00
|
|
|
++m;
|
2005-10-22 08:09:24 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '[':
|
2005-11-20 16:36:05 +03:00
|
|
|
if (*++m != ']') return Qfalse;
|
|
|
|
if (*++m == '=') ++m;
|
2005-10-22 08:09:24 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
localid = !ISUPPER(*m);
|
|
|
|
id:
|
|
|
|
if (*m != '_' && !ISALPHA(*m) && !ismbchar(*m)) return Qfalse;
|
|
|
|
while (is_identchar(*m)) m += mbclen(*m);
|
|
|
|
if (localid) {
|
|
|
|
switch (*m) {
|
|
|
|
case '!': case '?': case '=': ++m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return *m ? Qfalse : Qtrue;
|
|
|
|
}
|
|
|
|
|
2006-09-14 11:27:14 +04:00
|
|
|
int
|
|
|
|
rb_sym_interned_p(str)
|
|
|
|
VALUE str;
|
|
|
|
{
|
|
|
|
ID id;
|
|
|
|
|
|
|
|
if (st_lookup(global_symbols.sym_id, (st_data_t)str, (st_data_t *)&id))
|
|
|
|
return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
ID
|
2006-09-02 19:05:27 +04:00
|
|
|
rb_intern2(const char *name, long len)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2001-06-05 11:50:59 +04:00
|
|
|
const char *m = name;
|
2006-09-02 19:05:27 +04:00
|
|
|
VALUE sym = rb_str_new(name, len);
|
2000-05-22 11:29:50 +04:00
|
|
|
ID id;
|
1998-01-16 15:13:05 +03:00
|
|
|
int last;
|
|
|
|
|
2006-09-02 19:05:27 +04:00
|
|
|
if (st_lookup(global_symbols.sym_id, (st_data_t)sym, (st_data_t *)&id))
|
1998-01-16 15:13:05 +03:00
|
|
|
return id;
|
|
|
|
|
2006-09-02 19:05:27 +04:00
|
|
|
last = len-1;
|
1999-01-20 07:59:39 +03:00
|
|
|
id = 0;
|
2001-06-05 11:50:59 +04:00
|
|
|
switch (*name) {
|
1998-01-16 15:13:05 +03:00
|
|
|
case '$':
|
|
|
|
id |= ID_GLOBAL;
|
2005-10-22 08:09:24 +04:00
|
|
|
if (is_special_global_name(++m)) goto new_id;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case '@':
|
2001-06-05 11:50:59 +04:00
|
|
|
if (name[1] == '@') {
|
|
|
|
m++;
|
2000-03-23 11:37:35 +03:00
|
|
|
id |= ID_CLASS;
|
2001-06-05 11:50:59 +04:00
|
|
|
}
|
|
|
|
else {
|
2000-02-18 09:59:36 +03:00
|
|
|
id |= ID_INSTANCE;
|
2001-06-05 11:50:59 +04:00
|
|
|
}
|
|
|
|
m++;
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
default:
|
2005-10-22 08:09:24 +04:00
|
|
|
if (name[0] != '_' && ISASCII(name[0]) && !ISALNUM(name[0])) {
|
2001-06-05 11:50:59 +04:00
|
|
|
/* operators */
|
1998-01-16 15:13:05 +03:00
|
|
|
int i;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
for (i=0; op_tbl[i].token; i++) {
|
|
|
|
if (*op_tbl[i].name == *name &&
|
|
|
|
strcmp(op_tbl[i].name, name) == 0) {
|
|
|
|
id = op_tbl[i].token;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
goto id_register;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
if (name[last] == '=') {
|
|
|
|
/* attribute assignment */
|
|
|
|
char *buf = ALLOCA_N(char,last+1);
|
|
|
|
|
|
|
|
strncpy(buf, name, last);
|
|
|
|
buf[last] = '\0';
|
|
|
|
id = rb_intern(buf);
|
2002-12-24 11:53:56 +03:00
|
|
|
if (id > tLAST_TOKEN && !is_attrset_id(id)) {
|
1999-01-20 07:59:39 +03:00
|
|
|
id = rb_id_attrset(id);
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
goto id_register;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1999-10-12 08:53:36 +04:00
|
|
|
id = ID_ATTRSET;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
else if (ISUPPER(name[0])) {
|
1999-12-14 09:50:43 +03:00
|
|
|
id = ID_CONST;
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
else {
|
1999-01-20 07:59:39 +03:00
|
|
|
id = ID_LOCAL;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-10-22 08:09:24 +04:00
|
|
|
if (!ISDIGIT(*m)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
while (m <= name + last && is_identchar(*m)) {
|
|
|
|
m += mbclen(*m);
|
|
|
|
}
|
2001-06-05 11:50:59 +04:00
|
|
|
}
|
|
|
|
if (*m) id = ID_JUNK;
|
2005-10-22 08:09:24 +04:00
|
|
|
new_id:
|
2005-07-13 17:44:21 +04:00
|
|
|
id |= ++global_symbols.last_id << ID_SCOPE_SHIFT;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
id_register:
|
2006-09-02 19:05:27 +04:00
|
|
|
RBASIC(sym)->klass = rb_cSymbol;
|
|
|
|
OBJ_FREEZE(sym);
|
|
|
|
st_add_direct(global_symbols.sym_id, (st_data_t)sym, id);
|
|
|
|
st_add_direct(global_symbols.id_sym, id, (st_data_t)sym);
|
1998-01-16 15:13:05 +03:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2006-09-02 19:05:27 +04:00
|
|
|
ID
|
|
|
|
rb_intern(const char *name)
|
|
|
|
{
|
|
|
|
return rb_intern2(name, strlen(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_id2sym(ID id)
|
|
|
|
{
|
|
|
|
VALUE data;
|
|
|
|
|
2006-09-04 09:57:35 +04:00
|
|
|
while (!st_lookup(global_symbols.id_sym, id, &data)) {
|
|
|
|
rb_id2name(id);
|
|
|
|
}
|
|
|
|
if (!RBASIC(data)->klass) {
|
|
|
|
RBASIC(data)->klass = rb_cSymbol;
|
2006-09-02 19:05:27 +04:00
|
|
|
}
|
2006-09-04 09:57:35 +04:00
|
|
|
return data;
|
2006-09-02 19:05:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ID
|
|
|
|
rb_sym2id(VALUE sym)
|
|
|
|
{
|
|
|
|
ID data;
|
|
|
|
|
|
|
|
if (st_lookup(global_symbols.sym_id, sym, &data))
|
|
|
|
return data;
|
|
|
|
return rb_intern2(RSTRING_PTR(sym), RSTRING_LEN(sym));
|
|
|
|
}
|
|
|
|
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
const char *
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_id2name(ID id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
const char *name;
|
2005-10-20 17:15:19 +04:00
|
|
|
st_data_t data;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-12-24 11:53:56 +03:00
|
|
|
if (id < tLAST_TOKEN) {
|
1998-01-16 15:13:05 +03:00
|
|
|
int i = 0;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
for (i=0; op_tbl[i].token; i++) {
|
|
|
|
if (op_tbl[i].token == id)
|
|
|
|
return op_tbl[i].name;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-02 19:05:27 +04:00
|
|
|
if (st_lookup(global_symbols.id_sym, id, &data))
|
2006-12-31 18:02:22 +03:00
|
|
|
return RSTRING_PTR(data);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
if (is_attrset_id(id)) {
|
2000-06-05 12:46:59 +04:00
|
|
|
ID id2 = (id & ~ID_SCOPE_MASK) | ID_LOCAL;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-06-05 12:46:59 +04:00
|
|
|
again:
|
|
|
|
name = rb_id2name(id2);
|
|
|
|
if (name) {
|
|
|
|
char *buf = ALLOCA_N(char, strlen(name)+2);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-06-05 12:46:59 +04:00
|
|
|
strcpy(buf, name);
|
1998-01-16 15:13:05 +03:00
|
|
|
strcat(buf, "=");
|
|
|
|
rb_intern(buf);
|
|
|
|
return rb_id2name(id);
|
|
|
|
}
|
2000-06-05 12:46:59 +04:00
|
|
|
if (is_local_id(id2)) {
|
|
|
|
id2 = (id & ~ID_SCOPE_MASK) | ID_CONST;
|
|
|
|
goto again;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
static int
|
2006-09-02 19:05:27 +04:00
|
|
|
symbols_i(VALUE sym, ID value, VALUE ary)
|
2001-05-02 08:22:21 +04:00
|
|
|
{
|
2006-09-06 08:25:53 +04:00
|
|
|
if (!RBASIC(sym)->klass) {
|
|
|
|
RBASIC(sym)->klass = rb_cSymbol;
|
|
|
|
}
|
2006-09-02 19:05:27 +04:00
|
|
|
rb_ary_push(ary, sym);
|
2001-05-02 08:22:21 +04:00
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2003-12-28 09:33:07 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Symbol.all_symbols => array
|
|
|
|
*
|
|
|
|
* Returns an array of all the symbols currently in Ruby's symbol
|
|
|
|
* table.
|
|
|
|
*
|
|
|
|
* Symbol.all_symbols.size #=> 903
|
|
|
|
* Symbol.all_symbols[1,20] #=> [:floor, :ARGV, :Binding, :symlink,
|
|
|
|
* :chown, :EOFError, :$;, :String,
|
|
|
|
* :LOCK_SH, :"setuid?", :$<,
|
|
|
|
* :default_proc, :compact, :extend,
|
|
|
|
* :Tms, :getwd, :$=, :ThreadGroup,
|
|
|
|
* :wait2, :$>]
|
|
|
|
*/
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_sym_all_symbols(void)
|
2001-05-02 08:22:21 +04:00
|
|
|
{
|
2006-09-02 19:05:27 +04:00
|
|
|
VALUE ary = rb_ary_new2(global_symbols.sym_id->num_entries);
|
2001-05-02 08:22:21 +04:00
|
|
|
|
2006-09-02 19:05:27 +04:00
|
|
|
st_foreach(global_symbols.sym_id, symbols_i, ary);
|
2001-05-02 08:22:21 +04:00
|
|
|
return ary;
|
|
|
|
}
|
|
|
|
|
1999-11-17 10:30:37 +03:00
|
|
|
int
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_is_const_id(ID id)
|
1999-11-17 10:30:37 +03:00
|
|
|
{
|
1999-12-14 09:50:43 +03:00
|
|
|
if (is_const_id(id)) return Qtrue;
|
|
|
|
return Qfalse;
|
1999-11-17 10:30:37 +03:00
|
|
|
}
|
|
|
|
|
2000-02-18 09:59:36 +03:00
|
|
|
int
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_is_class_id(ID id)
|
2000-02-18 09:59:36 +03:00
|
|
|
{
|
2000-03-23 11:37:35 +03:00
|
|
|
if (is_class_id(id)) return Qtrue;
|
2000-02-18 09:59:36 +03:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
int
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_is_instance_id(ID id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
if (is_instance_id(id)) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2001-09-20 10:23:50 +04:00
|
|
|
int
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_is_local_id(ID id)
|
2001-09-20 10:23:50 +04:00
|
|
|
{
|
|
|
|
if (is_local_id(id)) return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2002-10-23 14:17:30 +04:00
|
|
|
int
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_is_junk_id(ID id)
|
2002-10-23 14:17:30 +04:00
|
|
|
{
|
|
|
|
if (is_junk_id(id)) return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#endif /* !RIPPER */
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_initialize(struct parser_params *parser)
|
2004-09-17 13:24:13 +04:00
|
|
|
{
|
2004-12-29 23:41:04 +03:00
|
|
|
parser->eofp = Qfalse;
|
2004-09-17 13:24:13 +04:00
|
|
|
|
|
|
|
parser->parser_lex_strterm = 0;
|
|
|
|
parser->parser_cond_stack = 0;
|
|
|
|
parser->parser_cmdarg_stack = 0;
|
|
|
|
parser->parser_class_nest = 0;
|
2005-08-16 19:24:15 +04:00
|
|
|
parser->parser_paren_nest = 0;
|
|
|
|
parser->parser_lpar_beg = 0;
|
2004-09-17 13:24:13 +04:00
|
|
|
parser->parser_in_single = 0;
|
|
|
|
parser->parser_in_def = 0;
|
|
|
|
parser->parser_in_defined = 0;
|
|
|
|
parser->parser_compile_for_eval = 0;
|
|
|
|
parser->parser_cur_mid = 0;
|
|
|
|
parser->parser_tokenbuf = NULL;
|
|
|
|
parser->parser_tokidx = 0;
|
|
|
|
parser->parser_toksiz = 0;
|
|
|
|
parser->parser_heredoc_end = 0;
|
|
|
|
parser->parser_command_start = Qtrue;
|
|
|
|
parser->parser_lex_pbeg = 0;
|
|
|
|
parser->parser_lex_p = 0;
|
|
|
|
parser->parser_lex_pend = 0;
|
2004-10-02 15:34:13 +04:00
|
|
|
parser->parser_lvtbl = 0;
|
2005-07-13 17:44:21 +04:00
|
|
|
parser->parser_ruby__end__seen = 0;
|
2004-12-29 23:41:04 +03:00
|
|
|
#ifndef RIPPER
|
|
|
|
parser->parser_eval_tree_begin = 0;
|
|
|
|
parser->parser_eval_tree = 0;
|
|
|
|
#else
|
2004-09-20 11:59:30 +04:00
|
|
|
parser->parser_ruby_sourcefile = Qnil;
|
|
|
|
parser->delayed = Qnil;
|
2004-12-29 23:41:04 +03:00
|
|
|
|
|
|
|
parser->result = Qnil;
|
|
|
|
parser->parsing_thread = Qnil;
|
|
|
|
parser->toplevel_p = Qtrue;
|
2004-09-20 07:03:12 +04:00
|
|
|
#endif
|
2005-10-08 13:58:25 +04:00
|
|
|
#ifdef YYMALLOC
|
|
|
|
parser->heap = NULL;
|
|
|
|
#endif
|
2004-09-17 13:24:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_mark(void *ptr)
|
2004-09-17 13:24:13 +04:00
|
|
|
{
|
|
|
|
struct parser_params *p = (struct parser_params*)ptr;
|
|
|
|
|
|
|
|
rb_gc_mark((VALUE)p->parser_lex_strterm);
|
|
|
|
rb_gc_mark(p->parser_lex_input);
|
|
|
|
rb_gc_mark(p->parser_lex_lastline);
|
2004-12-29 23:41:04 +03:00
|
|
|
#ifndef RIPPER
|
2004-09-22 04:19:15 +04:00
|
|
|
rb_gc_mark((VALUE)p->parser_eval_tree_begin) ;
|
|
|
|
rb_gc_mark((VALUE)p->parser_eval_tree) ;
|
2005-07-13 17:44:21 +04:00
|
|
|
rb_gc_mark(p->debug_lines);
|
2004-12-29 23:41:04 +03:00
|
|
|
#else
|
|
|
|
rb_gc_mark(p->parser_ruby_sourcefile);
|
|
|
|
rb_gc_mark(p->delayed);
|
2005-11-29 17:57:18 +03:00
|
|
|
rb_gc_mark(p->value);
|
2004-12-29 23:41:04 +03:00
|
|
|
rb_gc_mark(p->result);
|
|
|
|
rb_gc_mark(p->parsing_thread);
|
2004-09-17 13:24:13 +04:00
|
|
|
#endif
|
2005-10-08 13:58:25 +04:00
|
|
|
#ifdef YYMALLOC
|
|
|
|
rb_gc_mark((VALUE)p->heap);
|
|
|
|
#endif
|
2004-09-17 13:24:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_free(void *ptr)
|
2004-09-17 13:24:13 +04:00
|
|
|
{
|
|
|
|
struct parser_params *p = (struct parser_params*)ptr;
|
2004-10-02 15:34:13 +04:00
|
|
|
struct local_vars *local, *prev;
|
2004-09-17 13:24:13 +04:00
|
|
|
|
|
|
|
if (p->parser_tokenbuf) {
|
2006-12-31 18:02:22 +03:00
|
|
|
xfree(p->parser_tokenbuf);
|
2004-10-02 15:34:13 +04:00
|
|
|
}
|
|
|
|
for (local = p->parser_lvtbl; local; local = prev) {
|
|
|
|
if (local->tbl && !local->nofree)
|
|
|
|
xfree(local->tbl);
|
|
|
|
prev = local->prev;
|
|
|
|
xfree(local);
|
2004-09-17 13:24:13 +04:00
|
|
|
}
|
2004-10-02 15:34:13 +04:00
|
|
|
xfree(p);
|
2004-09-17 13:24:13 +04:00
|
|
|
}
|
|
|
|
|
2004-09-20 09:40:23 +04:00
|
|
|
#ifndef RIPPER
|
2004-12-29 23:41:04 +03:00
|
|
|
static struct parser_params *
|
2005-09-26 16:01:29 +04:00
|
|
|
parser_new(void)
|
2004-09-17 13:24:13 +04:00
|
|
|
{
|
|
|
|
struct parser_params *p;
|
|
|
|
|
|
|
|
p = ALLOC_N(struct parser_params, 1);
|
|
|
|
MEMZERO(p, struct parser_params, 1);
|
|
|
|
parser_initialize(p);
|
|
|
|
return p;
|
|
|
|
}
|
2004-12-29 23:41:04 +03:00
|
|
|
|
2005-07-13 17:44:21 +04:00
|
|
|
VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_parser_new(void)
|
2004-12-29 23:41:04 +03:00
|
|
|
{
|
|
|
|
struct parser_params *p = parser_new();
|
|
|
|
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
return Data_Wrap_Struct(0, parser_mark, parser_free, p);
|
2004-12-29 23:41:04 +03:00
|
|
|
}
|
2004-09-17 13:24:13 +04:00
|
|
|
|
2005-07-13 17:44:21 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ripper#end_seen? -> Boolean
|
|
|
|
*
|
|
|
|
* Return if parsed source ended by +\_\_END\_\_+.
|
|
|
|
* This number starts from 1.
|
|
|
|
*/
|
|
|
|
VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
rb_parser_end_seen_p(VALUE vparser)
|
2005-07-13 17:44:21 +04:00
|
|
|
{
|
|
|
|
struct parser_params *parser;
|
|
|
|
|
|
|
|
Data_Get_Struct(vparser, struct parser_params, parser);
|
|
|
|
return ruby__end__seen ? Qtrue : Qfalse;
|
|
|
|
}
|
2005-10-08 13:58:25 +04:00
|
|
|
|
|
|
|
#ifdef YYMALLOC
|
2005-10-13 18:26:00 +04:00
|
|
|
#define HEAPCNT(n, size) ((n) * (size) / sizeof(YYSTYPE))
|
2005-11-30 17:52:30 +03:00
|
|
|
#define NEWHEAP() rb_node_newnode(NODE_ALLOCA, 0, (VALUE)parserp->heap, 0)
|
|
|
|
#define ADD2HEAP(n, c, p) ((parserp->heap = (n))->u1.node = (p), \
|
|
|
|
(n)->u3.cnt = (c), (p))
|
2005-10-08 13:58:25 +04:00
|
|
|
|
|
|
|
void *
|
|
|
|
rb_parser_malloc(struct parser_params *parserp, size_t size)
|
|
|
|
{
|
2005-11-30 17:52:30 +03:00
|
|
|
size_t cnt = HEAPCNT(1, size);
|
|
|
|
NODE *n = NEWHEAP();
|
|
|
|
void *ptr = xmalloc(size);
|
2005-10-08 13:58:25 +04:00
|
|
|
|
2005-11-30 17:52:30 +03:00
|
|
|
return ADD2HEAP(n, cnt, ptr);
|
2005-10-08 13:58:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
rb_parser_calloc(struct parser_params *parserp, size_t nelem, size_t size)
|
|
|
|
{
|
2005-11-30 17:52:30 +03:00
|
|
|
size_t cnt = HEAPCNT(nelem, size);
|
|
|
|
NODE *n = NEWHEAP();
|
|
|
|
void *ptr = xcalloc(nelem, size);
|
2005-10-08 13:58:25 +04:00
|
|
|
|
2005-11-30 17:52:30 +03:00
|
|
|
return ADD2HEAP(n, cnt, ptr);
|
2005-10-08 13:58:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
rb_parser_realloc(struct parser_params *parserp, void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
NODE *n;
|
|
|
|
size_t cnt = HEAPCNT(1, size);
|
|
|
|
|
|
|
|
if (ptr && (n = parserp->heap) != NULL) {
|
|
|
|
do {
|
|
|
|
if (n->u1.node == ptr) {
|
|
|
|
n->u1.node = ptr = xrealloc(ptr, size);
|
|
|
|
if (n->u3.cnt) n->u3.cnt = cnt;
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
} while ((n = n->u2.node) != NULL);
|
|
|
|
}
|
2005-11-30 17:52:30 +03:00
|
|
|
n = NEWHEAP();
|
|
|
|
ptr = xrealloc(ptr, size);
|
|
|
|
return ADD2HEAP(n, cnt, ptr);
|
2005-10-08 13:58:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_parser_free(struct parser_params *parserp, void *ptr)
|
|
|
|
{
|
|
|
|
NODE **prev = &parserp->heap, *n;
|
|
|
|
|
2005-10-20 17:15:19 +04:00
|
|
|
while ((n = *prev) != NULL) {
|
2005-10-08 13:58:25 +04:00
|
|
|
if (n->u1.node == ptr) {
|
|
|
|
*prev = n->u2.node;
|
|
|
|
rb_gc_force_recycle((VALUE)n);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prev = &n->u2.node;
|
|
|
|
}
|
|
|
|
xfree(ptr);
|
|
|
|
}
|
|
|
|
#endif
|
2005-07-28 16:49:31 +04:00
|
|
|
#endif
|
2005-07-13 17:44:21 +04:00
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER
|
|
|
|
#ifdef RIPPER_DEBUG
|
2005-09-25 04:39:22 +04:00
|
|
|
extern int rb_is_pointer_to_heap(VALUE);
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-10-20 05:38:04 +04:00
|
|
|
/* :nodoc: */
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_validate_object(VALUE self, VALUE x)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
if (x == Qfalse) return x;
|
|
|
|
if (x == Qtrue) return x;
|
|
|
|
if (x == Qnil) return x;
|
|
|
|
if (x == Qundef)
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eArgError, "Qundef given");
|
2004-09-12 19:21:49 +04:00
|
|
|
if (FIXNUM_P(x)) return x;
|
|
|
|
if (SYMBOL_P(x)) return x;
|
|
|
|
if (!rb_is_pointer_to_heap(x))
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eArgError, "invalid pointer: %p", x);
|
2004-09-12 19:21:49 +04:00
|
|
|
switch (TYPE(x)) {
|
|
|
|
case T_STRING:
|
|
|
|
case T_OBJECT:
|
|
|
|
case T_ARRAY:
|
|
|
|
case T_BIGNUM:
|
|
|
|
case T_FLOAT:
|
2006-12-31 18:02:22 +03:00
|
|
|
return x;
|
2004-09-12 19:21:49 +04:00
|
|
|
case T_NODE:
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eArgError, "NODE given: %p", x);
|
2004-09-12 19:21:49 +04:00
|
|
|
default:
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong type of ruby object: %p (%s)",
|
|
|
|
x, rb_obj_classname(x));
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define validate(x)
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch0(struct parser_params *parser, ID mid)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
return rb_funcall(parser->value, mid, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch1(struct parser_params *parser, ID mid, VALUE a)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
validate(a);
|
|
|
|
return rb_funcall(parser->value, mid, 1, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch2(struct parser_params *parser, ID mid, VALUE a, VALUE b)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
validate(a);
|
|
|
|
validate(b);
|
|
|
|
return rb_funcall(parser->value, mid, 2, a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch3(struct parser_params *parser, ID mid, VALUE a, VALUE b, VALUE c)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
validate(a);
|
|
|
|
validate(b);
|
|
|
|
validate(c);
|
|
|
|
return rb_funcall(parser->value, mid, 3, a, b, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch4(struct parser_params *parser, ID mid, VALUE a, VALUE b, VALUE c, VALUE d)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
validate(a);
|
|
|
|
validate(b);
|
|
|
|
validate(c);
|
|
|
|
validate(d);
|
|
|
|
return rb_funcall(parser->value, mid, 4, a, b, c, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_dispatch5(struct parser_params *parser, ID mid, VALUE a, VALUE b, VALUE c, VALUE d, VALUE e)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
validate(a);
|
|
|
|
validate(b);
|
|
|
|
validate(c);
|
|
|
|
validate(d);
|
|
|
|
validate(e);
|
|
|
|
return rb_funcall(parser->value, mid, 5, a, b, c, d, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct kw_assoc {
|
|
|
|
ID id;
|
|
|
|
const char *name;
|
|
|
|
} keyword_to_name[] = {
|
2006-06-26 18:15:49 +04:00
|
|
|
{keyword_class, "class"},
|
|
|
|
{keyword_module, "module"},
|
|
|
|
{keyword_def, "def"},
|
|
|
|
{keyword_undef, "undef"},
|
|
|
|
{keyword_begin, "begin"},
|
|
|
|
{keyword_rescue, "rescue"},
|
|
|
|
{keyword_ensure, "ensure"},
|
|
|
|
{keyword_end, "end"},
|
|
|
|
{keyword_if, "if"},
|
|
|
|
{keyword_unless, "unless"},
|
|
|
|
{keyword_then, "then"},
|
|
|
|
{keyword_elsif, "elsif"},
|
|
|
|
{keyword_else, "else"},
|
|
|
|
{keyword_case, "case"},
|
|
|
|
{keyword_when, "when"},
|
|
|
|
{keyword_while, "while"},
|
|
|
|
{keyword_until, "until"},
|
|
|
|
{keyword_for, "for"},
|
|
|
|
{keyword_break, "break"},
|
|
|
|
{keyword_next, "next"},
|
|
|
|
{keyword_redo, "redo"},
|
|
|
|
{keyword_retry, "retry"},
|
|
|
|
{keyword_in, "in"},
|
|
|
|
{keyword_do, "do"},
|
|
|
|
{keyword_do_cond, "do"},
|
|
|
|
{keyword_do_block, "do"},
|
|
|
|
{keyword_return, "return"},
|
|
|
|
{keyword_yield, "yield"},
|
|
|
|
{keyword_super, "super"},
|
|
|
|
{keyword_self, "self"},
|
|
|
|
{keyword_nil, "nil"},
|
|
|
|
{keyword_true, "true"},
|
|
|
|
{keyword_false, "false"},
|
|
|
|
{keyword_and, "and"},
|
|
|
|
{keyword_or, "or"},
|
|
|
|
{keyword_not, "not"},
|
|
|
|
{modifier_if, "if"},
|
|
|
|
{modifier_unless, "unless"},
|
|
|
|
{modifier_while, "while"},
|
|
|
|
{modifier_until, "until"},
|
|
|
|
{modifier_rescue, "rescue"},
|
|
|
|
{keyword_alias, "alias"},
|
|
|
|
{keyword_defined, "defined?"},
|
|
|
|
{keyword_BEGIN, "BEGIN"},
|
|
|
|
{keyword_END, "END"},
|
|
|
|
{keyword__LINE__, "__LINE__"},
|
|
|
|
{keyword__FILE__, "__FILE__"},
|
2004-09-12 19:21:49 +04:00
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char*
|
2005-09-26 16:01:29 +04:00
|
|
|
keyword_id_to_str(ID id)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
struct kw_assoc *a;
|
|
|
|
|
|
|
|
for (a = keyword_to_name; a->id; a++) {
|
2006-12-31 18:02:22 +03:00
|
|
|
if (a->id == id)
|
|
|
|
return a->name;
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_id2sym(ID id)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
char buf[8];
|
|
|
|
|
|
|
|
if (id <= 256) {
|
2006-12-31 18:02:22 +03:00
|
|
|
buf[0] = id;
|
|
|
|
buf[1] = '\0';
|
|
|
|
return ID2SYM(rb_intern(buf));
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
if ((name = keyword_id_to_str(id))) {
|
2006-12-31 18:02:22 +03:00
|
|
|
return ID2SYM(rb_intern(name));
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
switch (id) {
|
|
|
|
case tOROP:
|
2006-12-31 18:02:22 +03:00
|
|
|
name = "||";
|
|
|
|
break;
|
2004-09-12 19:21:49 +04:00
|
|
|
case tANDOP:
|
2006-12-31 18:02:22 +03:00
|
|
|
name = "&&";
|
|
|
|
break;
|
2004-09-12 19:21:49 +04:00
|
|
|
default:
|
2006-12-31 18:02:22 +03:00
|
|
|
name = rb_id2name(id);
|
|
|
|
if (!name) {
|
|
|
|
rb_bug("cannot convert ID to string: %ld", (unsigned long)id);
|
|
|
|
}
|
|
|
|
break;
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
return ID2SYM(rb_intern(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_intern(const char *s)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
return ID2SYM(rb_intern(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-09-17 13:24:13 +04:00
|
|
|
ripper_compile_error(struct parser_params *parser, const char *fmt, ...)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2005-07-23 05:02:18 +04:00
|
|
|
VALUE str;
|
2004-09-12 19:21:49 +04:00
|
|
|
va_list args;
|
|
|
|
|
2005-09-26 16:01:29 +04:00
|
|
|
va_start(args, fmt);
|
2005-07-23 05:02:18 +04:00
|
|
|
str = rb_vsprintf(fmt, args);
|
2004-09-12 19:21:49 +04:00
|
|
|
va_end(args);
|
2005-07-23 05:02:18 +04:00
|
|
|
rb_funcall(parser->value, rb_intern("compile_error"), 1, str);
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_warn0(struct parser_params *parser, const char *fmt)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
rb_funcall(parser->value, rb_intern("warn"), 1, rb_str_new2(fmt));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_warnI(struct parser_params *parser, const char *fmt, int a)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
rb_funcall(parser->value, rb_intern("warn"), 2,
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_str_new2(fmt), INT2NUM(a));
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_warnS(struct parser_params *parser, const char *fmt, const char *str)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
rb_funcall(parser->value, rb_intern("warn"), 2,
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_str_new2(fmt), rb_str_new2(str));
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_warning0(struct parser_params *parser, const char *fmt)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
rb_funcall(parser->value, rb_intern("warning"), 1, rb_str_new2(fmt));
|
|
|
|
}
|
|
|
|
|
2005-07-28 06:33:28 +04:00
|
|
|
static void
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_warningS(struct parser_params *parser, const char *fmt, const char *str)
|
2005-07-28 06:33:28 +04:00
|
|
|
{
|
|
|
|
rb_funcall(parser->value, rb_intern("warning"), 2,
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_str_new2(fmt), rb_str_new2(str));
|
2005-07-28 06:33:28 +04:00
|
|
|
}
|
|
|
|
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_lex_get_generic(struct parser_params *parser, VALUE src)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
return rb_funcall(src, ripper_id_gets, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_s_allocate(VALUE klass)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *p;
|
2004-09-12 19:21:49 +04:00
|
|
|
VALUE self;
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
p = ALLOC_N(struct parser_params, 1);
|
|
|
|
MEMZERO(p, struct parser_params, 1);
|
2004-09-22 04:19:15 +04:00
|
|
|
self = Data_Wrap_Struct(klass, parser_mark, parser_free, p);
|
2004-09-12 19:21:49 +04:00
|
|
|
p->value = self;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
#define ripper_initialized_p(r) ((r)->parser_lex_input != 0)
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-09-14 17:11:29 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Ripper.new(src, filename="(ripper)", lineno=1) -> ripper
|
|
|
|
*
|
|
|
|
* Create a new Ripper object.
|
|
|
|
* _src_ must be a String, a IO, or an Object which has #gets method.
|
|
|
|
*
|
|
|
|
* This method does not starts parsing.
|
|
|
|
* See also Ripper#parse and Ripper.parse.
|
|
|
|
*/
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_initialize(int argc, VALUE *argv, VALUE self)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *parser;
|
2004-09-12 19:21:49 +04:00
|
|
|
VALUE src, fname, lineno;
|
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
Data_Get_Struct(self, struct parser_params, parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
rb_scan_args(argc, argv, "12", &src, &fname, &lineno);
|
2005-10-11 16:42:50 +04:00
|
|
|
if (rb_obj_respond_to(src, ripper_id_gets, 0)) {
|
2004-09-17 13:24:13 +04:00
|
|
|
parser->parser_lex_gets = ripper_lex_get_generic;
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
else {
|
2006-12-31 18:02:22 +03:00
|
|
|
StringValue(src);
|
|
|
|
parser->parser_lex_gets = lex_get_str;
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
2004-09-17 13:24:13 +04:00
|
|
|
parser->parser_lex_input = src;
|
2004-09-12 19:21:49 +04:00
|
|
|
parser->eofp = Qfalse;
|
|
|
|
if (NIL_P(fname)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
fname = rb_str_new2("(ripper)");
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
else {
|
2006-12-31 18:02:22 +03:00
|
|
|
StringValue(fname);
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
2004-09-17 13:24:13 +04:00
|
|
|
parser_initialize(parser);
|
|
|
|
parser->parser_ruby_sourcefile = fname;
|
|
|
|
parser->parser_ruby_sourceline = NIL_P(lineno) ? 0 : NUM2INT(lineno) - 1;
|
2004-09-12 19:21:49 +04:00
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2004-09-14 17:11:29 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Ripper.yydebug -> true or false
|
|
|
|
*
|
|
|
|
* Get yydebug.
|
|
|
|
*/
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_s_get_yydebug(VALUE self)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
return ripper_yydebug ? Qtrue : Qfalse;
|
|
|
|
}
|
|
|
|
|
2004-09-14 17:11:29 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Ripper.yydebug = flag
|
|
|
|
*
|
|
|
|
* Set yydebug.
|
|
|
|
*/
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_s_set_yydebug(VALUE self, VALUE flag)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
ripper_yydebug = RTEST(flag);
|
|
|
|
return flag;
|
|
|
|
}
|
|
|
|
|
2005-09-25 04:39:22 +04:00
|
|
|
extern VALUE rb_thread_pass(void);
|
2004-09-12 19:21:49 +04:00
|
|
|
|
|
|
|
struct ripper_args {
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *parser;
|
2004-09-12 19:21:49 +04:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
};
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_parse0(VALUE parser_v)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *parser;
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
Data_Get_Struct(parser_v, struct parser_params, parser);
|
2005-05-14 06:48:07 +04:00
|
|
|
parser_prepare(parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
ripper_yyparse((void*)parser);
|
|
|
|
return parser->result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_ensure(VALUE parser_v)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *parser;
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
Data_Get_Struct(parser_v, struct parser_params, parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
parser->parsing_thread = Qnil;
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2004-09-14 17:11:29 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ripper#parse
|
|
|
|
*
|
|
|
|
* Start parsing and returns the value of the root action.
|
|
|
|
*/
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_parse(VALUE self)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *parser;
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
Data_Get_Struct(self, struct parser_params, parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
if (!ripper_initialized_p(parser)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eArgError, "method called for uninitialized object");
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
if (!NIL_P(parser->parsing_thread)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
if (parser->parsing_thread == rb_thread_current())
|
|
|
|
rb_raise(rb_eArgError, "Ripper#parse is not reentrant");
|
|
|
|
else
|
|
|
|
rb_raise(rb_eArgError, "Ripper#parse is not multithread-safe");
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
parser->parsing_thread = rb_thread_current();
|
|
|
|
rb_ensure(ripper_parse0, self, ripper_ensure, self);
|
|
|
|
|
|
|
|
return parser->result;
|
|
|
|
}
|
|
|
|
|
2004-09-14 17:11:29 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ripper#column -> Integer
|
|
|
|
*
|
|
|
|
* Return column number of current parsing line.
|
|
|
|
* This number starts from 0.
|
|
|
|
*/
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_column(VALUE self)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *parser;
|
2004-09-20 07:03:12 +04:00
|
|
|
long col;
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
Data_Get_Struct(self, struct parser_params, parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
if (!ripper_initialized_p(parser)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eArgError, "method called for uninitialized object");
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
if (NIL_P(parser->parsing_thread)) return Qnil;
|
2004-09-20 08:23:18 +04:00
|
|
|
col = parser->tokp - parser->parser_lex_pbeg;
|
2004-09-20 07:03:12 +04:00
|
|
|
return LONG2NUM(col);
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
|
2004-09-14 17:11:29 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ripper#lineno -> Integer
|
|
|
|
*
|
|
|
|
* Return line number of current parsing line.
|
|
|
|
* This number starts from 1.
|
|
|
|
*/
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_lineno(VALUE self)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
2004-09-17 13:24:13 +04:00
|
|
|
struct parser_params *parser;
|
2004-09-12 19:21:49 +04:00
|
|
|
|
2004-09-17 13:24:13 +04:00
|
|
|
Data_Get_Struct(self, struct parser_params, parser);
|
2004-09-12 19:21:49 +04:00
|
|
|
if (!ripper_initialized_p(parser)) {
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_raise(rb_eArgError, "method called for uninitialized object");
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
if (NIL_P(parser->parsing_thread)) return Qnil;
|
2004-09-17 13:24:13 +04:00
|
|
|
return INT2NUM(parser->parser_ruby_sourceline);
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef RIPPER_DEBUG
|
2004-10-20 05:38:04 +04:00
|
|
|
/* :nodoc: */
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_assert_Qundef(VALUE self, VALUE obj, VALUE msg)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
StringValue(msg);
|
|
|
|
if (obj == Qundef) {
|
2006-10-14 18:33:10 +04:00
|
|
|
rb_raise(rb_eArgError, "%s", RSTRING_PTR(msg));
|
2004-09-12 19:21:49 +04:00
|
|
|
}
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2004-10-20 05:38:04 +04:00
|
|
|
/* :nodoc: */
|
2004-09-12 19:21:49 +04:00
|
|
|
static VALUE
|
2005-09-26 16:01:29 +04:00
|
|
|
ripper_value(VALUE self, VALUE obj)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
return ULONG2NUM(obj);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
2005-09-24 01:37:38 +04:00
|
|
|
Init_ripper(void)
|
2004-09-12 19:21:49 +04:00
|
|
|
{
|
|
|
|
VALUE Ripper;
|
|
|
|
|
|
|
|
Ripper = rb_define_class("Ripper", rb_cObject);
|
|
|
|
rb_define_const(Ripper, "Version", rb_str_new2(RIPPER_VERSION));
|
|
|
|
rb_define_singleton_method(Ripper, "yydebug", ripper_s_get_yydebug, 0);
|
|
|
|
rb_define_singleton_method(Ripper, "yydebug=", ripper_s_set_yydebug, 1);
|
|
|
|
rb_define_alloc_func(Ripper, ripper_s_allocate);
|
|
|
|
rb_define_method(Ripper, "initialize", ripper_initialize, -1);
|
|
|
|
rb_define_method(Ripper, "parse", ripper_parse, 0);
|
|
|
|
rb_define_method(Ripper, "column", ripper_column, 0);
|
|
|
|
rb_define_method(Ripper, "lineno", ripper_lineno, 0);
|
2005-07-13 17:44:21 +04:00
|
|
|
rb_define_method(Ripper, "end_seen?", rb_parser_end_seen_p, 0);
|
2004-09-12 19:21:49 +04:00
|
|
|
#ifdef RIPPER_DEBUG
|
|
|
|
rb_define_method(rb_mKernel, "assert_Qundef", ripper_assert_Qundef, 2);
|
|
|
|
rb_define_method(rb_mKernel, "rawVALUE", ripper_value, 1);
|
|
|
|
rb_define_method(rb_mKernel, "validate_object", ripper_validate_object, 1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ripper_id_gets = rb_intern("gets");
|
2005-09-24 01:37:38 +04:00
|
|
|
ripper_init_eventids1(Ripper);
|
|
|
|
ripper_init_eventids2(Ripper);
|
2004-09-12 19:21:49 +04:00
|
|
|
/* ensure existing in symbol table */
|
|
|
|
rb_intern("||");
|
|
|
|
rb_intern("&&");
|
|
|
|
}
|
|
|
|
#endif /* RIPPER */
|
2006-09-02 19:05:27 +04:00
|
|
|
|