HMR
HMR

Reputation: 39310

closure compiler and closure inspector

I am reading an old book on google closure and it tells me about debugging code using closure inspector. The following page tells me that it's depreciated:

https://developers.google.com/closure/compiler/docs/inspector

It does not say what to use instead though. Is it depreciated without an alternative? If that's the case it's not depreciated it's cancelled and there is no way to debug closure compiled code.

Upvotes: 0

Views: 470

Answers (1)

Chad Killingsworth
Chad Killingsworth

Reputation: 14411

Closure-inspector is now obsolete as you so noted. The replacement is that source maps are now supported natively in Chrome.

See my answer here for how to debug compiled code: Debugging Closure-compiler Compiled Javascript

Upvotes: 2

Related Questions