| Class | RDoc::Fortran95parser::Fortran95Definition |
| In: |
lib/rdoc/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 lib/rdoc/parsers/parse_f95.rb, line 1673
1673: def initialize(varname, types, inivalue, arraysuffix, comment,
1674: nodoc=false)
1675: @varname = varname
1676: @types = types
1677: @inivalue = inivalue
1678: @arraysuffix = arraysuffix
1679: @comment = comment
1680: @nodoc = nodoc
1681: end