0
votes
1answer
38 views

grammar-free section in javaCC

Here is a short javaCC code: PARSER_BEGIN(TestParser) public class TestParser { } PARSER_END(TestParser) SKIP : { " " | "\t" | "\n" | "\r" } TOKEN : /* LITERALS */ ...
-3
votes
0answers
41 views

nullpointer exception using LanguageTool [closed]

How do I resolve the Null Pointer exception at line 15. The class compiles without errors but after calling it from another class I am getting a nullpointer exception. I am using LanguageTool 2.0 for ...
0
votes
0answers
57 views

Writing antlr grammar to parse a structured text file and store data

I have been trying to write a grammar for the following type of data. I need to extract the function name with max no. of blocks in each and as well as store all the variable names (those declared ...
2
votes
4answers
78 views

Grammar description for language Java

I'm writing a bachelor's thesis on "Analysis of the source code in Java applications". I have a few points that must include written part. One of them is "a brief description of the grammar and ...
0
votes
2answers
159 views

Check Grammar of a sentence using Parse score given by Stanford parser

I am able to parse a sentence and get the parse score using Stanford parser with the java code below LexicalizedParser lp = LexicalizedParser.loadModel( ...
0
votes
2answers
130 views

ANTLR language - Tree not created (EOF - syntax error)

I have apparently a mistake in the following language definition : grammar Hello; object : ALL* NAME ALL* '{' (ALL* | (ALL* NAME ALL* NAME)* | (ALL* object)*)* '}' ALL*; ALL : (~('{' | ...
0
votes
0answers
93 views

how to use the generated parser from antlr with java

I am trying to generate an AST with Java, for that I used this code: String src = "int k = 5;"; cAST3Lexer lexer = new cAST3Lexer(new ANTLRStringStream(src)); System.out.println("a"); ...
0
votes
0answers
33 views

Code gives a nounstruct unresolved rule name [closed]

#JSGF V1.0; /** * am importing grammar noun into grammar hello */ grammar nouns; public < nounstuct > = Jug | ball | bag; /***** New jsgf file ****/ #JSGF V1.0 ISO8859-1 en; /** * ...
0
votes
1answer
69 views

HTML formatter. Java implementation [closed]

This is a compiler course question. I need to implement an HTML formatter in Java language using some library. The question is, given a grammar for the HTML formatting rules, what library/ies should ...
4
votes
2answers
96 views

Constructor with multiple type arguments list in java grammar

The java grammar from the Java Language Specification v7 specifies the following grammar rules for constructors: Primary: ... new Creator ... Creator: NonWildcardTypeArguments ...
-1
votes
2answers
161 views

Matcher and Regex in Java to output what's inside Square Brackets but only once

I am having major trouble with understanding what is going wrong with a regex. To be complete I will lay out some background info. This program is supposed to implement a SIMPLESEM interpreter. The ...
22
votes
2answers
214 views

How do Java, C++, C#, etc. get around this particular syntactic ambiguity with < and >?

I used to think C++ was the "weird" one with all the ambiguities with < and >, but after trying to implement a parser I think I found an example which breaks just about every language that uses ...
0
votes
2answers
156 views

Mapping tokens back to the location in Java source code with ANTLR

With Java Grammar for ANTLR, I could read a java code and print out the tokens sequentially. String filePath = JAVA_SOURCE; String input = readFileAsString(filePath); //ANTLRStringStream ...
0
votes
1answer
34 views

How to deal with possible non-terminals?

Let's say I had an EBNF like this: <Expr> -> <Term> {( + | - ) <Term>} The {} brackets mean choose zero or more, so how would I know when I have just <Term> vs something ...
2
votes
1answer
102 views

How to output ANTLR grammar build to screen (e.g. to JOptionPane like ANTLRworks CTRL-r)

I can load a grammar file in to my java project (in netbeans) and generate/build my lexer and parser classes, load them via reflection and then parse what I need to parse. What I would like is a ...
3
votes
2answers
80 views

How is the '@' symbol correctly tokenized in a Java language parser?

I'm working on a Java source code parser, following the lexical and syntactic specifications. I'm stuck on annotations, though; the relevant rules are: Annotation: @ QualifiedIdentifier [ ( ...
1
vote
0answers
105 views

Delimiter for grammar rules

I try to figure out how I can extract the different Parameters of a given expression of my grammar. One grammar rule might look like this: s( X, Y(X,-), T(Y(X,-),X,X) ) First I want to extract the ...
1
vote
0answers
190 views

Detecting meaningless and/or grammatically incorrect sentence with LanguageTool

I need to check spells and grammars in texts so I started using LanguageTool API (Can be found here). Now, when I am writing the start-up code provided by them as follows- JLanguageTool langTool = ...
2
votes
1answer
137 views

how can I generate a lexer and parser on the fly (at runtime)?

I did find an answer to my question: Barts answer is exactly why I need, but it does not function (see below). Please can some one either give me a working example or show me the where I am going ...
2
votes
1answer
103 views

Preserving production order in ANTLR AST

For a grammar like, how to preserver the order in which productions appear. class: 'class' ID '{' (fields | methods) * '}' -> ^(CLASS ID ^(FIELD fields*) ^(METHOD ...
0
votes
2answers
208 views

Lexing in Java with recursive regex

I'm parsing text using Java. I've defined a grammar below: Start := "(\\<)" Stop := "(\\>)" Var = "(\\w*)"; Cons = "([0-9]*)"; Type1 := Start ((Var | Cons) | TypeParent) (Type1 ((Var | Cons) | ...
2
votes
3answers
142 views

Trick used in java grammar to differentiate >> (right shift operator) vs Nested Generics List<List<String>> [duplicate]

Possible Duplicate: What trick does Java use to avoid spaces in >>? In C++, nested parameters require extra spaces, so you see things like this: List< List<String> > In ...
1
vote
1answer
154 views

Antlr 3.4.0 mismatched input for generated parser and not in interpreter

I know that this has been discussed thousand times but I still cannot figure out why is following grammar failing. In interpreter everything works fine, without any errors or warnings. However when ...
0
votes
0answers
138 views

ANTLR Error Recovery Causing a NullPointerException in Java

I have an ANTLR Grammar that is in the form: A - B: more,things However sometimes, either A or B can be missing such as: - B: more, things //Skip A - : some, other, things //Skip C ...
1
vote
2answers
205 views

Java - Pluralization package? [duplicate]

Possible Duplicate: Plural form of a word Is there some existing class or library for adding "s" to a String if I pass it a number that's not 1? Basically, I have a cat. If I have 1 cat, I ...
3
votes
1answer
616 views

ANTLR - How to use generated AST tree?

I have 2 problems: In my ANTLR parser, I have this rewrite rule: msg: msg_content (COMMA msg_content)* -> ^(MSG_CTS msg_content+); In my tree grammar, how can I make use of the collected ...
1
vote
1answer
251 views

ANTLR - left recursion removal assistance

I have this grammar that has left-recursion and I'm not understanding how I can make it non-left-recursive. It's my first time working with parsers/grammars etc so please keep any explanation simple. ...
0
votes
1answer
93 views

Proper detection of whitespaces using ANTLR

I am using ANTLR3, via the runtime available through Maven repo1. Here is my grammar: grammar MiniJavax; goal : mainClass EOF; mainClass : 'class' IDENTIFIER '{' methodDeclarations ...
0
votes
1answer
138 views

Finding Next Expected token If error occures ANTLR 3

I am using ANTLR 3 , I have a question is that How can i find the next expected token if any error is occurred in input . I have tried to override getErrorMessage(RecognitionException e, String[] ...
4
votes
3answers
212 views

grammar compiler compiler for Java

My company is trying to write some software for Android. We would like to work with Java, and there is a component of the company's software that is c++ and so needs to be ported (or at least porting ...
-1
votes
1answer
42 views

How to fix this antlr grammar , multiple nodes

all, here is the gramma: columnName (',' columnName)* -> ^(SM_TOK columnName) I want the output ast of "A,B" to have multiple SM_TOK nodes , like : (SM_TOK A) (SM_TOK B) But,currently,I only have: ...
3
votes
3answers
641 views

Testing ANTLR Grammar

So I've been making a grammar in Eclipse with ANTLR v3.4 and I've made one that works and I want to make sure when I edit it everything still works. I can go into the interpretter everytime but that ...
3
votes
1answer
187 views

lexer that takes “not” but not “not like”

I need a small trick to get my parser completely working. I use antlr to parse boolean queries. a query is composed of elements, linked together by ands, ors and nots. So I can have something like : ...
2
votes
1answer
390 views

Antlr Tree Grammar

I am having trouble moving from parser grammar to tree grammar, the problem comes when i use tree operators (^,!) instead of rewrite rules (->) where_clause : 'where'! condition_or ; ...
0
votes
2answers
82 views

“threadsafe” modifier in JAVA?

I just came across a BNF Grammar for JAVA. In it, "modifier" has a terminal symbol called "threadsafe". However, I have never seen it before and have not been able to locate that modifier in The Java ...
0
votes
1answer
246 views

OpenNLP Extract Grammar

I'm currently looking through opennlp source code trying to find/understand the grammar that they use for chunking. This is not one of the easiest tasks. I started looking through the chunkermodel and ...
0
votes
1answer
248 views

Same operator as prefix and postfix Precedence issue (Grammar, Java Cup)

I'm using Java, JFlex which passes data to Java Cup. How can I define precedence of an operator, which can be both postfix and prefix but with different precedence. What I mean: terminal END; ...
1
vote
1answer
70 views

representing CFG productions

I'm working on a program that needs to decide if a string "(example + another) * other" belongs to a certain grammar. Start = Expr endline Expr = Term Expr2 Expr2 = + Term Expr2 | - ...
0
votes
1answer
164 views

Java parser rename variable [closed]

I need to write a parser for Java programming language. I've seen some implementations (JavaCC, SableCC) and i think i can handle it. The thing is I need to rename the variables. Could I do this ...
3
votes
2answers
2k views

Java - abstract syntax tree

I am currently looking for a Java 6/7 parser, which generates some (possibly standartized) form abstract syntax tree. I have already found that ANTLR has a Java 6 grammar, but it seems, that it only ...
2
votes
1answer
2k views

Bison java examples

Does anyone knows if there are some tutorials and/or examples of using GNU Bison with Java over the net. I've searched through the net. But i didn't manage to find anything. I have tried to implement ...
0
votes
2answers
229 views

ANTLRworks creating interpreter from grammar

Hey I have a quick question. I am using ANTLRworks to create an interpreter in Java from a set of grammar. I was going to write it out by hand but then realized I didn't have to because of antlrworks. ...
1
vote
1answer
111 views

Ambiguity in ANTLR grammar

AntlrWorks says that input {'AND','OR'..'XOR'} can be matched by two alternatives. Even with the graphical display, I could not figure out how the match happens! How on earth the ambiguity occurs in ...
0
votes
1answer
261 views

Antlworks grammar parser

I created a simple grammar in AntlWorks. Then I generated code and I have two files: grammarLexer.java and grammarParser.java. My goal is to create mapping my grammar to java language. What should I ...
0
votes
1answer
122 views

Ensure entries in ParserRule are comma separated

I have written following ParserRule in my Xtext grammar file: TestSpec: '{' ...... (('"my"' ':' myValue=(MySpec) (',' | '}'))?) & ...... '}' MySpec: '{' ( (('"suffix"' ':' ...
0
votes
1answer
963 views

ANTLR print tree

I'm looking for ANTLR grammars which are ready for printing tree in readable format. When I try to print Java.g (http://openjdk.java.net/projects/compiler-grammar/antlrworks/Java.g) the results were ...
2
votes
2answers
104 views

How can I parse a special character differently in two terminal rules using antlr?

I have a grammar that uses the $ character at the start of many terminal rules, such as $video{, $audio{, $image{, $link{ and others that are like this. However, I'd also like to match all the $ and ...
1
vote
1answer
97 views

ANTLR help - can't parse a normal text but all the other more complex rules work

I have a grammar that is very simple - it parses a bunch of text that was entered by the user for various keywords, and then does string replacements for those keywords while leaving all the other ...
2
votes
2answers
367 views

Java Grammar syntax analyzer (ASCII to graph)

I am developing an assistant to type database commands for DBAs, because these commands have many parameters, and an assistant will help a lot with their job. For this assistant, I need the grammar of ...
0
votes
3answers
64 views

Simplest way to allow users to specify output format

I have written an application which outputs data as XML. However, it would be nice to allow the user to completely customize the output format so they can more easily integrate it into their ...

1 2