Class: LogStash::Config::AST::Array

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

Instance Method Summary collapse

Methods inherited from Node

#text_value_for_comments

Instance Method Details

#compileObject



350
351
352
# File 'lib/logstash/config/config_ast.rb', line 350

def compile
  return "[" << recursive_select(Value).collect(&:compile).reject(&:empty?).join(", ") << "]"
end