Sha256: fe9b67e6819563c6636ec968c808c142731d8b2b2262b821634083709b41fd9b

Contents?: true

Size: 451 Bytes

Versions: 3

Compression:

Stored size: 451 Bytes

Contents

module AQL
  class Node
    class Literal
      class Primitive
        # Literal string node
        class String < self
          handle(::String)

        private

          # Emit AQL
          #
          # @param [Buffer] buffer
          #
          # @return [undefined]
          #
          # @api private
          #
          def emit(buffer)
            buffer.append(value.inspect)
          end

        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
aql-0.0.3 lib/aql/node/literal/primitive/string.rb
aql-0.0.2 lib/aql/node/literal/primitive/string.rb
aql-0.0.1 lib/aql/node/literal/primitive/string.rb