class Chronic::TimeZone

def self.scan(tokens, options)

Returns an Array of tokens.

options - The Hash of options specified in Chronic::parse.
tokens - An Array of tokens to scan.

tags to each token.
Scan an Array of Token objects and apply any necessary TimeZone
def self.scan(tokens, options)
  tokens.each do |token|
    if t = scan_for_all(token) then token.tag(t); next end
  end
end

def self.scan_for_all(token)

Returns a new Pointer object.

token - The Token object we want to scan.
def self.scan_for_all(token)
  scan_for token, self,
  {
    /[PMCE][DS]T|UTC/i => :tz,
    /(tzminus)?\d{2}:?\d{2}/ => :tz
  }
end

def to_s

def to_s
  'timezone'
end