Class: Deplate::Regions::DefMacroN
- Inherits:
-
Define
- Object
- Element
- Deplate::Region
- Define
- Deplate::Regions::DefMacroN
- Defined in:
- lib/deplate/define.rb
Instance Method Summary collapse
Methods inherited from Define
check_arguments, #finish, let_variables, #valid_id?, #valid_switch
Methods inherited from Deplate::Region
check_file, clean_strings, #deprecated_regnote, deprecated_regnote, #finish, #finish_accum, #format_compound, regions, register_as, set_line_cont, #setup
Methods inherited from Element
#join_lines, #join_lines_re_zh_cn
Instance Method Details
#define ⇒ Object
464 465 466 467 468 469 470 471 472 473 474 475 476 477 |
# File 'lib/deplate/define.rb', line 464 def define id = deprecated_regnote('id') if valid_id?(id) body = <<-EOR def setup_template @template = #{@accum.join(' ').inspect} @mandatory = #{@args['args'].inspect} end EOR @args[:register] = true @args[:super] = Deplate::Define::MacroNative cls = Deplate::Cache.macro(@deplate, body, @args) end end |