*/ public $args; /** * @var CodeLocation */ public $location; /** * @var CodeLocation */ public $name_location; /** * @param list $args */ public function __construct( string $fq_class_name, array $args, CodeLocation $location, CodeLocation $name_location ) { $this->fq_class_name = $fq_class_name; $this->args = $args; $this->location = $location; $this->name_location = $name_location; } }