0.4.3 • Published 8 years ago

cashew-js v0.4.3

Weekly downloads
3
License
-
Repository
github
Last release
8 years ago

Cashew

JavaScript-based Java parser. Outputs an abstract syntax tree as specified by the Mozilla Parser API.

Language Support

Java is the target language.

Using Cashew

Cashew ("cashew.js" file) is the Java transpiller. To run it simply serve the html and js files or install it using "npm install cashew-js". then call function "Parse" with the code as parameter.

var cashew  = require('cashew-js');
var ast = cashew.Parse(stringCode);

Cashew provides a runtime "___JavaRuntime" with functions used by the transpilled code to run. The parser will automatically include the call of the "main method" from the first class of the code. You can also wrap the AST in a function with a static call of your choice (or keep the original call to the 'first main') by "cashew.wrapFunction" specifying the ast, a functionName, (a className, and a staticCall if you want to override the call for the 'first main')

How cashew works?

Cashew uses jison to transpile Java code into JavaScript. The grammar used by cashew is "coco-java.jison" (read more about jison grammars here ). You can also find the compiled parser in the coco-java.js file and more details about it. Cashew use a embeded version of UNDERSCORE to do some tricks with the ast nodes.

Cashew web uses ESCODEGEN in the web interface to generate the JavaScript code from the AST produced by the parser.

Testing

You can test basics here!

Get in touch

Please use the GitHub issues, or email Lucas

0.4.3

8 years ago

0.4.2

8 years ago

0.4.1

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.2.7

8 years ago

0.2.4

8 years ago

0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago