Class: Stepmod::Utils::Converters::Comment

Inherits:
Base
  • Object
show all
Defined in:
lib/stepmod/utils/converters/comment.rb

Constant Summary

Constants inherited from Base

Base::PREFIXES_REGEX

Instance Method Summary collapse

Methods inherited from Base

#treat_children

Instance Method Details

#convert(node, _state = {}) ⇒ Object



7
8
9
10
11
12
# File 'lib/stepmod/utils/converters/comment.rb', line 7

def convert(node, _state = {})
  comment = node.text.strip.split("\n").map do |line|
    "\n// #{line}"
  end.join("\n")
  "#{comment}\n"
end