class Chronic::TimeZone

def self.scan(tokens)

:nodoc:
def self.scan(tokens)
  tokens.each_index do |i|
    if t = self.scan_for_all(tokens[i]) then tokens[i].tag(t); next end
  end
  tokens
end