# File lib/cucumber/ast/location.rb, line 26 def file location.file end
# File lib/cucumber/ast/location.rb, line 22 def file_colon_line location.to_s end
# File lib/cucumber/ast/location.rb, line 30 def line location.line end
# File lib/cucumber/ast/location.rb, line 34 def location raise('Please set @location in the constructor') unless @location raise("@location must be an Ast::Location but is a #{@location.class}") unless @location.is_a?(Location) @location end