fullstack-lang / gong

Gong (go+ng) is a go sub-language that compiles to go and angular. All valid go is valid gong and vice versa. Gong enables fast development of web applications. Gong is model centric and by default, a UML diagram editor of the model is embedded in each application.
MIT License
11 stars 1 forks source link

Reduce compilation footprint of probe #497

Closed thomaspeugeot closed 1 month ago

thomaspeugeot commented 1 month ago

Switch from generic to interface

thomaspeugeot commented 1 month ago

The basic idea of correction is to generate non generic code instead of the generic code.

That means spotting all generic code. There are 17 files !

the probe is the root of all control threads.

In the the long build, the problem lies with the probe build that takes 43''.

thomaspeugeot commented 1 month ago

done in #501