Subject: Re: Adjusting the Scope of Blocks
From: Dan Doel <djd15 po.cwru.edu>
Date: Wed, 10 Dec 2003 09:40:53 +0900
References: 8764587646
In-reply-to: 87646
Isn't:
A.class_eval { n }
identical to:
A.instance_eval { n }
Because #class_eval basically just sets self to the class object?
I've never figured out the difference between the two. Is there one?
- Dan