A parser-generator is a tool that accepts a grammar description of a language (usually as an extended Backus-Naur Formalism (EBNF)), and generates computer code that will parse the language described by that grammar. Parser generators may produce recursive descent parsers, Earley parsers, L(AL)R ...

learn more… | top users | synonyms

0
votes
1answer
14 views

Wrong import of waxeye parser

So I tried to use parses generator waxeye, but as I try to use tutorial example of program in python using generated parser I get error: AttributeError: 'module' object has no attribute 'Parser' ...
2
votes
0answers
31 views

JFlex successor

JFlex is quite old scanner generator; last version (1.4.3) has been released in 2009, and v1.5 is on trunk for a long time. I wonder if someone has found good successor and replacement for JFLex? That ...
1
vote
2answers
72 views

Create a Verilog Parser with Ruby

I would like to create a Verilog parser written in Ruby for a university project I know there are parser generators like Bison and Yacc. Could anyone give me some advices on how to get started?
1
vote
1answer
83 views

Language parser library written in PHP

I am looking for a language parser written in PHP. The goal is to read a custom language, not read PHP code. Basically, I want to specify a language syntax, give a code snippet and get back a ...
1
vote
1answer
31 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
56 views

How to Interpret decl-specifier in the C++ Grammar

I copied the full c++ grammar into my parser generator but is having problems parsing C++ declaration. How should we interpret a decl-specifier when parsing a pointer type declaration like char* ...
0
votes
0answers
59 views

Need Help to construct a simple business rule engine in Lex and Yacc

I need to develop a business rule engine prototype using LEX and YACC in C and compare its performance for a set of simple business rules with drools or ANTLR implementation. Now I started to ...
0
votes
1answer
59 views

ANTLR4 Mutually Left-recursive Error When Parsing C++ Source

I'm trying to parse a subset of cpp source syntax. The follow ANTLR4 parser rules are directly copied from the c++ language specification (except hypens are replaced by underscores): ...
3
votes
1answer
47 views

pyramid: constructe route_url without request object

I use yapps to generate a parser for a LaTex-ish language (for example to translate stuff like \begin{itemize} to the corresponding <ul>-Tags) within pyramid. One command (i.e. \ref{SOMEID}) ...
1
vote
1answer
67 views

Debugging in Jison

I'm using Jison to write a parser. This is my grammar: { "program": [ ["statements EOF", "return $1;"] ], "statements": [ ["statement", "$$ = $1;"], ...
2
votes
0answers
61 views

How do you match zero or more tokens in Jison?

I'm writing a simple expression parser in Jison allowing an arbitrary number of newlines to follow a binary operator in an expression. This is my grammar so far: { "operators": [ ["left", ...
3
votes
1answer
80 views

How is this grammar ambiguous?

