[前][次][番号順一覧][スレッド一覧]

ruby-changes:67156

From: Nobuyoshi <ko1@a...>
Date: Sat, 14 Aug 2021 23:12:24 +0900 (JST)
Subject: [ruby-changes:67156] 1bd021a789 (master): Mark internal class names

https://git.ruby-lang.org/ruby.git/commit/?id=1bd021a789

From 1bd021a78995dd1327c1e91779358ebdebc12200 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Sat, 14 Aug 2021 10:17:38 +0900
Subject: Mark internal class names

---
 error.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/error.c b/error.c
index a67b1b1..4518833 100644
--- a/error.c
+++ b/error.c
@@ -909,9 +909,9 @@ static const char builtin_types[][10] = { https://github.com/ruby/ruby/blob/trunk/error.c#L909
     "",				/* 0x17 */
     "",				/* 0x18 */
     "",				/* 0x19 */
-    "Memo",			/* internal use: general memo */
-    "Node",			/* internal use: syntax tree node */
-    "iClass",			/* internal use: mixed-in module holder */
+    "<Memo>",			/* internal use: general memo */
+    "<Node>",			/* internal use: syntax tree node */
+    "<iClass>", 		/* internal use: mixed-in module holder */
 };
 
 const char *
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]