Class: FilterLexer::Identifier

Inherits:
Treetop::Runtime::SyntaxNode
  • Object
show all
Defined in:
lib/filter_lexer/nodes/identifier.rb,
lib/filter_lexer/formatters/sql.rb

Overview

An identifier is the target (variable) of the filter

Instance Method Summary collapse

Instance Method Details

#sqlObject



37
38
39
# File 'lib/filter_lexer/formatters/sql.rb', line 37

def sql
	return "`#{text_value}`"
end