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

learn more… | top users | synonyms

3
votes
3answers
95 views

Insert text into C++ code between functions

I have following requirement: Adding text at the entry and exit point of any function. Not altering the source code, beside inserting from above (so no pre-processor or anything) For example: ...
5
votes
7answers
3k views

Lexer/parser tools

Which lexer/parser generator is the best (easiest to use, fastest) for C or C++? I'm using flex and bison right now, but bison only handles LALR(1) grammars. The language I'm parsing doesn't really ...
0
votes
1answer
38 views

Efficient algorithm and storage format for the table 3xN

Given the following table: |A|B|C| |0|0|1| |1|0|3| |1|1|1| |1|2|1| |1|3|1| |1|4|2| |2|5|1| I need to come up with the most efficient algorithm and storage format that will allow me, determine C ...
0
votes
2answers
128 views

What is the purpose of a lexer?

I was reading the answer to this question. I cant seem to find the answer to why someone would need a lexer separately Is it one of the steps a program goes through during compilation? Can someone ...
1
vote
1answer
19 views

Sphinx: Linking a Lexer with a style sheet using pygments

Good evening, Lets say I am using the built java lexer in pygments to highlight the syntax of a code block in a sphinx document. How do I change the style sheet that the java lexer is associated ...
4
votes
2answers
101 views
+50

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*; ...
0
votes
1answer
26 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 ...
0
votes
0answers
23 views

Sphinx: Using a custom style sheet with a custom lexer [duplicate]

Good afternoon, I have created a custom lexer and a custom style sheet in sphinx using pygments. Now I want to use the said style sheet with said lexer, does anyone know how to do this? It does not ...
0
votes
1answer
54 views

Escaping blocks of foreign code in C++

I'm currently working on a toy language that works like this: one can embed blocks written in this language into a C++ source, and before compilation, these blocks are translated into C++ in an extra ...
1
vote
0answers
21 views

String Parse , Lexer or Regex [duplicate]

$filter = 'id,name,questions.fields(id,text,options.limit(5).offset(3).fields(id,text),type).limit(10).offset(2),create_date'; I want to parse $filter like this. ($filter value is dynamic.) $fields ...
1
vote
1answer
30 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
33 views

Parser not working as expected

I started experimenting with PLY recently. I have the following code: import ply.lex as lex # List of token names tokens = ( 'BASIC', 'ACTION', 'RESULT', ) t_BASIC = ...
7
votes
3answers
926 views

OCaml + Menhir Compiling/Writing

I'm a complete newbie when it comes to OCaml. I've only recently started using the language (about 2 weeks ago), but unfortunately, I've been tasked with making a syntax analyzer (parser + lexer, ...
0
votes
1answer
93 views

Using a hashtable while building a lexical analyser

I'm building a lexical analyser for a compiler, and I'm using hashing to recoginse keywords quickly. My hashing function is : int Eval_Hash(char *str) { int prime = 5381; int i; ...
0
votes
2answers
280 views

Flex, multiline rule

Hi there i have a flex rule inside my lexer definition : operators ...
0
votes
1answer
178 views

flex auto generated file can't be used !

I'm using flex lexer as a lexer for my compiler project and I have this function to change the lexer input stream as follows: .l void initLexer(string code) { lineNumber = 1; columnNumber = ...
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 ...
0
votes
1answer
528 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 /* ...
1
vote
2answers
235 views

semicolon insertion ala google go with flex

I'm interested in adding semi-colon insertion ala Google Go to my flex file. From the Go documentation: Semicolons Like C, Go's formal grammar uses semicolons to terminate statements; ...
0
votes
1answer
115 views

Removing comments with JFlex, but keeping line terminators

I'm writing lexical specification for JFlex (it's like flex, but for Java). I have problem with TraditionalComment (/* */) and DocumentationComment (/** */). So far I have this, taken from JFlex ...
1
vote
2answers
59 views

I don't understand how to use the lexeme function

From Text.Parsec.Token: lexeme p = do { x <- p; whiteSpace; return x } It appears that lexeme takes a parser p and delivers a parser that has the same behavior as p, except that it also skips ...
0
votes
2answers
72 views

conditional regular expression in lexer

