class Page

def lazy_initialize_parser_and_context

def lazy_initialize_parser_and_context
  unless @parser && @context
    @context = PageContext.new(self)
    @parser = Radius::Parser.new(@context, tag_prefix: 'r')
  end
  @parser
end