class IDL::Engine::ProductionStack

def peek

def peek
  return nil if empty?
  id, _ = @stack.first
  id
end