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