0
votes
0answers
37 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 = ...
0
votes
0answers
68 views

Partial parsing of C source file with PLY (need enum values)

I have specific need to process the C source file for values of preprocessor macros holding integers as well as values of enums. PLY delivers cpp.py which nicely preprocess the file with all included ...
3
votes
1answer
110 views

How can I create a ply rule for recognizing CRs?

I have trouble with distinguishing between \r (0x0d) and \n (0x0a) in my PLY lexer. A minimal example is the following program import ply.lex as lex # token names tokens = ('CR', 'LF') # token ...
1
vote
3answers
199 views

RegEx with variable data in it - ply.lex

im using the python module ply.lex to write a lexer. I got some of my tokens specified with regular expression but now im stuck. I've a list of Keywords who should be a token. data is a list with ...
4
votes
3answers
641 views

Controlling Python PLY lexer states from parser

I am working on a simple SQL select like query parser and I need to be able to capture subqueries that can occur at certain places literally. I found lexer states are the best solution and was able to ...
1
vote
3answers
553 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
140 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
1answer
242 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
3answers
461 views

several lexers for one parser with PLY?

I'm trying to implement a python parser using PLY for the Kconfig language used to generate the configuration options for the linux kernel. There's a keyword called source which performs an ...