โ† index

Mixin

inherits Object ยท defined at core/00-bootstrap.qn:90

The base class for mixins โ€” method bundles a class pulls in with .mix:. Define one by subclassing (Mixin <- MyMixin <- { ... }); mixins are never instantiated.

Class methods

assertMeetsRequirements:

Requirements hook: called with the host class at the end of a host's definition body after it .mix:es this mixin (so required methods may be defined below the .mix: line). Throw to reject the host โ€” it is then never registered. This default accepts every host.

core/00-bootstrap.qn:96