Class: YARD::Parser::C::Comment
- Includes:
- CommentParser
- Defined in:
- lib/yard/parser/c/statement.rb
Instance Attribute Summary collapse
-
#overrides ⇒ Object
Returns the value of attribute overrides.
-
#statement ⇒ Object
Returns the value of attribute statement.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #comments ⇒ Object
-
#initialize(source, file = nil, line = nil) ⇒ Comment
constructor
A new instance of Comment.
Methods included from CommentParser
Constructor Details
#initialize(source, file = nil, line = nil) ⇒ Comment
Returns a new instance of Comment.
55 56 57 |
# File 'lib/yard/parser/c/statement.rb', line 55 def initialize(source, file = nil, line = nil) super(parse_comments(source), file, line) end |
Instance Attribute Details
#overrides ⇒ Object
Returns the value of attribute overrides.
52 53 54 |
# File 'lib/yard/parser/c/statement.rb', line 52 def overrides @overrides end |
#statement ⇒ Object
Returns the value of attribute statement.
53 54 55 |
# File 'lib/yard/parser/c/statement.rb', line 53 def statement @statement end |
#type ⇒ Object
Returns the value of attribute type.
51 52 53 |
# File 'lib/yard/parser/c/statement.rb', line 51 def type @type end |
Instance Method Details
#comments ⇒ Object
59 |
# File 'lib/yard/parser/c/statement.rb', line 59 def comments; self end |