Sha256: 60e2decd354cef7bac968c05b38b7867d1398ffb43a7f53aac6c8f11847fe6f8
Contents?: true
Size: 698 Bytes
Versions: 2
Compression:
Stored size: 698 Bytes
Contents
module Lucid module AST class Specs #:nodoc: include Enumerable attr_reader :duration def initialize @features = [] end def [](index) @features[index] end def each(&proc) @features.each(&proc) end def add_feature(feature) @features << feature end def accept(visitor) return if Lucid.wants_to_quit start = Time.now self.each do |feature| visitor.visit_feature(feature) end @duration = Time.now - start end def step_count @features.inject(0) { |total, feature| total += feature.step_count } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lucid-0.0.6 | lib/lucid/ast/specs.rb |
lucid-0.0.5 | lib/lucid/ast/specs.rb |