зеркало из https://github.com/github/ruby.git
error.c: KeyError docs [ci skip]
* error.c (key_err_receiver, key_err_key): [DOC] documents of KeyError methods. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
92bfddff92
Коммит
373babeaac
14
error.c
14
error.c
|
@ -1610,6 +1610,13 @@ rb_invalid_str(const char *str, const char *type)
|
|||
rb_raise(rb_eArgError, "invalid value for %s: %+"PRIsVALUE, type, s);
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* key_error.receiver -> object
|
||||
*
|
||||
* Return the receiver associated with this KeyError exception.
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
key_err_receiver(VALUE self)
|
||||
{
|
||||
|
@ -1620,6 +1627,13 @@ key_err_receiver(VALUE self)
|
|||
rb_raise(rb_eArgError, "no receiver is available");
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* key_error.key -> object
|
||||
*
|
||||
* Return the key caused this KeyError exception.
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
key_err_key(VALUE self)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче