[ruby/prism] Remove non-ASCII examples from ReadNode fields documentation

This is due to a constraint, enforced in `templates/template.rb`,
relating to non-UTF-8 locales prohibiting non-ASCII characters in C
source files.

https://github.com/ruby/prism/commit/74e9a890be
This commit is contained in:
Matthew Healy 2024-01-08 22:24:28 +01:00 коммит произвёл git
Родитель 57c138c5f4
Коммит 9c06297cbb
1 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -1053,8 +1053,6 @@ nodes:
@@abc # name `:@@abc`
@@_test # name `:@@_test`
@@🍔 # name `:@@🍔`
comment: |
Represents referencing a class variable.
@ -1234,8 +1232,6 @@ nodes:
X # name `:X`
SOME_CONSTANT # name `:SOME_CONSTANT`
F🥨 # name `:F🥨`
comment: |
Represents referencing a constant.
@ -1535,8 +1531,6 @@ nodes:
$_Test # name `:$_Test`
$🍟 # name `:$🍟`
In addition to the above, global variable names may be one of: `$~`,
`$*`, `$$`, `$?`, `$!`, `$@`, `$/`, `$\`, `$;`, `$,`, `$.`, `$=`,
`$:`, `$<`, `$>`, `$"`, or `$0`.
@ -1870,8 +1864,6 @@ nodes:
@x # name `:@x`
@_test # name `:@_test`
@🌯 # name `:@🌯`
comment: |
Represents referencing an instance variable.
@ -2106,8 +2098,6 @@ nodes:
x # name `:x`
_Test # name `:_Test`
🌯 # name `:🌯`
- name: depth
type: uint32
comment: |