class LLT::Token::Filler

Public Instance Methods

add(type) click to toggle source
# File lib/llt/token/filler.rb, line 6
def add(type)
  case type
  when :name then add_name_form
  end
end
empty?() click to toggle source

cannot hold anything atm, is therefore never really empty

# File lib/llt/token/filler.rb, line 17
def empty?
  false
end
Also aliased as: no_forms?
inspect() click to toggle source
# File lib/llt/token/filler.rb, line 26
def inspect
  "#{"Filler token".blue}: #{@string}"
end
no_forms?()
Alias for: empty?
set_functions() click to toggle source
# File lib/llt/token/filler.rb, line 22
def set_functions
  [:filler]
end