Tagged Questions

2
votes
3answers
202 views

Writing an z80 assembler - Lexing ASM and building a parse tree using composition?

Hi guys, I'm very new to the concept of writing an assembler and even after reading a great deal of material, I'm still having difficulties wrapping my head around a couple of conc …
2
votes
3answers
93 views

Lexical Analysis of Python Programming Language

Does anyone know where a FLEX or LEX specification file for Python exists? For example, this is a lex specification for the ANSI C programming language: http://www.quut.com/c/ANSI- …
2
votes
1answer
74 views

Elimination left recursion for E := EE+|EE-|id

How to eliminate left recursion for the following grammar? E := EE+|EE-|id Using the common procedure: A := Aa|b translates to: A := b|A' A' := ϵ| Aa Applying this to the …
0
votes
3answers
47 views

Lexical Analysis libraries

I would like to make a piece of software able to regognize whether a sentence is positive or negative. Is there any Lexical Analysis libraries arround? I don't really know where …
0
votes
2answers
42 views

Lexical analysis and Macros

I'm writing a demo compiler for a toy programming language in C. What problems can arise if we do macro processing in a separate phase between reading the program and lexical anal …
0
votes
3answers
49 views

What are some examples of errors a lexical analyzer could detect?

What are some examples of errors a lexical analyzer could detect in a given piece of code in a language like Java, C++ or C?
0
votes
2answers
97 views

Best way to create word stream in C#

I'd like to be able to write something like the following. Can someone show me how to write a clean WordReader class in C#. (a word is [a-zA-Z]+) public List<string> G …
1
vote
5answers
184 views

Where does the compiler spend most of its time during parsing ?

I read in Sebesta book, that the compiler spends most of its time in lexing source code. So, optimizing the lexer is a necessity, unlike the syntax analyzer. If this is true, why …
0
votes
3answers
174 views

Start states in Lex / Flex

I'm using Flex and Bison for a parser generator, but having problems with the start states in my scanner. I'm using exclusive rules to deal with commenting, but this grammar doesn …
2
votes
6answers
257 views

Parsing Meaning from Text

I realize this is a broad topic, but I'm looking for a good primer on parsing meaning from text, ideally in Python. As an example of what I'm looking to do, if a user makes a blog …
2
votes
2answers
416 views

How would you go about implementing off-side rule?

I've already written a generator that does the trick, but I'd like to know the best possible way to implement the off-side rule. Shortly: Off-side rule means in this context that …
1
vote
4answers
188 views

What are alternatives to regexes for syntax highlighting ?

While editing this and that in Vim, I often find that its syntax highlighting (for some filetypes) has some defects. I can't remember any examples at the moment, but someone surely …
1
vote
2answers
110 views

FLEX: Is there a way to return mutiple tokens at once.

In flex, I want to return multiple tokens for one match of a regular expression. Is there a way to do this?
0
votes
1answer
65 views

Good APIs for scope analyzers

I'm working on some code generation tools, and a lot of complexity comes from doing scope analysis. I frequently find myself wanting to know things like What are the free variabl …