--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Evaluates a string containing Ruby source code, or the given block, within the context of the receiver (obj). In order to set the context, the variable self is set to obj while the code is executing, giving the code access to obj's instance variables. In the version of instance_eval that takes a String, the optional second and third parameters supply a filename and starting line number that are used when reporting compilation errors. - !ruby/struct:SM::Flow::VERB body: " class Klass\n def initialize\n @secret = 99\n end\n end\n k = Klass.new\n k.instance_eval { @secret } #=> 99\n" full_name: Object#instance_eval is_singleton: false name: instance_eval params: | obj.instance_eval(string [, filename [, lineno]] ) => obj obj.instance_eval {| | block } => obj visibility: public