Nobuyoshi Nakada
fd918d1afa
Removed Module.allocate [Bug #17048 ]
2021-09-17 11:14:08 +09:00
Nobuyoshi Nakada
178ee1e801
Already initialized modules cannot be replaced [Bug #17048 ]
2021-09-17 11:14:04 +09:00
S-H-GAMELINKS
83a5e2bb5c
Using RB_FLOAT_TYPE_P macro
2021-09-12 11:16:31 +09:00
S-H-GAMELINKS
032534dbdf
Using RB_BIGNUM_TYPE_P macro
2021-09-11 09:13:24 +09:00
卜部昌平
e18bc14a05
include/ruby/ruby.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
卜部昌平
6e62cf46ed
include/ruby/internal/arithmetic/double.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
卜部昌平
d43accae15
include/ruby/internal/intern/object.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
卜部昌平
a2b8f61cba
include/ruby/internal/core/rbasic.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
卜部昌平
7c28330ca0
include/ruby/internal/core/rclass.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
卜部昌平
4881a3ed38
include/ruby/internal/fl_type.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
卜部昌平
3be4adcf2b
include/ruby/internal/globals.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
卜部昌平
1f66d8a77b
include/ruby/internal/newobj.h: add doxygen
...
Must not be a bad idea to improve documents. [ci skip]
2021-09-10 20:00:06 +09:00
S.H
378e8cdad6
Using RBOOL macro
2021-08-02 12:06:44 +09:00
Nobuyoshi Nakada
6329da588b
Use predefined IDs
2021-07-27 15:40:27 +09:00
Nobuyoshi Nakada
bc1323ce5c
Use RB_INTEGER_TYPE_P
2021-07-20 21:45:11 +09:00
Nobuyoshi Nakada
8a6ef5ef8f
Make boolean expected messages more consitent
2021-07-18 20:51:30 +09:00
Nobuyoshi Nakada
56d983697f
Constified a local table
2021-07-18 19:56:36 +09:00
Nobuyoshi Nakada
301d194ee3
Add Integer.try_convert [Feature #15211 ]
2021-07-16 17:49:53 +09:00
S-H-GAMELINKS
b32ae9898f
Move rb_str_escape function declaration
2021-07-11 18:26:20 +09:00
Nobuyoshi Nakada
94bd3bde81
Specify version to remove as bare numbers
2021-06-30 10:47:01 +09:00
Nobuyoshi Nakada
8118d435d0
rb_warn_deprecated_to_remove_at [Feature #17432 ]
...
At compilation time with RUBY_DEBUG enabled, check if the removal
version has been reached.
2021-06-30 10:47:01 +09:00
Nobuyoshi Nakada
47a9b58b2a
Share freeze option handling
2021-06-28 10:53:37 +09:00
Nobuyoshi Nakada
e4f891ce8d
Adjust styles [ci skip]
...
* --braces-after-func-def-line
* --dont-cuddle-else
* --procnames-start-lines
* --space-after-for
* --space-after-if
* --space-after-while
2021-06-17 10:13:40 +09:00
S.H
28b481938b
Implemented some NilClass method in Ruby code is faster [Feature #17054 ] ( #3366 )
2021-06-02 20:04:56 -07:00
Burdette Lamar
6b32f1f338
Object whats here ( #4503 )
...
What's Here section for class Object.
2021-05-18 08:16:29 -05:00
Burdette Lamar
434cd3c399
What's Here for BasicObject ( #4499 )
...
* What's Here for BasicObject
2021-05-13 17:19:07 -05:00
Burdette Lamar
879cc64d06
What's Here for Kernel ( #4488 )
2021-05-13 12:09:07 -05:00
Aaron Patterson
9a6226c61e
Eagerly allocate instance variable tables along with object
...
This allows us to allocate the right size for the object in advance,
meaning that we don't have to pay the cost of ivar table extension
later. The idea is that if an object type ever became "extended" at
some point, then it is very likely it will become extended again. So we
may as well allocate the ivar table up front.
2021-05-03 14:11:48 -07:00
Kenichi Kamiya
c080bb2284
[Doc] Update to FrozenError from RuntimeError in Object#freeze
2021-04-01 10:10:02 -07:00
Nobuyoshi Nakada
1499f626a5
[DOC] Modified prefixes to get rid of conflicts
2021-02-07 23:35:06 +09:00
Nobuyoshi Nakada
03e3cc2b72
[DOC] make individual names so that rdoc can find each documents
2021-02-07 23:12:06 +09:00
Nobuyoshi Nakada
0261519f6e
[DOC] Module#method_undefined
2021-02-07 23:11:59 +09:00
Marcus Stollsteimer
c3f91f9d88
[DOC] Fix typos
2020-12-24 23:09:51 +01:00
卜部昌平
7fbad92241
rb_cData: no longer exists
...
Commit 8918a9cf6c65409ae1ffcdea324a1b97c6e5bb70 introduced macro
`#define rb_cData rb_cData()`. This deleting `VALUE rb_cData;`
declaration was then macro-expanded into `VALUE rb_cData();`. This
worked by accident because the expanded expression happen to be a K&R
style function declaration.
This is rather complicated and I guess unintended. Just delete the line
to keep things simple straight forward.
2020-12-22 16:18:17 +09:00
Nobuyoshi Nakada
8918a9cf6c
Removed rb_cData entity
...
* Use the wrapper of rb_cObject instead of data access
* Replaced rest of extentions
* Updated the version guard for Data
* Added the version guard of rb_cData
2020-12-22 02:51:49 +09:00
卜部昌平
c30f03d328
Data: delete
...
Has been deprecated since 684bdf6171b76f5bc5e4f05926a5ab01ec2b4fd5.
Matz says in [ruby-core:83954] that Data should be an alias of Object.
Because rb_cData has not been deprecated, let us deprecate the constant
to make it a C-level synonym of rb_cObject.
2020-12-22 02:51:49 +09:00
Nobuyoshi Nakada
34f6b22df0
Use rb_id_attrset without intermediate strings
2020-12-19 11:44:05 +09:00
Radosław Bułat
d40d95296d
Feature 17314: update docs and NEWS about attr* methods returning array of symbols
2020-12-19 09:22:26 +09:00
Yusuke Endoh
aa7a020710
Revert "Revert "Use rb_id_attrset without intermediate strings""
...
This reverts commit 41c208d4a463183fddca250026e5f1cd759d2604.
Reintroduce 66090b9d10cdaed917b525225e59d1c19e399248.
2020-12-19 03:20:09 +09:00
Radosław Bułat
5944c4b3cf
attr_reader, attr_writer, attr_accessor and attr methods returns array of symbols ( #3935 )
...
Co-authored-by: Yusuke Endoh <mame@ruby-lang.org>
2020-12-19 03:11:35 +09:00
Jeremy Evans
05313c914b
Use category: :deprecated in warnings that are related to deprecation
...
Also document that both :deprecated and :experimental are supported
:category option values.
The locations where warnings were marked as deprecation warnings
was previously reviewed by shyouhei.
Comment a couple locations where deprecation warnings should probably
be used but are not currently used because deprecation warning
enablement has not occurred at the time they are called
(RUBY_FREE_MIN, RUBY_HEAP_MIN_SLOTS, -K).
Add assert_deprecated_warn to test assertions. Use this to simplify
some tests, and fix failing tests after marking some warnings with
deprecated category.
2020-12-18 09:54:11 -08:00
Yusuke Endoh
982443e6e3
Revert "Better cooperation between public/protected/private with attr* and alias_method"
...
This reverts commit 81739ad4fdfcc86a769056fec352f27c686fba1b.
2020-12-18 16:08:55 +09:00
Yusuke Endoh
41c208d4a4
Revert "Use rb_id_attrset without intermediate strings"
...
This reverts commit 66090b9d10cdaed917b525225e59d1c19e399248.
2020-12-18 16:08:25 +09:00
Nobuyoshi Nakada
66090b9d10
Use rb_id_attrset without intermediate strings
2020-12-18 12:10:20 +09:00
Radosław Bułat
81739ad4fd
Better cooperation between public/protected/private with attr* and alias_method
2020-12-17 12:46:02 -05:00
Nobuyoshi Nakada
a039dc018c
[DOC] Described "numeric representation" more precisely [ci skip]
...
[Bug #17395 ]
2020-12-16 00:07:37 +09:00
Nobuyoshi Nakada
d2b7e1e4b2
Protoized old pre-ANSI K&R style definitions
2020-12-05 14:57:31 +09:00
Aaron Patterson
0bbbb5a657
dest
is always embedded so we can remove this check
2020-10-28 08:41:39 -07:00
Stefan Stüben
8c2e5bbf58
Don't redefine #rb_intern over and over again
2020-10-21 12:45:18 +09:00
Koichi Sasada
91ec5f9e39
remove rb_obj_iv_index_tbl
...
(1) nobody uses it (gem-codesearch)
(2) the data strucuture will be changed.
2020-10-17 08:18:04 +09:00