class ActionView::Template::Handlers::ERB::Erubi
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/action_view/template/handlers/erb/erubi.rbs class ActionView::Template::Handlers::ERB::Erubi < Erubi::Engine def add_expression: (String indicator, String code) -> String def add_postamble: (String _) -> String def add_text: (String text) -> Integer def flush_newline_if_pending: (String src) -> nil end
def add_code(code)
def add_code(code) flush_newline_if_pending(src) super end
def add_expression(indicator, code)
Experimental RBS support (using type sampling data from the type_fusion
project).
def add_expression: (String indicator, String code) -> String
This signature was generated using 3 samples from 1 application.
def add_expression(indicator, code) flush_newline_if_pending(src) with_buffer do if (indicator == "==") || @escape src << ".safe_expr_append=" else src << ".append=" end if BLOCK_EXPR.match?(code) src << " " << code else src << "(" << code << ")" end end end
def add_postamble(_)
Experimental RBS support (using type sampling data from the type_fusion
project).
def add_postamble: (String _) -> String
This signature was generated using 2 samples from 1 application.
def add_postamble(_) flush_newline_if_pending(src) super end
def add_text(text)
Experimental RBS support (using type sampling data from the type_fusion
project).
def add_text: (String text) -> Integer
This signature was generated using 3 samples from 1 application.
def add_text(text) return if text.empty? if text == "\n" @newline_pending += 1 else with_buffer do src << ".safe_append='" src << "\n" * @newline_pending if @newline_pending > 0 src << text.gsub(/['\\]/, '\\\\\&') << @text_end end @newline_pending = 0 end end
def flush_newline_if_pending(src)
Experimental RBS support (using type sampling data from the type_fusion
project).
def flush_newline_if_pending: (String src) -> nil
This signature was generated using 2 samples from 1 application.
def flush_newline_if_pending(src) if @newline_pending > 0 with_buffer { src << ".safe_append='#{"\n" * @newline_pending}" << @text_end } @newline_pending = 0 end end
def initialize(input, properties = {})
def initialize(input, properties = {}) @newline_pending = 0 # Dup properties so that we don't modify argument properties = Hash[properties] properties[:bufvar] ||= "@output_buffer" properties[:preamble] ||= "" properties[:postamble] ||= "#{properties[:bufvar]}" # Tell Eruby that whether template will be compiled with `frozen_string_literal: true` properties[:freeze_template_literals] = !Template.frozen_string_literal properties[:escapefunc] = "" super end