|
|
|
|
|
by ivxvm
1112 days ago
|
|
> Javascript is dynamic enough there is absolutely no need for Macros. TypeScript macroses would be very useful for the same things codegenerators are useful: for example generating api client from swagger schema. Ofc you can do some trickery with metaprogramming, for example build and eval strings on fly and the result could be a dynamically generated function, but the point is: we want the process and the result to be typesafe and efficient, which is what is missing with hacky dynamic metaprogramming approaches. |
|