Tagged Questions
0
votes
1answer
32 views
How to make the StreamTokenizer to recognize chars blending with numbers as Words
Everything is in my question :)
I'm currently developing a calculator wich uses Reverse Polish Notation.
Everything works just fine except when the StreamTokenizer encounters something like 354a or ...
6
votes
2answers
128 views
Matching arbitrary text (both symbols and spaces) with ANTLR?
How to match any text in ANTLRv4? I mean text, which is unknown at the time of grammar writing?
My grammar is follows:
grammar Anytext;
line :
comment;
comment : '#' anytext;
anytext: ANY*;
...
1
vote
1answer
31 views
Run a raw text file in MPS
I am developing a DSL using the MPS tool. However MPS being a projectional editor does not allow to run programs written in plain text files. The code has to be written in the MPS editor or in ...
0
votes
0answers
45 views
I wrote a simple lexer, I don't know what wrong with it?
Write a simple lexical scanner in Java that recognizes the following lexemes:
Numbers (i.e., sequences of digits)
The symbolic arithmetic operations: +, *
Left and right parentheses
Identifiers ...
0
votes
1answer
49 views
Not able to run JFlex generated lexer Java file
So I used JFlex to generate a file called Yylex.java without any problems. When I try to compile it with the command javac Yylex.java, I get 30 errors, originating with this one:
Yylex.java:13: ...
0
votes
0answers
61 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 ...
1
vote
1answer
34 views
jFlex error: class throws java.io.IOException
I have written a very simple file with specification shown below to to tokenize words:
%%
%class Lexer
%unicode
WORD = [^\r\n\t ]
%%
{WORD} {System.out.println("Word is:"+yytext());}
. ...
0
votes
0answers
138 views
Using JFlex and CUP
A group partner and I have been trying to build the front-end of a compiler for a language that uses LALR grammar. We've been looking into using JFlex to build a lexer and CUP to use a scanner, but ...
4
votes
2answers
125 views
How to merge two ASTs?
I'm trying to implement a tool for merging different versions of some source code. Given two versions of the same source code, the idea would be to parse them, generate the respective Abstract Source ...
0
votes
2answers
209 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) | ...
6
votes
1answer
158 views
How to parse a string without regular expressions
I'm currently trying to create a software component that would be able to interprete dynamic strings such as:
%TO_LOWER%(%DELETE_WHITESPACES%("A SAMPLE TEXT"))
Which would result in this string:
...
3
votes
0answers
101 views
ANTLR: Space indentation?
I want to create a very simple grammar with space indentation. Each line consists of 1 or more words but indentation like python (4 spaces or a tab is one indent) and there is no close for ...
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 : ...
1
vote
3answers
209 views
Regex, ANTLR or any other solution?
Now this one is quite of a challenge on me.
I've got around 1000 queries in a file, all of a similar pattern that goes as:
***\*XYZ#PQR#\****
Now, where # indicates any-number non-whitespace ...
0
votes
3answers
1k views
New lines in Java source files: How to test for them using Character class?
Writing a lexer of .java source files in Java. I have a stream of characters and I trying to make the lexer skip single-line comments.
I loop through each char and my hypothesis is that it should be ...
1
vote
2answers
250 views
Java text editor/parsing framework
First a little introduction to my situation:
I have just started a hobby project, in regard to building my own TextEditor, called BlazeEdit. I'm writing it in Scala, and have hence, choosen to work on ...
3
votes
2answers
488 views
How can I simplify token prediction DFA?
Lexer DFA results in "code too large" error
I'm trying to parse Java Server Pages using ANTLR 3.
Java has a limit of 64k for the byte code of a single method, and I keep running into a "code too ...
1
vote
5answers
132 views
A java.io.Reader class that can skip HTML tags?
I need to strip HTML out of large volumes of text. It would be cool if I could find a class that implements java.io.Reader that would wrap another Reader, and transform the text so as to omit all of ...
0
votes
1answer
458 views
JavaCC action in token definition
I was wondering if it were possible to hook into JavaCC's lexer to call a function to check if a character is valid.
The reason I am asking is I'm trying to implement something a bit like:
TOKEN {
...
1
vote
3answers
830 views
Examples / tutorials for usage of javax.lang.model or ANTLR JavaParser to get information on Java Source Code
I would like to create an automatic Flowchart-like visualization to simple Java Logic, for this I need to parse Java Source code, I have 2 candidates, ANTLR and javax.lang.model of Java 6. Neither are ...
2
votes
5answers
255 views
Give instructions to the Java parser/lexer
Is there any way to give instructions directly to the parser and lexar from the java code level? If not, how could one go about doing this at all?
The issue is that I want to have the parser evaluate ...
3
votes
1answer
1k views
ANTLR: Unicode Character Scanning
Problem: Can't get Unicode character to print correctly.
Here is my grammar:
options { k=1; filter=true;
// Allow any char but \uFFFF (16 bit -1)
charVocabulary='\u0000'..'\uFFFE';
}
ANYCHAR :'$'
...
2
votes
2answers
635 views
1
vote
2answers
915 views
Is there a jflex specification of java string literals somewhere?
And by string literals I mean those containing \123-like characters too.
I've written something but I don't know if it's perfect:
<STRING> {
\" { ...
1
vote
2answers
211 views
How can I keep track of original character positions in a string across transformations?
I'm working on an anti-plagiarism project for my CS class. This involves detecting plagiarism in computer science courses (programming assignments), through a technique described "Winnowing: Local ...
3
votes
4answers
357 views
What is a suitable lexer generator that I can use to strip identifiers from many language source files?
I'm working on a group project for my University which is going to be used for plagiarism detection in Computer Science.
My group is primarily going off the hashing/fingerprinting techniques ...
1
vote
3answers
826 views
Using Scanner/Parser/Lexer for script collation
I'm working on a JavaScript collator/compositor implemented in Java. It works, but there has to be a better way to implement it and I think a Lexer may be the way forward, but I'm a little fuzzy.
...
1
vote
2answers
128 views
What is the best tool for creating a Java extension? [closed]
Our project group is working on a Java language extension and we have been trying to figure out what tool we should use for this purpose. The extension will primarily consist of a modification of the ...
