Class: SyntaxTree::Comment

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

Comment represents a comment in the source.

# comment

Instance Attribute Summary collapse

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.



3132
3133
3134
3135
3136
3137
3138
3139
# File 'lib/syntax_tree/node.rb', line 3132

def initialize(value:, inline:, location:)
  @value = value
  @inline = inline
  @location = location

  @leading = false
  @trailing = false
end

Instance Attribute Details

#inlineObject (readonly) 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.



3129
3130
3131
# File 'lib/syntax_tree/node.rb', line 3129

def inline
  @inline
end

#valueObject (readonly)

String

the contents of the comment



3125
3126
3127
# File 'lib/syntax_tree/node.rb', line 3125

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



3165
3166
3167
# File 'lib/syntax_tree/node.rb', line 3165

def accept(visitor)
  visitor.visit_comment(self)
end

#child_nodesObject Also known as: deconstruct



3169
3170
3171
# File 'lib/syntax_tree/node.rb', line 3169

def child_nodes
  []
end

#commentsObject



3161
3162
3163
# File 'lib/syntax_tree/node.rb', line 3161

def comments
  []
end

#deconstruct_keys(_keys) ⇒ Object



3175
3176
3177
# File 'lib/syntax_tree/node.rb', line 3175

def deconstruct_keys(_keys)
  { value: value, inline: inline, location: location }
end

#format(q) ⇒ Object



3179
3180
3181
# File 'lib/syntax_tree/node.rb', line 3179

def format(q)
  q.text(value)
end

#ignore?Boolean

Returns:

  • (Boolean)


3157
3158
3159
# File 'lib/syntax_tree/node.rb', line 3157

def ignore?
  value[1..].strip == "stree-ignore"
end

#leading!Object



3141
3142
3143
# File 'lib/syntax_tree/node.rb', line 3141

def leading!
  @leading = true
end

#leading?Boolean

Returns:

  • (Boolean)


3145
3146
3147
# File 'lib/syntax_tree/node.rb', line 3145

def leading?
  @leading
end

#trailing!Object



3149
3150
3151
# File 'lib/syntax_tree/node.rb', line 3149

def trailing!
  @trailing = true
end

#trailing?Boolean

Returns:

  • (Boolean)


3153
3154
3155
# File 'lib/syntax_tree/node.rb', line 3153

def trailing?
  @trailing
end