A formal grammar is a set of production rules that describe how to form strings of valid syntax. Formal Grammars are most often used to specify the syntax of a programming language.

learn more… | top users | synonyms

3
votes
1answer
73 views

“Untranslatable” Grammars to Regular Expression

Are there such things? Like for example, S -> aSb | ^ (possible words: ^, ab, aabb, aaabbb, aaaabbbb, ...) From what I've learned, the only regex that closely match the said grammar is: a*b* But ...
1
vote
0answers
121 views

Generate TextMate language grammar from PEG.js grammar

Is there a tool that translates a PEG.js grammar to a TextMate grammar? I am building my own language and would like to have syntax highlighting for it in my preferred editor, TextMate. The grammar ...
0
votes
4answers
110 views

Representing my domain specific language

I've designed a very simple domain specific language(DSL) to specify and execute full-screen interactive behavior on devices. It's event based action language with XML as the carrier syntax. Example ...
1
vote
1answer
404 views

ANTLR 4 : Bad grammar and 'no viable alternative at input'

I'm using ANTLR 4 like that: import org.antlr.v4.runtime.ANTLRInputStream; import org.antlr.v4.runtime.CharStream; import org.antlr.v4.runtime.CommonTokenStream; import ...
1
vote
1answer
53 views

VXML Digits Grammar Excluding All Zeros

I'm looking for a way to build a VXML grammar that requires a certain number of digits to be entered, but also requires that the input is not all zeros. The use case for this is bank numbers. For ...
220
votes
19answers
20k views

Is C++ context-free or context-sensitive?

I often hear claims that C++ is a context-sensitive language. Take the following example: a b(c); Is this a variable definition or a function declaration? That depends on the meaning of the symbol ...
2
votes
2answers
133 views

How can I add parentheses as the highest level of precedence in a simple grammar?

I'm trying to add 2 things to my grammar: Unary minus sign, i.e. '-', and Parentheses Here's my grammar so far: <comp> ::= <expr> | <comp> <op0> <expr> <expr> ...
-1
votes
2answers
160 views

Matcher and Regex in Java to output what's inside Square Brackets but only once

I am having major trouble with understanding what is going wrong with a regex. To be complete I will lay out some background info. This program is supposed to implement a SIMPLESEM interpreter. The ...
0
votes
1answer
110 views

Xtext DSL grammar scoping customization

I know there is a simple solution for this but I have no idea how to implement it. I'm looking for how to implement the answer rather than what I need to do. Half the answer is already on this page: ...
1
vote
3answers
112 views

ANTLR Parsing Literals and Quoted IDs

I'm working on an SQL grammar in ANTLR which allows quoted identifiers (table names, field names, etc), as well as quoted literal strings. The problem is that this grammar seems to always match ...
0
votes
1answer
45 views

How Xtext knows that entity is refered by ID rule here?

In Xtext 15 minutes tutorial (here) the Entity rule is defined as follows Entity: 'entity' name = ID ('extends' superType = [Entity])? '{' features += Feature* '}' ; which means that after ...
0
votes
1answer
32 views

ANTLR test case in eclipse

I'm using ANTLR IDE in eclipse and trying to test a grammar I wrote. Testing works fine, but I can't save the test case -- I get the error "Invalid test name". Is there a specific suffix that I'm ...
1
vote
1answer
78 views

Grammar for arithmetic expressions without alternatives?

How to write Unambiguous Grammar for arithmetic expressions e.g. a+(b+c)*d E.g. E -> E + T | T T -> T * F | F F -> ( E ) | i WITHOUT alternatives - in my case without |T and |F and |i ...
22
votes
2answers
214 views

How do Java, C++, C#, etc. get around this particular syntactic ambiguity with < and >?

I used to think C++ was the "weird" one with all the ambiguities with < and >, but after trying to implement a parser I think I found an example which breaks just about every language that uses ...
0
votes
1answer
54 views

How do I make this simple grammar unambiguous?

Here is the ambiguous grammar for a simple DDC compiler in BNF form: <expr> ::= <term> | <expr> <op1> <expr> <term> ::= <decimal arg> | <term> ...
0
votes
2answers
155 views

Mapping tokens back to the location in Java source code with ANTLR

With Java Grammar for ANTLR, I could read a java code and print out the tokens sequentially. String filePath = JAVA_SOURCE; String input = readFileAsString(filePath); //ANTLRStringStream ...
0
votes
1answer
79 views

