A program converting a sequence of characters into a sequence of tokens
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:
...
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 ...
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 ...
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 ...
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*;
...
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 ...
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 = ...
1
vote
2answers
58 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
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 ##
...
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 ...
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
62 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
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 ...
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 ...
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 ...
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
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
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());}
. ...
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
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 ...
2
votes
2answers
65 views
ANTLR3 Syntax Highlighting the Hidden Channel in a ICSharpCode.TextEditor
I have been making some progress in the development of our little DSL but have run into a problem when trying to highlight the comments in the TextEditorControl we are using. The ICSharpCode control ...
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
193 views
Using C++11 regex to capture the contents of a context-free-grammar file
Preface
I'm trying to write my own context-free-grammar specification, to associate with the rules of my lexer/parser. It is meant to be similar to that of ANTLR's, where upper-case identifiers ...
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
1answer
54 views
How to handle/escape Python Comments in FLEX lexer?
Can anybody guide me how I can handle/escape Python Comments in FLEX lexer, so that tokens don't get generate for the comments. Thanks.
22
votes
1answer
436 views
Should I use a lexer when using a parser combinator library like Parsec?
When writing a parser in a parser combinator library like Haskell's Parsec, you usually have 2 choices:
Write a lexer to split your String input into tokens, then perform parsing on [Token]
Directly ...
0
votes
0answers
101 views
lexer tool(lexer.l)
I have read data which is in tabular file and need to remove some column also based on some
condition.I have gone through the lexer tool but did not feel comfortable. Client want to use only Lex tool ...
1
vote
2answers
43 views
Precedence in Antlr using parentheses
We are developing a DSL, and we're facing some problems:
Problem 1:
In our DSL, it's allowed to do this:
A + B + C
but not this:
A + B - C
If the user needs to use two or more different operators, ...
2
votes
0answers
86 views
How to write Windows Search style query string parser?
Using C# I'm trying to add a search capability to an application I work on but I'd like to write a search provider that I can use over and over that would take in the query string the user typed in ...
1
vote
4answers
64 views
Should I tokenize line breaks to separate statements or worry about this on the parser?
I built a basic tokenizer in PHP, right now it parses something similar to javascript albeit semicolons are not needed to separate statements.
a = 1
b = a + 1
echo b
T_IDENTIFIER a
T_EQUAL =
...
0
votes
0answers
42 views
Implement indent and dedent using JFlex
I am trying to generate a compiler for Pi language. How do I toggle the issue of indent and dedent in JFlex?
0
votes
0answers
88 views
Can anyone convert this grammar written for a Perl parser generator to ANTLR specific grammar
I had a grammar file written for a Perl parser generator to parse expressions from given input string. There is a limitation that the end expression or goal/target should be a logical expression 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 ...
0
votes
0answers
32 views
Lexer for extracting tokens from a xml document
I have to defne an input file for JFlex. This file generates a lexer that identifies
and prints on standard output the tokens of a XML rule that conforms to a given DTD
: the elements and their ...
1
vote
1answer
152 views
ocaml parser and lexer
Hi I have the 3 files nano.ml which is the type, and a paser and lexer file. I have no idea how to write the rules for parser, and i try to write the rules but it gives me erro saying that does not ...
2
votes
0answers
66 views
Is there a version of scintilla (scilexer.dll) that includes “style”(CSS) lexing for HTML?
I'm fairly sure that "text-highlighting" (through separating the different kinds of text) is part of the scintilla lexer's job. If it's not and is instead program specific please correct me.
The ...
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
0answers
12 views
Use of lexer SETTEXT with the c target
I'm trying to change the text of a token using the C target.
From the docs for the SETTEXT macro: "However if you wish to change the text that the token represents you can use this macro to set it ...
1
vote
1answer
232 views
In antlr4 lexer, How to have a rule that catches all remaining “words” as Unknown token?
I have an antlr4 lexer grammar. It has many rules for words, but I also want it to create an Unknown token for any word that it can not match by other rules. I have something like this:
Whitespace : ...
1
vote
1answer
139 views
How to use antlr 4 TokenStream as iterable stream?
I have created a lexer using antlr 4 for tokenizing Turkish natural language texts, what I need to do is to have a token stream which I can fetch tokens one by one. CommonTokenStream returns a List if ...
0
votes
0answers
104 views
ANTLR Generating AST
I have created a grammar using Antlr in Eclipse. I also think I have created the AST using the symbols -> and ^ etc in the grammar, but I'm not sure if there is anything else I have to do.
I want to ...



