0

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.

HMR
  • 37,593
  • 24
  • 91
  • 160

1 Answers1

2

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

Community
  • 1
  • 1
Chad Killingsworth
  • 14,360
  • 2
  • 34
  • 57
  • Thank you Chad, I must have missed that on the google documents or maybe they forgot to put it in there. – HMR Apr 12 '13 at 15:24