good python strategy for parsing grammar-based file format

I've written quite a few simple importers for 3D file formats like PLY and OBJ, which seem to have a very state-based per-line structure making parsing very easy. My friend wanted me to implement a ...
0
votes
0answers
31 views

What resources besides the available source code provide a Razor ViewEngine grammar or similar descriptive document?

What resources besides the available source code provide a Razor ViewEngine grammar or similar descriptive document? Specifically, I want to study how the fundamentals of the view engine are derived ...
0
votes
1answer
116 views

Xtext rule has non-LL(*) decision due to recursive rule invocations

I am trying to implement a simple grammar in Xtext to recognise a function call composed of IDs and function calls divided by a dot (Java-like syntax). I.e. whatever chain composed of IDs and/or ...
0
votes
1answer
34 views

How to deal with possible non-terminals?

Let's say I had an EBNF like this: <Expr> -> <Term> {( + | - ) <Term>} The {} brackets mean choose zero or more, so how would I know when I have just <Term> vs something ...
2
votes
2answers
119 views

Spreadsheet FixedCell reference ($a$1, $a1, a$1 etc…) issue in ANTLR grammer

I'm working on editing features for a web spreadsheet where I need to identify the cell references, range references and then coloring them as per my requirement. I'm able to identify and color the ...
2
votes
3answers
189 views

Does typedef in C/C++ really create a NEW type by combining the compound type (e.g. int*)?

recently I found typedef in my code works really different than what I proposed. An example like this: typedef int *ptype; ptype v1 = 0, v2 = 0; The result: both v1 and v2 were defined as a pointer ...
0
votes
0answers
70 views

javascript grammar and automatic semocolon insertion

I'm trying to implement javascript parser and I stuck in a problem. Javascript has a technique called "semicolon insertion". So what is a common way to deal with automatic semicolon insertion in js ...
-6
votes
2answers
166 views

Teaching English Grammar to a computer/software? [closed]

This Q may seem wierd, but I was stumbling by a thought of how can I teach a Computer a particular human language?? I am planning on a project where in a computer would, like any small human kid, be ...
0
votes
2answers
44 views

Chameleon: Why is a repeating comment truncated?

I'm having trouble with the transformation of an HL7 message. Its got an NTE segment with repeating fields of type string. ex: MSH|^~\&|HOST||TD-SYN||201207031000||ORU^R01|0017|P|2.3 ...
1
vote
1answer
42 views

something that checks if my grammar is LL(1)

I'm writing a parser for a course and my grammar is rather long and I don't want to check it by hand. Is there something I can use to check if it's LL(1)?
1
vote
0answers
64 views

Abstract grammar of the AST in Python : questions for “FunctionDef” et “arguments”

I'm trying to use the ast module in Python 3 to parse some Python code. For now I'm only coding a simple node visitor that will output the original code. I have difficulties to convert some nodes of ...
3
votes
1answer
115 views

Invalid casting Issues with antlr grammar / parser in C#

I'm using Anlr 3.5 to generate a parser and lexer from the below included grammar. This grammar is to be used to read strings so as to convert them into an object graph for later evaluation. I however ...
2
votes
1answer
176 views

ANTLR + StringTemplate -Create a JavaLike language and translate it into PLSql, C and C++ [closed]

Hello I am trying to implement a translator. Since it is coming more and more complicated I will try to explain better what I'd like to implement. I need to specify a new java like language. This ...
0
votes
2answers
112 views

Yacc reading only the first grammar rule

I have this yacc file %error-verbose %token END %token ID %token INT %token IF %token ELSE %token WHILE %token FOR %token BREAK %token CONTINUE %token RETURN %token SEM %token LPAR %token ...
0
votes
1answer
27 views

Does SRGS / SISR support open-domain variables?

My question is about the speech-recognition grammar specification language: http://en.wikipedia.org/wiki/Speech_Recognition_Grammar_Specification I would like to know whether it's possible to define ...
1
vote
1answer
89 views

Reduce/Reduce conflict when introducing pointers in my grammar

I'm working on a small compiler in order to get a greater appreciation of the difficulties of creating one's own language. Right now I'm at the stage of adding pointer functionality to my grammar but ...
3
votes
1answer
194 views

Add priority to parenthesis in calculator grammar

