You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The autocompletion in JavaScript is currently very primitive, mostly due to simply looking up top-level symbols in a global context, without consideration of locally scoped variables. It would be relatively easy to improve on this a bit by using the AST we already obtain from esprima to resolve some straightforward things like variable assignments, as well as correctly resolving for the context function argument (c).
The text was updated successfully, but these errors were encountered:
The autocompletion in JavaScript is currently very primitive, mostly due to simply looking up top-level symbols in a global context, without consideration of locally scoped variables. It would be relatively easy to improve on this a bit by using the AST we already obtain from esprima to resolve some straightforward things like variable assignments, as well as correctly resolving for the context function argument (
c
).The text was updated successfully, but these errors were encountered: