1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
module Chronic
class Sign < Tag
# Scan an Array of Token objects and apply any necessary Sign
# tags to each token.
#
# tokens - An Array of tokens to scan.
# options - The Hash of options specified in Chronic::parse.
#
# Returns an Array of tokens.
def self.scan(tokens, options)
tokens.each do |token|
if t = scan_for_plus(token) then token.tag(t); next end
if t = scan_for_minus(token) then token.tag(t); next end
end
end
# token - The Token object we want to scan.
#
# Returns a new SignPlus object.
def self.scan_for_plus(token)
scan_for token, SignPlus, { /^\+$/ => :plus }
end
# token - The Token object we want to scan.
#
# Returns a new SignMinus object.
def self.scan_for_minus(token)
scan_for token, SignMinus, { /^-$/ => :minus }
end
def to_s
'sign'
end
end
class SignPlus < Sign #:nodoc:
def to_s
super << '-plus'
end
end
class SignMinus < Sign #:nodoc:
def to_s
super << '-minus'
end
end
end
|