how would the Web-IDE make helpful code-sensitive suggestions?
The IDE works off a file that describes every function (https://www.espruino.com/json/espruino.json) - the file is automatically generated from the /*JSON ... */ comments which are in the C code above the function itself (they are also used for adding the function into Espruino itself)
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
The IDE works off a file that describes every function (https://www.espruino.com/json/espruino.json) - the file is automatically generated from the
/*JSON ... */
comments which are in the C code above the function itself (they are also used for adding the function into Espruino itself)