class FilterLexer::StringLiteral

Public Instance Methods

text_value() click to toggle source
Calls superclass method
# File lib/queryfy/filter_lexer/formatter.rb, line 82
def text_value
        val = super
        return val.gsub!(/\A["']|["']\Z/, '')
end