| Class | Uttk::Strategies::Composite::ContentsEval |
| In: |
lib/uttk/strategies/Composite/contents_eval.rb
|
| Parent: | Object |
| contents | [R] |
# File lib/uttk/strategies/Composite/contents_eval.rb, line 15 def initialize(contents=[], &block) @contents = contents if block if block.arity == -1 instance_eval(&block) else block[self] end end end