crystal-clear icon indicating copy to clipboard operation
crystal-clear copied to clipboard

Carry over CrystalClear to inherting types

Open mattrberry opened this issue 5 years ago • 0 comments

Allows for the following

class Person
  include CrystalClear
  property age : Int32
  def initialize(@age)
  end
end

class Child < Person
  invariant @age < 18
end

mattrberry avatar Dec 24 '19 21:12 mattrberry