265件ヒット
[1-100件を表示]
(0.102秒)
キーワード
-
Init
_ eval (12) -
eval
_ node (12) -
eval
_ under (12) -
eval
_ under _ i (12) -
rb
_ compile _ cstr (12) -
rb
_ compile _ file (12) -
rb
_ compile _ string (12) -
rb
_ eval (12) -
rb
_ eval _ cmd (12) -
rb
_ eval _ string (12) -
rb
_ eval _ string _ protect (12) -
rb
_ eval _ string _ wrap (12) -
rb
_ f _ eval (12) -
rb
_ mod _ module _ eval (12) -
rb
_ obj _ instance _ eval (12) -
rb
_ parser _ while _ loop (12) -
rb
_ thread _ select (1) -
rb
_ thread _ trap _ eval (12) -
rb
_ thread _ wait _ for (12) -
rb
_ trace _ eval (12) -
rb
_ trap _ eval (12) -
specific
_ eval (12)
検索結果
先頭5件
- static VALUE eval(VALUE self
, VALUE src , VALUE scope , char *file , int line) - static VALUE specific
_ eval(int argc , VALUE *argv , VALUE klass , VALUE self) - static VALUE eval
_ under(VALUE under , VALUE self , VALUE src , const char *file , int line) - VALUE rb
_ mod _ module _ eval(int argc , VALUE *argv , VALUE mod) - VALUE rb
_ eval _ cmd(VALUE cmd , VALUE arg , int tcheck)
-
static VALUE eval(VALUE self
, VALUE src , VALUE scope , char *file , int line) (44517.0) -
eval の実体。文字列 src を評価します。 そのとき第三引数 scope が nil でなければ そのコンテキストの元で評価します。
...
eval の実体。文字列 src を評価します。
そのとき第三引数 scope が nil でなければ
そのコンテキストの元で評価します。
また src をコンパイルするとき、
ファイル file の line 行目に配置されていると仮定します。... -
static VALUE specific
_ eval(int argc , VALUE *argv , VALUE klass , VALUE self) (12533.0) -
rb_obj_instance_eval と rb_mod_module_eval を共通化するための補助関数です。
...rb_obj_instance_eval と rb_mod_module_eval を共通化するための補助関数です。... -
static VALUE eval
_ under(VALUE under , VALUE self , VALUE src , const char *file , int line) (12501.0) -
-
VALUE rb
_ mod _ module _ eval(int argc , VALUE *argv , VALUE mod) (12417.0) -
Module#module_eval の実体です。
...Module#module_eval の実体です。... -
VALUE rb
_ eval _ cmd(VALUE cmd , VALUE arg , int tcheck) (12401.0) -
-
VALUE rb
_ obj _ instance _ eval(int argc , VALUE *argv , VALUE self) (12401.0) -
-
static VALUE rb
_ f _ eval(int argc , VALUE *argv , VALUE self) (12401.0) -
-
NODE * rb
_ compile _ file(const char *f , VALUE file , int start) (12349.0) -
Ruby の IO オブジェクト file から文字列を読み込み、 それを Ruby プログラムとして構文木にコンパイルします。 作成した構文木は ruby_eval_tree と ruby_eval_tree_begin に 格納し、同時に ruby_eval_tree を返します。 またコンパイルするときにファイル f の line 行目からをコンパイル していると仮定します。
...file から文字列を読み込み、
それを Ruby プログラムとして構文木にコンパイルします。
作成した構文木は ruby_eval_tree と ruby_eval_tree_begin に
格納し、同時に ruby_eval_tree を返します。
またコンパイルするときにファイル f の li... -
static VALUE eval
_ node(VALUE self , NODE *node) (12301.0) -