aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
Commit message (Expand)AuthorAgeFilesLines
* * eval.c (rb_obj_instance_eval): evaluates under special singletonnobu2004-08-181-8/+1
* * eval.c (blk_free): fixed serious memory leak. [ruby-dev:24013]matz2004-08-021-1/+14
* * eval.c (is_defined): stupid mistakes fixed. [ruby-dev:24006]matz2004-07-311-2/+3
* * eval.c (is_defined): avoid unnecessary method invocations.matz2004-07-311-9/+11
* * eval.c (is_defined): call is_defined() before invokingmatz2004-07-301-5/+10
* * eval.c (rb_call0): should call rb_call_super() directly formatz2004-07-281-2/+2
* * env.h: remove argv from ruby_frame.matz2004-07-281-80/+21
* * eval.c (rb_call0): update ruby_frame->argv with the defaultmatz2004-07-271-1/+1
* * eval.c (rb_eval): copy on write for argument local variablematz2004-07-271-3/+3
* * gc.c (define_final): should not disclose NODE* to Ruby world.matz2004-07-231-0/+3
* * eval.c (THREAD_ALLOC): th->thread should be initialized to NULL.matz2004-07-171-0/+1
* * eval.c (rb_thread_raise): accept third argument as well asnobu2004-07-091-11/+26
* * eval.c (rb_thread_yield, rb_f_catch): 4th argument to rb_yield_0()nobu2004-07-051-2/+2
* * eval.c (rb_eval_cmd, rb_thread_trap_eval): restore safe level.nobu2004-06-291-13/+22
* * eval.c (return_jump, break_jump): raise unexpceted local jumpnobu2004-06-221-2/+2
* * eval.c (proc_set_safe_level, proc_invoke, rb_mod_define_method): notnobu2004-06-191-2/+7
* * eval.c (method_call): allow changing $SAFE. [ruby-dev:23713]nobu2004-06-191-4/+5
* * eval.c (eval): adjust indent.nobu2004-06-181-5/+5
* * eval.c (proc_save_safe_level, rb_set_safe_level, safe_setter): limitnobu2004-06-181-1/+8
* * eval.c (rb_mod_freeze): prepare string representation beforematz2004-06-161-2/+0
* * eval.c (rb_eval): bad influence on frame node.nobu2004-05-281-4/+1
* * eval.c (rb_eval, eval): make line number consistent on eval withnobu2004-05-261-3/+4
* * eval.c (rb_yield_0, proc_invoke, proc_arity): allow passing a blocknobu2004-05-251-20/+43
* * eval.c (rb_method_node): search cache entry first.matz2004-05-181-0/+6
* * eval.c (eval): forgot to restore $SAFE value before evaluatingmatz2004-05-141-0/+1
* * range.c (range_each_func): terminates loop if generating valuematz2004-05-141-29/+12
* * eval.c (eval): warning during eval should not cause deadlock.matz2004-05-101-3/+6
* * parse.y (string_content): turn off NODE_NEWLINE flag to avoidmatz2004-05-071-5/+24
* * eval.c (rb_mod_define_method): allow binding methods to modules.nobu2004-04-211-1/+2
* * array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c,nobu2004-04-141-1/+1
* * pack.c (pack_pack): use NUM2INT() instead of num2i32().matz2004-04-071-12/+9
* * file.c (rb_get_path): get path string via "to_path" method ifmatz2004-04-071-6/+3
* * error.c (Init_Exception): remove Exception#to_str. [Ruby2]matz2004-04-051-1/+1
* * eval.c (top_include): include in the wrapped load is done formatz2004-04-021-5/+3
* * eval.c (block_pass): should increment unique identifier of thematz2004-04-021-0/+1
* * eval.c (Init_load): make $LOADED_FEATURES built-in. [ruby-dev:23299]aamine2004-04-021-0/+1
* * eval.c (rb_eval): fix SEGV at retry in iterator's receiver.nobu2004-03-301-2/+1
* * exception message clean-up by Ian Macdonald <ian@caliban.org>.matz2004-03-291-10/+10
* * object.c (rb_mod_cvar_get): new method Module#class_variable_get.matz2004-03-231-1/+0
* * eval.c (rb_require_safe): preserve old ruby_errinfo.matz2004-03-201-4/+6
* * variable.c (rb_cvar_set): class variables become private to thematz2004-03-191-1/+1
* * eval.c (proc_eq): avoid false positive by using scope andmatz2004-03-181-3/+3
* * eval.c: remove specialized version of rb_Array(). use simplematz2004-03-181-28/+0
* * eval.c (rb_yield_0): should not re-submit TAG_BREAK if thismatz2004-03-151-0/+3
* * eval.c (rb_thread_raise): err at unstarted thread. (PR#1302)nobu2004-03-141-0/+3
* * eval.c (return_jump): set return value to the returnmatz2004-03-101-57/+11
* * struct.c (rb_struct_s_def): Struct::new executes block withmatz2004-03-101-70/+174
* * eval.c (method_hash): new method. [ruby-talk:93968]matz2004-03-031-8/+69
* * eval.c (proc_invoke): no orphan block check is needed when pcallmatz2004-02-271-17/+28
* * eval.c (localjump_destination): lambda should not interferematz2004-02-261-4/+10