I'm writing a simple expression parser in Jison. Here's my grammar: { "operators": [ ["left", "+", "-"], ["left", "*", "/", "%"] ], "bnf": { "program": [ ...
3
votes
1answer
41 views

Ambiguous non-terminal in GLR

When GLR parser reduces some text to the same non-terminal in two ore more ways it merges parse subtrees. Rekers uses 'symbol nodes' for this. I this not each non-terminal could cause a merge. ...
0
votes
1answer
102 views

ANTLR4: Whitespace handling

I have seen many ANTLR grammars that use whitespace handling like this: WS: [ \n\t\r]+ -> skip; // or WS: [ \n\t\r]+ -> channel(HIDDEN); So the whitespaces are thrown away respectively send ...
0
votes
0answers
15 views

Build more than one parser with happy

I'm trying to create two parser from one grammar in happy. Currently there is one lexer for all data types, but I want to create two parser, one working for a set of this data, and the other for the ...
1
vote
1answer
108 views

python parser generator [closed]

I am looking for a parser generator similar to flex / bison in python for parsing SQL statements. I heard to pyparsing is pretty good. Just curious if there are other recommendations? Thanks!
3
votes
2answers
77 views

Online CSS DRYer (dedupe)

DRY = "Dont Repeat Yourself". I have a base css framework in which I use to build more complex designs. The quickest method of prototyping is just to start at the end and build up the css to get the ...
0
votes
1answer
87 views

ANTLR4 integer parsing fail

I'm trying to parse a file with antlr 4, I can't get why integer of more than one digit are not parsified (line 79:44 no viable alternative at input '17'). This is the entier grammar ...
1
vote
1answer
155 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 ...
0
votes
1answer
230 views

Unable to install antlrworks2

I downloaded antlrworks2 from the tunnel vision labs website and tried to install it by running the antlrworks2.exe but getting the error "antlrworks2.exe is not a valid win32 application". I tried it ...
1
vote
5answers
116 views

A notation for empty right-hand sides of rules

When writing a ("theoretical") grammar with a rule with an empty right-hand side, one always use a symbol such as ε (or 1) to make this emptiness explicit: A → ε | a A Such a grammar in Yacc and ...
2
votes
1answer
134 views

Generate java classes from DSL grammar file

I'm looking for a way to generate a parser from a grammar file (BNF/BNF-like) that will populate an AST. However, I'm also looking to automatically generate the various AST classes in a way that is ...
1
vote
1answer
60 views

How to write a parser in javascript to parse text in editor into JSON with a model?

I don't know if it is the place to ask this. But I will try. What I need is, for example, if user writes some text in Code Mirror editor like: a1=Some Text a11 = Some Child text and the parser ...
1
vote
2answers
171 views

Bison error handling

I have a problem with Bison's error handling. I have the following grammar (I have cut out only the relevant part). Flex sends its tokens to Bison and returns the terminal symbol "KW_CONFIGPARAM" if ...
1
vote
1answer
111 views

Adding declarations to JISON

I have here an only slightly modified version of the JISON calculator example: /* description: Parses end executes mathematical expressions. */ /* lexical grammar */ %lex %% \s+ ...
2
votes
1answer
164 views

Parser for CMIS queries based on BNF grammar

For our CMIS server side implementation, I am looking to build a parser that will parse query statements provided as input to the query method. CMIS defines a BNF grammar for the query statements. I ...
6
votes
0answers
412 views

How to understand PHP Parser Generator grammar rule [closed]

I want to make a parser/lexer that will compile my template engine. I'm using PHP_ParserGenerator and PHP_LexerGenerator. As explained in their document, I have created a lexer and that one is ...
0
votes
2answers
76 views

How do I capture the line number of a syntax error in generated parser

All of the tokens I pass to Lemon are structures that have line number information attached. Look at the syntax_error definition below %name SinkParser %token_prefix SINKPARSER_TOKEN_ %token_type ...
1
vote
1answer
199 views

C comment removal with JavaCC

I know how to skip these comments using SKIP declarations, but all I need to do is to take a C source and output the same source without comments. So I declared a token <GENERIC_TEXT: (~[])+ >, ...
2
votes
2answers
180 views

how to resolve this choice conflict - JavaCC

I have a javacc grammar that defines a simple scripting language with simple expressions and conditional statements that i am reviewing and trying to correct roughly defined like this : void ...
0
votes
2answers
165 views

bison parser compilation unkonwn errors

I am building a parser but I have some errors that I could not solve them, I am nuw to bison and flex, please help me solve them and understand why they are happening here is my errors that I get: ...
0
votes
1answer
69 views

bison parser basic questions

I have some confusing question which make me run in a loop, please help me to understand them. if I have two file one is .y which is the parser file and the second is the .l lexical analyzer can I ...
1
vote
1answer
26 views

Markup parser failing

For a markup language I'm trying to parse, I decided to give parser generation a try with ANTLR. I'm new to the field, and I'm messing something up. My grammar is grammar Test; DIGIT : ...
0
votes
2answers
115 views

Looking for a java source parser and generator which can add methods and fields easily [closed]

I'm looking for a java source parser and generator, which can let me parse some java code and add new methods, fields or statements easily. The api I expect: String str = "public class User{}"; ...
2
votes
1answer
95 views

Generated parser throws error for escaped quotes on Node.js

I am using PEG.js to create a parser which includes parsing strings. The strings containing any kind of character are wrapped by quotes " and may contain escaped quotes \". So far I have the following ...
1
vote
1answer
130 views

How to Manipulate tree grammar

PARSER GRAMMAR protocol.g grammar protocol; options { language = Java; output = AST; ASTLabelType=CommonTree; } tokens{ TRANSITIONS; PAIR; } @header { package ...
0
votes
1answer
167 views

Generator of Static Java Command Line Parser

I'm trying to make a parser for a Java Program's command line arguments, as not to re-invent the wheel I tried looking for a generator that would generate something like that for me, I found people ...
0
votes
2answers
117 views

Parser issues with custom Lexer

I am seeking assistance regarding a custom built Lexer class and using it to parse through inputs. Our professor has provided us with some skeleton code for our project, and we MUST use it. My issue ...
2
votes
1answer
190 views

ANTLR tree parser grammar rewrite rule for *

I have a tree grammar, part of the grammar is shown below transitions :'transitions' '=' INT ('(' INT ',' INT ')') + ';' -> ^(TRANSITIONS INT INT INT*) ; and here is the respective part ...
1
vote
0answers
74 views

Jay parser generator on Mac producing Java instead of C#

I'm trying to run the Jay parser generator (using jar file). I'm running it like this: Java -jar Jay.jar -cv < ./../jay/skeleton.cs parser.jay > jay-tmp.out && mv jay-tmp.out parser.cs ...
-1
votes
1answer
117 views

How to use ANTLR3 lexer only, without parser?

I need to use lexer only in ANTLR3, i don't need parser. How can i do it ? I use the following code (in main.c), which i found somehwere in the internet. #include <CLexer.h> #include ...
0
votes
2answers
302 views

ANTLR: How to skip multiline comments

Given the following lexer: lexer grammar CodeTableLexer; @header { package ch.bsource.ice.parsers; } CodeTabHeader : OBracket Code ' ' Table ' ' Version CBracket; CodeTable : Code ' '* ...
1
vote
2answers
104 views

haskell happy - “Couldn't match expected type”

I have some problems to understand error messages of the parser generator system happy for haskell. For instance this code { module Test_parser where import System.IO import Test_lexer } %name ...
2
votes
1answer
184 views

Framework for ruby parsing / static code analysis

I'm currently searching for a framework which will allow me to parse ruby code and transform the code into a concrete syntax tree. I've taken a look at Rubyparser, which is the direction I'm ...
2
votes
1answer
228 views

ANTLR: Lexer does not recognize token

Given the following Lexer grammar: lexer grammar CodeTableLexer; CodeTabHeader : '[code table 1.0]'; Code : 'code'; Table : 'table'; End : 'end'; Row : ...
2
votes
1answer
155 views

Escape character grammar

I want to create a Jison (Bison) grammar for a markup language that allows escaping of markup delimiters. These would be valid: I like apples I like [apples, oranges, pears] I like [apples, oranges, ...
0
votes
1answer
132 views

Expression AST Parser from Expression Interpreter demo

I'm trying to modify this "Calculator" Jison example to be an expression parser rather than an expression interpreter. I want to output a JSON object that describes the expression instead of ...
0
votes
1answer
189 views

JavaCC: How to handle tokens that contain common words

I'm trying to create a parser for source code like this: [code table 1.0] code table code_table_name id = 500 desc = "my code table one" end code table ... and here below is the grammar I ...
6
votes
1answer
579 views

Is the order of reduction defined in Yacc?

This is more of an "in principle" question than a practical one. Is the order in which Yacc reduces productions, and reads new tokens from the lexer defined. That is, if I had the following set of ...
2
votes
3answers
250 views

LR(k) or LALR(k) parser generator with features similar to ANTLR

I'm currently in the process of writing a parser for some language. I've been given a grammar for this language, but this grammar has some left recursions and non-LL(*) constructs, so ANTLR doesn't ...

1 2 3 4 5