class DockerfileAst::Node::StringLiteral

Public Instance Methods

to_array() click to toggle source
# File lib/dockerfile_ast/nodes/string_literal.rb, line 4
def to_array
  self.text_value
end
to_s() click to toggle source
# File lib/dockerfile_ast/nodes/string_literal.rb, line 8
def to_s
  self.text_value
end