class Cucumber::Core::Ast::Comment
Attributes
location[R]
value[R]
Public Class Methods
new(location, value)
click to toggle source
# File lib/cucumber/core/ast/comment.rb, line 12 def initialize(location, value) @location = location @value = value end
Public Instance Methods
inspect()
click to toggle source
# File lib/cucumber/core/ast/comment.rb, line 21 def inspect %Q{#<#{self.class} #{value} (#{location})} end
to_s()
click to toggle source
# File lib/cucumber/core/ast/comment.rb, line 17 def to_s value end