crystal-clear
crystal-clear copied to clipboard
Carry over CrystalClear to inherting types
Allows for the following
class Person
include CrystalClear
property age : Int32
def initialize(@age)
end
end
class Child < Person
invariant @age < 18
end