Sha256: 7aa3329719d14434c70f8a52d6d723849cd526921c75f24225e952107f2b6653

Contents?: true

Size: 1.25 KB

Versions: 38

Compression:

Stored size: 1.25 KB

Contents

# Author::    Eric Crane  (mailto:eric.crane@mac.com)
# Copyright:: Copyright (c) 2019 Eric Crane.  All rights reserved.
#
# An Expression that can be evaluated.
#

module Gloo
  module Expr
    class LString < Gloo::Core::Literal

      #
      # Set the value, triming opening and closing
      # quotations if necessary.
      #
      def set_value( value )
        @value = value
        return unless value

        @value = LString.strip_quotes( @value )
      end

      #
      # Is the given token a string?
      #
      def self.string?( token )
        return false unless token.is_a? String
        return true if token.start_with?( '"' )
        return true if token.start_with?( "'" )

        return false
      end

      #
      # Given a string with leading and trailing quotes,
      # strip them out.
      #
      def self.strip_quotes( str )
        if str.start_with?( '"' )
          str = str[ 1..-1 ]
          str = str[ 0..-2 ] if str.end_with?( '"' )
          return str
        elsif str.start_with?( "'" )
          str = str[ 1..-1 ]
          str = str[ 0..-2 ] if str.end_with?( "'" )
          return str
        end
      end

      #
      # Get string representation
      #
      def to_s
        return self.value
      end

    end
  end
end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
gloo-3.10.1 lib/gloo/expr/l_string.rb
gloo-3.10.0 lib/gloo/expr/l_string.rb
gloo-3.9.1 lib/gloo/expr/l_string.rb
gloo-3.9.0 lib/gloo/expr/l_string.rb
gloo-3.8.0 lib/gloo/expr/l_string.rb
gloo-3.7.0 lib/gloo/expr/l_string.rb
gloo-3.6.2 lib/gloo/expr/l_string.rb
gloo-3.6.1 lib/gloo/expr/l_string.rb
gloo-3.6.0 lib/gloo/expr/l_string.rb
gloo-3.5.0 lib/gloo/expr/l_string.rb
gloo-3.4.1 lib/gloo/expr/l_string.rb
gloo-3.4.0 lib/gloo/expr/l_string.rb
gloo-3.3.0 lib/gloo/expr/l_string.rb
gloo-3.2.0 lib/gloo/expr/l_string.rb
gloo-3.1.1 lib/gloo/expr/l_string.rb
gloo-3.1.0 lib/gloo/expr/l_string.rb
gloo-3.0.1 lib/gloo/expr/l_string.rb
gloo-3.0.0 lib/gloo/expr/l_string.rb
gloo-2.5.0 lib/gloo/expr/l_string.rb
gloo-2.4.3 lib/gloo/expr/l_string.rb