I want to put conditional check into lexer.l below line.But I am getting unknown error processing section when I tried to use pipe separator in the code. LIMITLINEEND ((\n{2})|([a-z]))(Error : ...
1
vote
2answers
95 views

Is it bad idea using regex to tokenize string for lexer?

I'm not sure how am I gonna tokenize source for lexer. For now, I only can think of using regex to parse string into array with given rule (identifier, symbols such as +,-, etc). For instance, begin ...
1
vote
1answer
72 views

Flex lexer output modification

How can I use flex lexer in C++ and modify a token's yytext value? Lets say, I have a rule like this: "/*" { char c; while(true) { c = yyinput(); ...
1
vote
2answers
2k views

Simple XML parser in bison/flex

I would like to create simple xml parser using bison/flex. I don't need validation, comments, arguments, only <tag>value</tag>, where value can be number, string or other ...
1
vote
2answers
2k views

Writing re-entrant lexer with Flex

I'm newbie to flex. I'm trying to write a simple re-entrant lexer/scanner with flex. The lexer definition goes below. I get stuck with compilation errors as shown below (yyg issue): reentrant.l: /* ...
1
vote
1answer
201 views

Solving ambiguities in grammars

I am writing a parser for delphi's dfm's files. The lexer looks like this: EXP ([Ee][-+]?[0-9]+) %% ("#"([0-9]{1,5}|"$"[0-9a-fA-F]{1,6})|"'"([^']|'')*"'")+ { ...
0
votes
1answer
37 views

How do you write a lexer parser where identifiers may begin with keywords?

Suppose you have a language where identifiers might begin with keywords. For example, suppose "case" is a keyword, but "caser" is a valid identifier. Suppose also that the lexer rules can only ...
1
vote
0answers
36 views

Re-write .litcoffee file keeping markdown intact?

Let's say I have a config file on the server-side of a Node.js app: config.litcoffee: # Config This configures stuff, and allows comments on whatever. privateFoo = 'privateBar' ## Public ## ...
16
votes
8answers
5k views

Lexer written in Javascript?

I have a project where a user needs to define a set of instructions for a ui that is completely written in javascript. I need to have the ability to parse a string of instructions and then translate ...
0
votes
1answer
85 views

A space is needed to let line_terminator be recognized

In my lexer.mll I have declared EOS as follows: let line_feed = '\n' (* %x200A *) let carriage_return = '\r' (* %x200D *) let line_terminator = line_feed | carriage_return | carriage_return line_feed ...
1
vote
1answer
27 views

ANTLR: match tokens with whitespace

I want to match an expression with white space as single token. Following are my lexer rules: HOUR : (INTEGER) ('hour'|'hours') ; MINUTE : (INTEGER) ('min'|'minute'|'minutes') ; INTEGER : '0' 'x' ...
0
votes
0answers
25 views

Antlr parsing hexadecimal number

I have following grammar for parsing time expressions like '1 day 2 hour'. time : timeLiteral | FLOAT | INTEGER ; timeLiteral : dayExpr hourExpr? minuteExpr? ; dayExpr : timeVal ...
0
votes
0answers
42 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 ...
1
vote
1answer
63 views

How to make lex/flex recognize tokens not separated by whitespace?

I'm taking a course in compiler construction, and my current assignment is to write the lexer for the language we're implementing. I can't figure out how to satisfy the requirement that the lexer must ...
0
votes
1answer
45 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: ...
1
vote
1answer
17 views

Separation of tasks between lexer and parser in parsing regular expressions

I am somewhat confused about the separation of tasks between a lexer and a parser. I'm trying to write a parser which takes Perl-style regular expression and builds a syntax tree. My problem is ...
2
votes
2answers
148 views

Modern interpreter code in c++?

I'm looking for simple interpreter code written in c++. Ideally, it would be for something no more complex than an expression evaluator with variable assignment (for the memory management code). My ...
2
votes
1answer
82 views

Boost spirit can handle Postscript/PDF like languages?

I noticed that Boost spirit offers some limits, in a question here on SO there is an user asking for help about boost spirit and the other user who gave the answer specified that boost spirit works ...
3
votes
5answers
1k views

Generate AST of a PHP source file

I want to parse a PHP source file, into an AST (preferably as a nested array of instructions). I basically want to convert things like f($a, $b + 1) into something like array( 'function_call', ...
0
votes
0answers
56 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 ...
0
votes
1answer
67 views

Wxpython : How to add new lexer to StyledTextCtrl?

I wrote my own lexer I want to add my own new lexer to StyledTextCtrl in wxpython? I am currently operating on Windows
1
vote
1answer
49 views

How to define tokens that can appear in multiple lexical modes in ANTLR4?

I am learning ANTLR4 and was trying to play with lexical modes. How can I have the same token appear in multiple lexical modes? As a very simple example, let's say my grammar has two modes, and I want ...
1
vote
1answer
31 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());} . ...
4
votes
4answers
271 views

Lexers/tokenizers and character sets

When constructing a lexer/tokenizer is it a mistake to rely on functions(in C) such as isdigit/isalpha/... ? They are dependent on locale as far as I know. Should I pick a character set and ...
3
votes
3answers
67 views

Simplest nested block parser

I want to write a simple parser for a nested block syntax, just hierarchical plain-text. For example: Some regular text. This is outputted as-is, foo{but THIS is inside a foo block}. bar{ Blocks ...
1
vote
1answer
69 views

How do you add imaginary tokens for a separated ANTLR lexer & parser?

I'm building an AST using ANTLR and based on the separated Java6 lexer & grammar. The lexer definition is contained in Java6Lex.g and produces tokens the grammar consumes. The parser consumes ...
0
votes
1answer
67 views

Is there a lexer generator that can take standard lex files and produce a lexer in JavaScript?

I'm playing with CodeMirror, a browser-based editor written in JavaScript. It has a pluggable syntax highlighting component. I'd like to be able to take standard lex files for an arbitrary language ...
0
votes
3answers
183 views

C++ parser generator

I'm writing my own scripting language and I need a software tool which generates C++ code for parsing my language. I need a lexical analyzer and a parser generator which generates C++ code. It would ...
1
vote
1answer
95 views

ANTLR 4 java.g4 -> weird grammar rule

here is one of the rule I have seen in java.g4: DecimalLiteral : ('0' | '1'..'9' '0'..'9'*) IntegerTypeSuffix? ; Why not writing it this way: DecimalLiteral : ('0'..'9'+) IntegerTypeSuffix? ; Is ...

1 2 3 4 5 7