Sha256: 189a8a608069051d1d203be372647556b060712957f76c1ddd3e0726d3c860f4

Contents?: true

Size: 520 Bytes

Versions: 2

Compression:

Stored size: 520 Bytes

Contents

=begin
    Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com>

    This file is part of the Arachni Framework project and is subject to
    redistribution and commercial restrictions. Please see the Arachni Framework
    web site for more information on licensing and terms of use.
=end

module Arachni
class Parser
module Nodes

module WithValue

    attr_reader :value

    def initialize( value )
        self.value = value
    end

    def value=( v )
        @value = v.strip.freeze
    end

end

end
end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
arachni-1.5.1 lib/arachni/parser/nodes/with_value.rb
arachni-1.5 lib/arachni/parser/nodes/with_value.rb