Class: Curlybars::Parser

Inherits:
RLTK::Parser
  • Object
show all
Defined in:
lib/curlybars/parser.rb

Constant Summary collapse

VOID =
Class.new do
  def compile
    # Nothing to compile.
  end

  def validate(branches)
    [] # Nothing to validate.
  end

  def cache_key
    # Empty cache key.
  end
end.new