In case it is helpful, I am on Debian Squeeze Linux and I have _not_
seen this error.
-Andy
In case it is helpful, I am on Debian Squeeze Linux and I have _not_
seen this error.
sudo easy_install http://closure-linter.googlecode.com/files/closure_linter-2.3.tar.gz
sudo easy_install http://closure-linter.googlecode.com/files/closure_linter-latest.tar.gz
maybe the original bad release corrupted something in easy_install, so
that even the new, good release won't fix it?
Looking at easy_install, it's not entirely clear to me how it manages
statefulness, and whether it's kosher to have two different release
binaries both at version 2.3.1.
ah, looking at the docs, have you tried running:
easy_install -mxN
http://closure-linter.googlecode.com/files/closure_linter-latest.tar.gz
easy_install http://closure-linter.googlecode.com/files/closure_linter-latest.tar.gz
The first command should delete the old stale state, and let the
second command go forward? just a guess, don't blame me if it doesn't
work :)
> Could be a good chance to port gjslint to the compiler (i.e. just another
> compiler pass???) One less closure tool?? :) Just kidding, I know this is a
> big job.
As it turns out, the kind of parser you would write for an optimizing
compiler is very different than the kind of parser you would write for
a linter/auto-indenter. They have completely different IRs, and things
that are impossible to represent in one are easy to represent in the
other.