11件ヒット
[1-11件を表示]
(0.029秒)
キーワード
-
compile
_ error (1) -
error
_ handle (1) -
error
_ pos (1) -
error
_ print (1) -
localjump
_ error (1) -
rb
_ ary _ pop (1) -
rb
_ backref _ error (1) -
rb
_ compile _ error (1) -
rb
_ compile _ error _ with _ enc (1) -
rb
_ memerror (1) - yyerror (1)
検索結果
先頭5件
-
static int error
_ handle(int ex) (18304.0) -
-
static int yyerror(char *msg) (18304.0)
-
パースエラーを報告するときに yyparse から呼び出されます。 エラーメッセージ msg とエラーになった場所を出力して 0 を返します。
パースエラーを報告するときに yyparse から呼び出されます。
エラーメッセージ msg とエラーになった場所を出力して 0 を返します。 -
static void compile
_ error(const char *at) (18304.0) -
-
static void error
_ pos(void) (18304.0) -
-
static void error
_ print(void) (18304.0) -
-
static void localjump
_ error(const char *mesg , VALUE status) (18304.0) -
-
static void rb
_ backref _ error(NODE *node) (18304.0) -
-
void rb
_ compile _ error(const char *file , int line , const char *fmt , . . . ) (18304.0) -
この関数は Ruby 2.3.0 から deprecated です。公開関数ですが内部利用のみを想 定しています。外部のライブラリで使用すべきではありません。
この関数は Ruby 2.3.0 から deprecated です。公開関数ですが内部利用のみを想
定しています。外部のライブラリで使用すべきではありません。 -
void rb
_ compile _ error _ with _ enc(const char *file , int line , void *enc , const char *fmt , . . . ) (18304.0) -
この関数は Ruby 2.3.0 から deprecated です。公開関数ですが内部利用のみを想 定しています。外部のライブラリで使用すべきではありません。
この関数は Ruby 2.3.0 から deprecated です。公開関数ですが内部利用のみを想
定しています。外部のライブラリで使用すべきではありません。 -
void rb
_ memerror(void) (18304.0) -
NoMemoryErrorをraiseする。 しかしraise自体にもメモリ容量を使うため、メモリが足りない状況 ではその途中でまたメモリ不足になる可能性がある。そのため この関数では再帰を検出した場合はraiseではなくexitするように なっている。
NoMemoryErrorをraiseする。
しかしraise自体にもメモリ容量を使うため、メモリが足りない状況
ではその途中でまたメモリ不足になる可能性がある。そのため
この関数では再帰を検出した場合はraiseではなくexitするように
なっている。 -
VALUE rb
_ ary _ pop(VALUE ary) (40.0) -
配列 ary の末尾の要素をとりのぞき返します。 空配列のときは Qnil を返します。
配列 ary の末尾の要素をとりのぞき返します。
空配列のときは Qnil を返します。
対応するRubyコード
val = ary.pop
使用例
last_error = rb_ary_pop(err_ary);
VALUE str = rb_funcall(last_error, rb_intern("to_s"), 0);