Class: LogStash::Config::AST::If

Inherits:
Node
  • Object
show all
Defined in:
lib/logstash/config/config_ast.rb

Instance Method Summary collapse

Instance Method Details

#compileObject



252
253
254
255
256
# File 'lib/logstash/config/config_ast.rb', line 252

def compile
  children = recursive_inject { |e| e.is_a?(Branch) || e.is_a?(Plugin) }
  return "if #{condition.compile}\n" \
    << children.collect(&:compile).map { |s| s.split("\n", -1).map { |l| "  " + l }.join("\n") }.join("") << "\n"
end