Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anyone can recommend a decent Javascript parser for Java? I believe Rhino can be used, however it seems an overkill for just doing parsing, or is it the only decent solution? Any suggestion would be greatly appreciated. Thanks.

share|improve this question
You want to parse but not evaluate the javascript? – jball Jun 28 '11 at 18:51
7  
What is your ultimate goal? Validate a script? Create an abstract syntax tree from a script? Something else? – Bart Kiers Jun 28 '11 at 18:51
@Bart kybrex wants to :) I often don't know my goal until it's accomplished :P – Liam Jun 28 '11 at 19:33
@jball & @Bart, I need to parse it, and and perhaps modify its contents. – xybrek Jun 29 '11 at 0:46
@Bart, example: xa.src = ('https:' == document.location.protocol ? 'ssl'; : 'www') + '.x-a.com/xa.js'; in this script I need to get 'ssl'; and 'www'; texts and modify it. I know there are lots of logic involved to achieve this, however I think first thing to do is to parse the script first. – xybrek Jun 29 '11 at 5:29
show 1 more comment

2 Answers

up vote 7 down vote accepted

From http://code.google.com/p/google-caja/source/browse/trunk/src/com/google/caja/parser/js/Parser.java

The grammar below is a context-free representation of the grammar this parser parses. It disagrees with EcmaScript 262 Edition 3 (ES3) where implementations disagree with ES3. The rules for semicolon insertion and the possible backtracking in expressions needed to properly handle backtracking are commented thoroughly in code, since semicolon insertion requires information from both the lexer and parser and is not determinable with finite lookahead.

Noteworthy features

  1. Reports warnings on a queue where an error doesn't prevent any further errors, so that we can report multiple errors in a single compile pass instead of forcing developers to play whack-a-mole.
  2. Does not parse Firefox style catch (<Identifier> if <Expression>) since those don't work on IE and many other interpreters.
  3. Recognizes const since many interpreters do (not IE) but warns.
  4. Allows, but warns, on trailing commas in Array and Object constructors.
  5. Allows keywords as identifier names but warns since different interpreters have different keyword sets. This allows us to use an expansive keyword set.

To parse strict code, pass in a PedanticWarningMessageQueue that converts MessageLevel#WARNING and above to MessageLevel#FATAL_ERROR.

share|improve this answer

Here are two ANTLR more or less working or complete (see comments on this post) grammars for EcmaScript:

From ANTLR 5 minute intro:

ANTLR reads a language description file called a grammar and generates a number of source code files and other auxiliary files. Most uses of ANTLR generates at least one (and quite often both) of these tools:

  • A Lexer: This reads an input character or byte stream (i.e. characters, binary data, etc.), divides it into tokens using patterns you specify, and generates a token stream as output. It can also flag some tokens such as whitespace and comments as hidden using a protocol that ANTLR parsers automatically understand and respect.

  • A Parser: This reads a token stream (normally generated by a lexer), and matches phrases in your language via the rules (patterns) you specify, and typically performs some semantic action for each phrase (or sub-phrase) matched. Each match could invoke a custom action, write some text via StringTemplate, or generate an Abstract Syntax Tree for additional processing.

share|improve this answer
That grammar is full of errors, try generating a lexer and parser from it: you won't succeed. – Bart Kiers Jun 28 '11 at 18:55
Automatically-constructed parsers for JavaScript are pretty hard to do, thanks to the regex syntax ambiguity. – Pointy Jun 28 '11 at 18:56
@Bart, thanks for your input. I've used ANTLR before, but not the linked grammar. Added another which might work better (according to the comments on the ANTLR page) and added a warning message to the other. – miku Jun 28 '11 at 18:59
@miku, yeah, that first one generates a lexer and parser properly, but I don't see the regex-literal, / ... / defined anywhere in it... :) – Bart Kiers Jun 28 '11 at 19:03
The first one doesn't support regular expression literals or semicolon insertion properly (before end of input or curly bracket or /*...*/ comment containing a line terminator). The second doesn't support semicolon insertion either. – Mike Samuel Jun 28 '11 at 19:30
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.