Actions
Bug #36912
closedcan't parse multi-line type definitions
Description
For Puppet, it's totally fine to have a type definition like
type Stdlib::IP::Address = Variant[ Stdlib::IP::Address::V4, Stdlib::IP::Address::V6, ]
This is equivalent to
type Stdlib::IP::Address = Variant[Stdlib::IP::Address::V4,Stdlib::IP::Address::V6]
but obviously better readable for humans.
Kafo, today, will only parse this as type Stdlib::IP::Address = Variant[
, and this is obviously not a correct type definition
Actions