DanielXMoore / Civet

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

Add class with A, B mixin notation #1299

Closed STRd6 closed 1 day ago

STRd6 commented 2 days ago

Added the usage half of mixins.

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