| 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
行の末尾にかかれるコメント |
| 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 2375
2375: def initialize(varname, types, inivalue, arraysuffix, comment,
2376: nodoc=false)
2377: @varname = varname
2378: @types = types
2379: @inivalue = inivalue
2380: @arraysuffix = arraysuffix
2381: @comment = comment
2382: @nodoc = nodoc
2383: end