In theory it should work fine for any language as long as we can parse it into an AST (or CST). It’s doing a straightforward search through an AST for identifiers and strings. I plan to extend it to other languages beyond JavaScript-family, as long as we can write a shim that parses the source language and feeds the parsed version to JavaScript.
Interesting idea. I wonder how well it would work for non OO languages.
In theory it should work fine for any language as long as we can parse it into an AST (or CST). It’s doing a straightforward search through an AST for identifiers and strings. I plan to extend it to other languages beyond JavaScript-family, as long as we can write a shim that parses the source language and feeds the parsed version to JavaScript.