Class: SyntaxTree::Comment
- Inherits:
-
Node
- Object
- Node
- SyntaxTree::Comment
show all
- Defined in:
- lib/syntax_tree/node.rb
Overview
Comment represents a comment in the source.
Instance Attribute Summary collapse
-
#inline ⇒ Object
(also: #inline?)
readonly
- boolean
-
whether or not there is code on the same line as this comment.
-
#value ⇒ Object
readonly
- String
-
the contents of the comment.
Attributes inherited from Node
#location
Instance Method Summary
collapse
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, inline:, location:) ⇒ Comment
Returns a new instance of Comment.
3120
3121
3122
3123
3124
3125
3126
3127
|
# File 'lib/syntax_tree/node.rb', line 3120
def initialize(value:, inline:, location:)
@value = value
@inline = inline
@location = location
@leading = false
@trailing = false
end
|
Instance Attribute Details
#inline ⇒ Object
Also known as:
inline?
- boolean
-
whether or not there is code on the same line as this comment.
If there is, then inline will be true.
3117
3118
3119
|
# File 'lib/syntax_tree/node.rb', line 3117
def inline
@inline
end
|
#value ⇒ Object
- String
-
the contents of the comment
3113
3114
3115
|
# File 'lib/syntax_tree/node.rb', line 3113
def value
@value
end
|
Instance Method Details
#accept(visitor) ⇒ Object
3153
3154
3155
|
# File 'lib/syntax_tree/node.rb', line 3153
def accept(visitor)
visitor.(self)
end
|
#child_nodes ⇒ Object
Also known as:
deconstruct
3157
3158
3159
|
# File 'lib/syntax_tree/node.rb', line 3157
def child_nodes
[]
end
|
3149
3150
3151
|
# File 'lib/syntax_tree/node.rb', line 3149
def
[]
end
|
#deconstruct_keys(_keys) ⇒ Object
3163
3164
3165
|
# File 'lib/syntax_tree/node.rb', line 3163
def deconstruct_keys(_keys)
{ value: value, inline: inline, location: location }
end
|
3167
3168
3169
|
# File 'lib/syntax_tree/node.rb', line 3167
def format(q)
q.text(value)
end
|
#ignore? ⇒ Boolean
3145
3146
3147
|
# File 'lib/syntax_tree/node.rb', line 3145
def ignore?
value[1..].strip == "stree-ignore"
end
|
#leading! ⇒ Object
3129
3130
3131
|
# File 'lib/syntax_tree/node.rb', line 3129
def leading!
@leading = true
end
|
#leading? ⇒ Boolean
3133
3134
3135
|
# File 'lib/syntax_tree/node.rb', line 3133
def leading?
@leading
end
|
#trailing! ⇒ Object
3137
3138
3139
|
# File 'lib/syntax_tree/node.rb', line 3137
def trailing!
@trailing = true
end
|
#trailing? ⇒ Boolean
3141
3142
3143
|
# File 'lib/syntax_tree/node.rb', line 3141
def trailing?
@trailing
end
|