lib/cucumber/ast/visitor.rb in cucumber-1.2.1 vs lib/cucumber/ast/visitor.rb in cucumber-1.2.2
- old
+ new
@@ -1,10 +1,10 @@
module Cucumber
module Ast
class Visitor
DEPRECATION_WARNING = "Cucumber::Ast::Visitor is deprecated and will be removed. You no longer need to inherit from this class."
- def initialize(step_mother)
+ def initialize(runtime)
raise(DEPRECATION_WARNING)
end
end
end
end