Open shyouhei opened 11 months ago
Is it intentional for the following Ruby code to raise FrozenError ?
FrozenError
Psych.safe_load(<<~'end', aliases: true, freeze: true) --- foo: &foo <<: *foo end
Possibilities:
Psych::AnchorNotDefined
I have no idea if the YAML in question is valid or not at the first place.
Psych should accept this YAML and properly return a frozen, recursive hash.
IMO this is the correct behavior. I'm not sure how hard it is to implement though.
Is it intentional for the following Ruby code to raise
FrozenError
?Possibilities:
Psych::AnchorNotDefined
instead ofFrozenError
.FrozenError
is the legit exception here.I have no idea if the YAML in question is valid or not at the first place.