Skip to content

Update vim9class.{txt,jax} #2024

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/vim9class.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9class.txt* For Vim バージョン 9.1. Last change: 2025 Feb 16
*vim9class.txt* For Vim バージョン 9.1. Last change: 2025 Apr 05


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -636,9 +636,9 @@ Shape, Square および Triangle を使用した上記の例は、オブジェ
れる。オブジェクトがクラスからインスタンス化されると、変数の型が設定される。

次の予約キーワード名は、オブジェクトまたはクラス変数名として使用できない:
"super", "this", "true", "false", "null", "null_blob", "null_dict",
"null_function", "null_list", "null_partial", "null_string", "null_channel" お
よび "null_job"。
"super", "this", "true", "false", "null", "null_blob", "null_channel",
"null_class", "null_dict", "null_function", "null_job", "null_list",
"null_object", "null_partial" および "null_string"。

クラスを拡張する ~
*extends*
Expand Down
6 changes: 3 additions & 3 deletions en/vim9class.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9class.txt* For Vim version 9.1. Last change: 2025 Feb 16
*vim9class.txt* For Vim version 9.1. Last change: 2025 Apr 05


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -641,8 +641,8 @@ class, then the type of the variable is set.

The following reserved keyword names cannot be used as an object or class
variable name: "super", "this", "true", "false", "null", "null_blob",
"null_dict", "null_function", "null_list", "null_partial", "null_string",
"null_channel" and "null_job".
"null_channel", "null_class", "null_dict", "null_function", "null_job",
"null_list", "null_object", "null_partial" and "null_string".

Extending a class ~
*extends*
Expand Down