Class: YARD::Parser::C::Comment

Inherits:
Statement show all
Includes:
CommentParser
Defined in:
lib/yard/parser/c/statement.rb

Instance Attribute Summary collapse

Attributes inherited from Statement

#comments_hash_flag, #file, #group, #line, #source

Instance Method Summary collapse

Methods inherited from Statement

#comments_range, #first_line, #line_range, #show

Constructor Details

#initialize(source, file = nil, line = nil) ⇒ Comment

Returns a new instance of Comment.



58
59
60
# File 'lib/yard/parser/c/statement.rb', line 58

def initialize(source, file = nil, line = nil)
  super(parse_comments(source), file, line)
end

Instance Attribute Details

#overridesObject

Returns the value of attribute overrides.



55
56
57
# File 'lib/yard/parser/c/statement.rb', line 55

def overrides
  @overrides
end

#statementObject

Returns the value of attribute statement.



56
57
58
# File 'lib/yard/parser/c/statement.rb', line 56

def statement
  @statement
end

#typeObject

Returns the value of attribute type.



54
55
56
# File 'lib/yard/parser/c/statement.rb', line 54

def type
  @type
end

Instance Method Details

#commentsObject



62
# File 'lib/yard/parser/c/statement.rb', line 62

def comments; self end