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
Updated by The Foreman Bot over 1 year ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/kafo/pull/367 added
Updated by Anonymous over 1 year ago
- Status changed from Ready For Testing to Closed
Applied in changeset 1bd5fe50725a16cb17634d54572751efbde0bab7.
Updated by Ewoud Kohl van Wijngaarden about 1 year ago
- Has duplicate Bug #21398: Struct handling broken added
Actions