Class | RDoc::Fortran95parser::Fortran95Definition |
In: |
parsers/parse_f95.rb
|
Parent: | Object |
Information of arguments of subroutines and functions in Fortran95
arraysuffix | [R] |
Suffix of array
配列接尾詞 |
comment | [RW] |
Comments
行の末尾にかかれるコメント |
doc_priority | [RW] |
Priority of documentation
ドキュメントの優先度 |
inivalue | [R] |
Initial Value
初期値 |
nodoc | [RW] |
Flag of non documentation
ドキュメント出力しないフラグ |
types | [R] |
Types of variable
データ型情報 |
varname | [R] |
Name of variable
変数名 |
# File parsers/parse_f95.rb, line 2635 2635: def initialize(varname, types, inivalue, arraysuffix, comment, 2636: nodoc=false, doc_priority=50) 2637: @varname = varname 2638: @types = types 2639: @inivalue = inivalue 2640: @arraysuffix = arraysuffix 2641: @comment = comment 2642: @nodoc = nodoc 2643: @doc_priority = doc_priority 2644: end