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.



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

#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.



3117
3118
3119
# File 'lib/syntax_tree/node.rb', line 3117

def inline
  @inline
end

#valueObject (readonly)

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.visit_comment(self)
end

#child_nodesObject Also known as: deconstruct



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

def child_nodes
  []
end

#commentsObject



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

def comments
  []
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

#format(q) ⇒ Object



3167
3168
3169
# File 'lib/syntax_tree/node.rb', line 3167

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

#ignore?Boolean

Returns:

  • (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

Returns:

  • (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

Returns:

  • (Boolean)


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

def trailing?
  @trailing
end