DanielXMoore / Civet

A TypeScript superset that favors more types and less typing
https://civet.dev
MIT License
1.55k stars 33 forks source link

Add `class with A, B` mixin notation #1299

Closed STRd6 closed 4 months ago

STRd6 commented 4 months ago

Added the usage half of mixins.

      class A with B,C
        x = 3
      ---
      class A extends C(B(Object)) {
        x = 3
      }