# File lib/main/parameter.rb, line 48 def create type, *a, &b c = class_for type obj = c.allocate obj.type = c.sym obj.instance_eval{ initialize *a, &b } obj end