class Cucumber::Core::Ast::Tag
Attributes
name[R]
Public Class Methods
new(location, name)
click to toggle source
# File lib/cucumber/core/ast/tag.rb, line 9 def initialize(location, name) @location = location @name = name end
Public Instance Methods
inspect()
click to toggle source
# File lib/cucumber/core/ast/tag.rb, line 14 def inspect %Q{#<#{self.class} "#{name}" (#{location})>} end