Class: Clowne::Declarations::InitAs

Inherits:
Base
  • Object
show all
Defined in:
lib/clowne/declarations/init_as.rb

Overview

:nodoc: all

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#matches?

Constructor Details

#initializeInitAs

Returns a new instance of InitAs.

Raises:

  • (ArgumentError)


8
9
10
11
12
# File 'lib/clowne/declarations/init_as.rb', line 8

def initialize
  raise ArgumentError, 'Block is required for init_as' unless block_given?

  @block = Proc.new
end

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



6
7
8
# File 'lib/clowne/declarations/init_as.rb', line 6

def block
  @block
end

Instance Method Details

#compile(plan) ⇒ Object



14
15
16
# File 'lib/clowne/declarations/init_as.rb', line 14

def compile(plan)
  plan.set(:init_as, self)
end