module Treetop::Compiler::Metagrammar::DeclarationSequence2

def declarations

def declarations
  [head] + tail
end

def tail

def tail
  super.elements.map { |elt| elt.declaration }
end