class Elf is Character { has $:profession; method new(Class $class: Profession $profession) { $:profession = $profession; # how the heck do I access the instance from within new()? $profession.race($_); # certainly incorrect syntax } ... }