nirum-lang / nirum

Nirum: IDL compiler and RPC/distributed object framework for microservices
https://nirum.org/
GNU General Public License v3.0
121 stars 28 forks source link

Option to compile union types to typing.Union instead of subclasses #186

Open dahlia opened 6 years ago

dahlia commented 6 years ago

E.g.:

@python-union("typing")
union payment-method = card | vbank;
dahlia commented 6 years ago

Other suggestion:

record card (...);
record vbank (...);

unboxed union payment-method = card | vbank;