149件ヒット
[1-100件を表示]
(0.049秒)
別のキーワード
種類
- インスタンスメソッド (96)
- 文書 (29)
- ライブラリ (12)
- 特異メソッド (12)
ライブラリ
-
rdoc
/ code _ object (24) -
rdoc
/ context (48) -
rdoc
/ parser / simple (12) -
rdoc
/ text (24)
クラス
-
RDoc
:: CodeObject (24) -
RDoc
:: Context (12) -
RDoc
:: Context :: Section (36) -
RDoc
:: Parser :: Simple (12)
モジュール
-
RDoc
:: Text (24)
キーワード
-
NEWS for Ruby 3
. 0 . 0 (5) - Ruby用語集 (12)
- comment= (12)
- new (12)
-
normalize
_ comment (12) - parse (12)
-
rdoc
/ parser / ruby (12) -
remove
_ private _ comments (12) -
set
_ comment (12) -
set
_ current _ section (12) - 正規表現 (12)
検索結果
先頭5件
-
RDoc
:: CodeObject # comment -> String (21101.0) -
自身のコメントを返します。
自身のコメントを返します。 -
RDoc
:: Context :: Section # comment -> String | nil (21101.0) -
section のコメントを返します。
section のコメントを返します。 -
RDoc
:: CodeObject # comment=(comment) (9230.0) -
自身のコメントを comment に設定します。
...自身のコメントを comment に設定します。
ただし、comment が空文字列だった場合は何もしません。
@param comment コメントを文字列で指定します。... -
RDoc
:: Parser :: Simple # remove _ private _ comments(comment) -> String (9223.0) -
行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返 します。
...行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返
します。
@param comment 対象の文字列を指定します。
@return コメントが削除された文字列を返します。... -
RDoc
:: Context :: Section # set _ comment(comment) -> () (9220.0) -
自身にコメントを設定します。
...身にコメントを設定します。
@param comment 文字列を指定します。
comment の最初の行に :section: を含んでいた場合、その行以降の文字列をコ
メントとして設定します。そうでない場合は comment すべてをコメントとして
設定し... -
RDoc
:: Text # normalize _ comment(text) -> String (9125.0) -
引数から行頭のスペースや改行文字などを削除します。
...から行頭のスペースや改行文字などを削除します。
詳しくは [SEE ALSO] の各メソッドを参照してください。
@param text 文字列を指定します。
@see RDoc::Text#strip_hashes, RDoc::Text#expand_tabs,
RDoc::Text#flush_left, RDoc::Text#strip_newlines... -
rdoc
/ parser / ruby (6012.0) -
Ruby のソースコードを解析するためのサブライブラリです。
...めたい場合、## でコメントを開始します。
##
# This is a meta-programmed method!
add_my_method :meta_method, :arg1, :arg2
RDoc::Parser::Ruby は上記の :meta_method ようにメソッドの定義を行
うような識別子の後に続くトークンをメソッド名と......キュメントに含める事ができます。
##
# :attr_writer: ghost_writer
# There is an attribute here, but you can't see it!
##
# :method: ghost_method
# There is a method here, but you can't see it!
##
# this is a comment for a regular method
def regular_method() end... -
RDoc
:: Context :: Section . new(parent , title , comment) -> RDoc :: Context :: Section (3214.0) -
自身を初期化します。
...自身を初期化します。
@param parent RDoc::Context オブジェクトを指定します。
@param title section のタイトルを文字列で指定します。
@param comment section のコメントを文字列で指定します。
また、section のシーケンス番号を新しく... -
RDoc
:: Text # parse(text) -> RDoc :: Markup :: Document | Array (3145.0) -
引数から RDoc::Text#normalize_comment でスペースや改行文字などを削 除した後に解析を行います。
...引数から RDoc::Text#normalize_comment でスペースや改行文字などを削
除した後に解析を行います。
@param text 文字列を指定します。
@see RDoc::Text#normalize_comment...