るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.352秒)
トップページ > クエリ:i[x] > クエリ:NULL[x] > クエリ:rb_reserved_word[x]

別のキーワード

  1. _builtin new
  2. _builtin inspect
  3. _builtin []
  4. _builtin to_s
  5. _builtin each

検索結果

static struct kwtable * rb_reserved_word(const char *str, unsigned int len) (38216.0)

長さ len の文字列 str が予約語であれば そのフラグテーブルを返します。str が予約語でなければ NULL を返します。

...。str が予約語でなければ
NULL
を返します。

struct kwtable {
char *name; /* 予約語の名前 */
i
nt id[2]; /* 0: 非修飾型シンボル
1: 修飾型シンボル (kIF_MOD など) があれば...
...それを格納する。なければ id[0] と同じ */
enum lex_state state; /* 遷移すべきlex_state */
};...