I'm writing a simple calculator in SML , and my code need to support 3 kinds of parentheses : ( ) [ ] { } Where inside { } , can appear { } , [ ] , ( ) expressions , Inside [ ] , can appear ...
1
vote
1answer
134 views

Can someone give a simple but non-toy example of a context-sensitive grammar? [closed]

I'm trying to understand context-sensitive grammars, and I understand why languages like {ww | w is a string} {an bn cn | a,b,c are symbols} are not context free, but what I'd like to ...
0
votes
1answer
233 views

Ambiguous Grammar:

Simple question. The following is the extract of a piece of grammar that I am trying to see whether it is ambiguous or not. Y->b Y->Z Z->bW W->d W->ϵ When I compute the first set ...
0
votes
1answer
89 views

Bison grammar (1 reduce/reduce 1 shift/reduce )

Updated ... i know, my grammar is ambiguous but how can I rewrite this grammar to eliminate this ambiguity? .................. I have a grammar just like this: Bison file %left equal nEqual %left ...
0
votes
1answer
31 views

Standard algorithms for recognizing grammar productions correctness

I'm sure there's a standard way to do this, but I don't even know where to start searching for it. How can i recognize, in any language, structures (grammars) in the form of, for example: Exp ::= ...
3
votes
2answers
178 views

ANTLR Implicit Multiplication

I'm new to ANTLR, and I'm trying to expand upon the example of a simple calculator presented here. Specifically, I've tried adding some simple functions, negative numbers and so on, to familiarize ...
1
vote
1answer
53 views

ANTLRWorks debugging - the meaning of the different colors?

I'm using the debugging mode of ANTLRWorks to test my c-grammar. Debugging in ANTLRWorks is really great for better understanding but I have a problem in understanding the different colors of the ...
1
vote
2answers
456 views

How to implement Backus-Naur Form in Python

I know there are some vaguely similar questions already relating to BNF (Backus-Naur Form) grammars in Python, but none of them help me much in terms of my application. I have multiple BNFs that I ...
1
vote
1answer
76 views

Operator issue ANTLR

It seems like this is my 1000th question today :) I'm so close to finishing my grammar, I just have an issue if a prefix and infix operator share the same symbol. I'm parsing a markup language known ...
1
vote
1answer
70 views

Parse Parenthesis as atoms ANTLR

I'm trying to match balanced parentheses such that, a PARAMS tree is created if a match is made, else the LPARAM and RPARAM tokens are simply added as atoms to the tree... tokens { LIST; ...
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 ...
1
vote
1answer
243 views

Algorithm for converting any regular expression to right linear regular grammar

Is there an algorithm to convert any regular expression to a right linear grammar? I am familiar with the algorithm to convert a simple regex to CFG. Right linear grammars have stricter rules. A -> a ...
1
vote
1answer
123 views

Recursive Tree Rewrite ANTLR

I have an AST containing a simple list of tokens... and I simply want to group pairs of balanced parameters into nested trees. I've been trying various rules but I can't quite get it... bottomup ...
2
votes
1answer
102 views

How to output ANTLR grammar build to screen (e.g. to JOptionPane like ANTLRworks CTRL-r)

I can load a grammar file in to my java project (in netbeans) and generate/build my lexer and parser classes, load them via reflection and then parse what I need to parse. What I would like is a ...
3
votes
2answers
211 views

boolean and arithmetic exression grammar in ANTLR

I'm trying to write a grammar for arithmetic and boolean expressions. I don't understand what I'm doing wrong. For my grammar, ANTLR says: [fatal] rule logic_atom has non-LL(*) decision due to ...
1
vote
1answer
171 views

Eliminating Indirect Left Recursion

My brain is fried trying to eliminate some left recursion from production rules. I'm building a compiler with JavaCC and I need to use the following 2 production rules: expression := fragment ( ( + | ...
3
votes
1answer
180 views

Decompose expression in base operation: ANTLR + StringTemplate

I am trying to write a translator for a Java like language to multiple languages. Right now I am facing 2 problems: First is to decompose complex expression in a sequence of basic operation and then ...
3
votes
2answers
73 views

ANTLR - grandchild nodes in tree construction

I'm trying to write a declarative grammar where the order of declarations and other statements is unimportant. However, for parsing, I'd like to have the grammar output a tree in an ordered fashion. ...

1 2 3 4 5 21