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
Source maps are supplementary info attached to JS code that lets debuggers point at what other-language file some piece of JavaScript was compiled from, so humans can find what to debug. More here.
Related to #9, as both require a way to track where in the input source an internal AST node came from.
The text was updated successfully, but these errors were encountered:
Moving to parse s-expressions to objects is necessary for eventually
enabling returning also source-location information along with the
parsed nodes, for more informative errors (#9) and source maps (#18).
Requested by @IMPinball and @Paraknight on separate occasions.
Source maps are supplementary info attached to JS code that lets debuggers point at what other-language file some piece of JavaScript was compiled from, so humans can find what to debug. More here.
Related to #9, as both require a way to track where in the input source an internal AST node came from.
The text was updated successfully, but these errors were encountered: