A program converting a sequence of characters into a sequence of tokens

learn more… | top users | synonyms

1
vote
1answer
110 views

Delimiting tokens containing wildcards and alternate endings with ANTLR

I have to write a parser for a legacy programming language to translate it into another. SQL statements can be embedded directly in assignments. Since I don't need to actually parse SQL, but just ...
0
votes
1answer
80 views

productions for Sable CC parser generator

it looks pretty basic, but for the last half hour I couldnt find out why we say {zero} or {one} in the following productions what does the {} indicate? bit = {zero} zero | {one} one ...
2
votes
1answer
373 views

C++ istream with lex

I have a working grammar (written in lex and bison) that parses polynomial expressions. It is like your standard, text-book calculator-like syntax. Here is a very simplified version of the grammar: ...
0
votes
1answer
98 views

how to return something when there is not match in flex(lexer)

I am using flex(the lexer) to do some lexical analysis. What I need is: If none of the rules are matched, then a value is returned to indicate such thing has happened. This is like the default ...
1
vote
1answer
237 views

Antlr MissingTokenException with simple grammar

I have what I would think would be the world's simplest grammar, parsing file system paths of the form dir1/dir2/filename (without a leading /). I've cut out some detail to get a small sample ...
2
votes
1answer
106 views

Antlr v3 error with parser/lexer rules

I am having problems with my Antlr grammar. I'm trying to write a parser rule for 'typedident' which can accept the following inputs: 'int a' or 'char a' The variable name 'a' is from my lexer rule ...
1
vote
2answers
226 views

ANTLR generated parser produces MissingTokenException

I'm using ANTLRv3 to parse input that looks like this: * this is an outline item at level 1 ** item at level 2 *** item at level 3 * another item at level 1 * an item with *bold* text Stars at the ...
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 ...
3
votes
1answer
198 views

Grammar rules for Lexer/Parser for populating classes from file

