class Chronic::Pointer
Public Class Methods
scan(tokens, options)
click to toggle source
Scan an Array of Token
objects and apply any necessary Pointer
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.
# File lib/chronic/pointer.rb, line 11 def self.scan(tokens, options) tokens.each do |token| if t = scan_for_all(token) then token.tag(t) end end end
Public Instance Methods
to_s()
click to toggle source
# File lib/chronic/pointer.rb, line 28 def to_s 'pointer-' << @type.to_s end