global

def handle_closer_token(token)

def handle_closer_token(token)
  if opener_token_stack.last.closed_by?(token)
    opener_token_stack.pop
    opener_token_stack.empty?
  else
    false
  end
end