I want to use a lexer and parser at their simplest level possible to solve the following problem I have a file of which has content of the form TYPE1 ABCR { TYPE2 EFG { omega 1 ...
1
vote
0answers
83 views

Technique used for generating the Google Protocol buffer classes from the .proto file?

What lexer/parser does Google Protocol Buffer use for generating the Protocol buffer classes from the .proto file? Or if not lexer/parser what is the brief high level algorithm used for doing this. ...
0
votes
2answers
61 views

How to return '+' directly from lexer(without token)

Currently I am doing something like "+" return TADD; in my .l file to return token TADD.I want to know if there is a way I can return '+' directly so that I don't have to add a token for every ...
2
votes
4answers
359 views

Creating a List Lexer/Parser

I need to create a lexer/parser which deals with input data of variable length and structure. Say I have a list of reserved keywords: keyWordList = ['command1', 'command2', 'command3'] and a user ...
0
votes
1answer
532 views

Flex Bison Compiler

Im new here, its my first question. I have to make a C++ Compiler and I dont know why my code is not working. I get a Segmentation Fault when I execute it. Im using Flex and Bison /* ...
2
votes
1answer
118 views

Is it acceptable to store the previous state as a global variable?

One of the biggest problems with designing a lexical analyzer/parser combination is overzealousness in designing the analyzer. (f)lex isn't designed to have parser logic, which can sometimes interfere ...
3
votes
2answers
1k views

ANTLR What is simpliest way to realize python like indent-depending grammar?

I am trying realize python like indent-depending grammar. Source example: ABC QWE CDE EFG EFG CDE ABC QWE ZXC As i see, what i need is to realize two tokens INDENT and DEDENT, so i ...
1
vote
2answers
120 views

ANTLR : A lexer or a parser error?

I wrote a simple lexer in ANTLR and the grammer for ID is something like this : ID : (('a'..'z'|'A'..'Z') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*|'_'('a'..'z'|'A'..'Z') ...
0
votes
1answer
180 views

ANTRL simple grammar and Identifier

I wrote this simple grammar for ANTLR grammar ALang; @members { public static void main(String[] args) throws Exception { ALangLexer lex = new ALangLexer(new ...
1
vote
1answer
101 views

HOP::Lexer with overlapping tokens

I'm using HOP::Lexer to scan BlitzMax module source code to fetch some data from it. One particular piece of data I'm currently interested in is a module description. Currently I'm searching for a ...
1
vote
1answer
230 views

Antlr - decision matching with multiple alternatives

I'm trying to get a match to work for the following rule which will match operator identifiers, but it's not having it, specifically on the lines that match == and ..: Symbol : ( U_Sm ...
3
votes
1answer
160 views

how to enable the shortest match rule in flex (lexer)?

By default flex uses the longest match rule. Is there any way to override this behavior to make it match the shortest sequence? Thank you
1
vote
3answers
519 views

lexer error-handling PLY Python

The t_error() function is used to handle lexing errors that occur when illegal characters are detected. My question is: How can I use this function to get more specific information on errors? Like ...
1
vote
1answer
138 views

Lexing sum operator and a signed integer with PLY Python

How can I build my raw expression to differentiate between a sum operator and a signed integer? I'm using PLY Python. This,unfortunately, didn't work: t_sum=r'\+' def t_integer(token): ...
1
vote
2answers
339 views

Why the token rule (in ANTLR) “ IDENT : LETTER (LETTER | DIGIT)*; ” does not recognize “x y z”?

Say I have a piece of ANTLR grammar (lexer part) fragment LETTER : ('a'..'z' | 'A'..'Z') ; fragment DIGIT : '0'..'9'; INTEGER : DIGIT+ ; Ident : LETTER (LETTER | DIGIT)*; WS : (' ' | '\t' | '\n' | ...
1
vote
2answers
247 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 ...
4
votes
2answers
214 views

boost spirit dynamic lexer with column numbers?

I'm having trouble making a dynamic boost spirit lexer that tracks the column number. Is this possible? Can anyone provide a simple example? Thanks!
0
votes
1answer
160 views

find lexer and parser generator for c

I need a tool that can generate lexer and parser written in java for c.I know antlr can do this ,but write a grammar file for me is time consuming as there isn't a well done one in the antlr ...
2
votes
2answers
785 views

Writing a custom Xtext/ANTLR lexer without a grammar file

I'm writing an Eclipse/Xtext plugin for CoffeeScript, and I realized I'll probably need to write a lexer for it by hand. CoffeeScript parser also uses a hand-written lexer to handle indentation and ...
1
vote
1answer
126 views

ANTLR Source to Output

I'm trying to implement something like a Code Contracts feature for JavaScript as an assignment for one of my courses. The problem I'm having is that I can't seem to find a way to output the source ...
5
votes
4answers
2k views

PHP Lexer and Parser Generator?

I know question Lex and Yacc in PHP was asked before but 1 year ago. Is there any new mature PHP parser generator now ? My searches drove me to the following ones, what do you think about them, any ...
2
votes
2answers
157 views

How to return more than one token on Bison parser?

My grammar is something like this decl: attributes; {/*create an object here with the attributes $$?*/ } attributes: | att1 attributes {$$ = $1;} | att2 attributes {$$ = $1;} ...
1
vote
1answer
234 views

Two word token using PLY in Python

I am writing a compiler as part of a lab excercise and have chosen to do it in Python using PLY. I have spent some time trying to work this particular problem out and have reached a dead end as have ...
2
votes
1answer
631 views

Different lexer rules in different state

I've been working on a parser for some template language embeded in HTML (FreeMarker), piece of example here: ${abc} <html> <head> <title>Welcome!</title> </head> ...
-2
votes
1answer
347 views

I'm using boost::spirit to write a parser lexer

I'm using boost::spirit to write a parser, lexer here is what i want to do. i want to put functions and classes into data structures with the variables they use. so i want to know what would be the ...
0
votes
1answer
117 views

Define variable name except reservred worsd in a compiler

I am trying to do a lexer for a subset of Java with JavaCC. And a variable name can be any combination of letter, digit and _, beginning with a letter. I have only one problem, reserved words (such as ...
0
votes
4answers
583 views

Trouble with String.split in F#

I am having trouble with the following code, I am trying to build a lexer. Again I am using the examples from F# for Scientists. let lines_of_file filename = seq { use stream = ...
2
votes
1answer
212 views

Characters Matching Multiple Lexer Rules in ANTLR

I've defined multiple lexer rules that potentially matches the same character sequence. For example: LBRACE: '{' ; RBRACE: '}' ; LPARENT: '(' ; RPARENT: ')' ; LBRACKET: '[' ; RBRACKET: ']' ; ...
2
votes
2answers
901 views

Grammar To Parse Multiline Comments and String Literals Simultaneously

I am trying to parse C++/Java style source files and would like to isolate comments, string literals, and whitespaces as tokens. For whitespaces and comments, the commonly suggested solution is ...
3
votes
2answers
483 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 ...
2
votes
1answer
417 views

ANTLR Parser Rules With String Literals

Say if my parser rules look like this: rule1 : 'functionA' '(' expression-inside-parenthesis ')'; expression-inside-parenthesis: ....; But I never defined any lexer rule for 'functionA', '(' and ...
1
vote
5answers
131 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 ...
1
vote
2answers
179 views

Uses of writing Lexers and Parsers other than for Compilers?

What kind of problems other than writing compilers can be solved using Lexers and Parsers ? What are the advantages / disadvantages of using Lexers and Parsers over just writing regular expression ...
0
votes
2answers
737 views

Scanner (Lexing keywords with ANTLR)

I have been working on writing a scanner for my program and most of the tutorials online include a parser along with the scanner. It doesn't seem possible to write a lexer without writing a parser at ...
1
vote
1answer
477 views

Should I use/write a template lexer

I'm using a PHP template engine I've written some time ago. It relies on regexes to create a cached PHP file. Some examples of the syntax: {$foo} - regular variable {$foo.bar} - variable foo that ...
2
votes
2answers
312 views

Lexer and unicode, e.g. German mutated vowel

Two questions: 1. Why is the string abäcd not recognized (ANTLRWorks 1.4.2) with the grammar below (the result is only abcd, that means the German mutated vowel ä is missing)? 2. How can I divide ...
1
vote
0answers
110 views

Easiest way to create a custom language hilighter in VS2010?

I've been reading around, and all of the examples I've seen (including on MSDN) are incomplete or way over my head. Is there some easy way to create a custom language syntax hilighter for Visual ...
2
votes
1answer
56 views

antlr3 NOT rule

negExpression : (NOT^)* primitiveElement ; Is the rule I have. I now have this code: !!(1==1) I expected I would end up with this tree: NOT | NOT | == / \ 1 1 However, in Antlr3, ...
2
votes
2answers
1k views

Antlr Lexer rules

I've got a rule to match a string that looks like so: STRING : '"' ( ~( '"' | '\\' ) | '\\' . )* '"' ; I dont want the quotes to be part of the tokens text. In Antlr2 I would just put '!' ...
0
votes
1answer
66 views

How is \\n and \\\n interpreted by the expanded regular expression?

Within an ERE, a backslash character (\, \a, \b, \f, \n, \r, \t, \v) is considered to begin an escape sequence. Then I see \\n and [\\\n], I can guess though both \\n and [\\\n] here ...
2
votes
1answer
784 views

ANTLR: how to parse a region within matching brackets with a lexer

i want to parse something like this in my lexer: ( begin expression ) where expressions are also surrounded by brackets. it isn't important what is in the expression, i just want to have all what's ...
5
votes
2answers
408 views

Lexer that recognizes indented blocks

I want to write a compiler for a language that denotes program blocks with white spaces, like in Python. I prefer to do this in Python, but C++ is also an option. Is there an open-source lexer that ...

1 2 3 4 5 7