class DockerfileAst::Node::Comment

Public Instance Methods

title() click to toggle source
# File lib/dockerfile_ast/nodes/named_nodes.rb, line 30
def title; :comment end
to_s() click to toggle source
# File lib/dockerfile_ast/nodes/named_nodes.rb, line 32
def to_s
  "# #{elements[0].to_s}"
end