diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-17 10:34:30 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-17 10:34:30 +0000 |
| commit | 8026cf3d34a12e432640666d329d654fa64e0626 (patch) | |
| tree | 379c349bd378072c2907f4e6579b677573a2e087 /parse.y | |
| parent | acc6cd3ae29505eb02c9cd82144ee2906ac87d23 (diff) | |
| download | ruby-8026cf3d34a12e432640666d329d654fa64e0626.tar.gz ruby-8026cf3d34a12e432640666d329d654fa64e0626.tar.xz ruby-8026cf3d34a12e432640666d329d654fa64e0626.zip | |
* node.h (NODE_ATTRASGN): new node, assignment to attribute.
[ruby-core:00637].
* eval.c (is_defined, rb_eval): ditto.
* parse.y (attrset, node_assign): ditto.
* string.c (rb_str_substr): tail sharing. [ruby-core:00650]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4705,7 +4705,7 @@ attrset(recv, id) ID id; { value_expr(recv); - return NEW_CALL(recv, rb_id_attrset(id), 0); + return NEW_ATTRASGN(recv, rb_id_attrset(id), 0); } static void @@ -4765,6 +4765,7 @@ node_assign(lhs, rhs) lhs->nd_value = rhs; break; + case NODE_ATTRASGN: case NODE_CALL: lhs->nd_args = arg_add(lhs->nd_args, rhs); break; |
