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

0
votes
1answer
23 views

How to code grammar or lexer rule to describe JSP/EL identifier or string literal in ANTLR?

How to code grammar or lexer rule to describe JSP/EL identifier or string literal in ANTLR? Remember, that JSP/EL is Unicode and you cannot list all possible symbols in a rule. Also remember, that ...
12
votes
1answer
122 views

Correspondence between type classes and grammar levels in the Chomsky hierarchy

My question is about the Applicative and Monad type classes on the one hand, and the context-free and context-sensitive grammar levels of the Chomsky hierarchy on the other. I've heard that there's a ...
0
votes
2answers
31 views

How to match any symbol in ANTLR parser (not lexer)?

How to match any symbol in ANTLR parser (not lexer)? Where is the complete language description for ANTLR4 parsers? UPDATE Is the answer is "impossible"?
0
votes
0answers
14 views

Looking for idiom database to download

I'm working on a creative writing mobile app and I'm looking for a database of idioms. I can't seem to find a "downloadable" database of idioms for free or purchase. Has anybody come across any? I did ...
0
votes
1answer
30 views

What NSTextFieldDelegate trully is?

The declaration of NSTextFieldDelegate really confuse me a lot. In Xcode, I click "jump to defination" of NSTextFieldDelegate, and found: @protocol NSTextFieldDelegate ...
1
vote
1answer
27 views

Prolog, Definite Clause Grammar

Some code I wrote for a definite clause grammar I followed the book "Learn Prolog Now" very closely lex(the,det(single)). lex(the,det(plural)). lex(a,det(single)). lex(some,det(plural)). ...
0
votes
1answer
22 views

greedy block ()* contains wildcard

I am building a grammar in ANTLR4, and I am getting this warning TL4.g4:224:12: greedy block ()* contains wildcard; the non-greedy syntax ()*? may be preferred Here is the line of code it is ...
0
votes
1answer
30 views

Some doubts about BNF grammars and Prolog's DCG grammars

I am studying grammars in Prolog and I have a litle doubt about convertions from the classic BNF grammars to the Prolog DCG grammars form. For example I have the following BNF grammar: <s> ::= ...
1
vote
1answer
41 views

EBNF grammar (ANTLR)

I've got a problem with EBNF grammar in ANTLRWorks: line 37: upper_lower_case : LOWER_CASE | UPPER_CASE ; line 42: CLASSNAME : UPPER_CASE (DIGITS | upper_lower_case )* ; line 51: UPPER_CASE ...
0
votes
1answer
15 views

Explanations about FOLLOW function - Grammar

I've some problems to understand the function FOLLOW. I cannot calcule follow functions of a grammar and that's not good. I tried exercises to understand this function and in particulary this ...
0
votes
1answer
23 views

Concatenating root text to subnodes in ANTLR

In part of my grammar I can put parts in common of some paths in evidence and in parenthesis put the rest of the path that is different between them, like: foo.bar(A;B;woo.C) is the representation of ...
0
votes
1answer
20 views

An explanation of an ANTLR syntax required for JSON grammar

At the moment I'm investigating the JSON ANTLR grammar from ANTLR project wiki: http://www.antlr.org/wiki/display/ANTLR3/JSON+Interpreter String : '"' ( EscapeSequence | ~('\u0000'..'\u001f' | ...
1
vote
1answer
18 views

antlr left recursion for nesting boolean expressions

I am writing an antlr grammar in which I'd like to be able to have nested expressions, which can be either "simple" expressions or boolean expressions (with optional parentheses). A simple expression ...
0
votes
1answer
41 views

Is it possible to call one yacc parser from another to parse specific token substream?

Suppose I already have a complete YACC grammar. Let that be C grammar for example. Now I want to create a separate parser for domain-specific language, with simple grammar, except that it still needs ...
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
69 views

Is it possible to parse big file with ANTLR?

Is it possible to instruct ANTLR not to load entire file into memory? Can it apply rules one by one and generate topmost list of nodes sequentially, along with reading file? Also may be it is possible ...
3
votes
5answers
92 views

Recognize A^n B^n language in Prolog with no arithmetics

How to recognize A^n B^n language in Prolog without arithmetics and for any A, B where A != B? With known A = a and B = b we could write % For each 'a' save 'b' in a list, then check % whether ...
1
vote
1answer
72 views

An unhandled exception of type 'System.FormatException' occurred in Microsoft.Speech.dll

I have just tried to use custom pronunciation using a PLS lexicon from thr link http://msdn.microsoft.com/en-us/library/hh378403(v=office.14).aspx. My .pls file is as following Additional ...
0
votes
1answer
43 views

How to show grammar is not LL(1) and convert grammar to LL(1)

I'm trying to find the ambiguity in this grammar so I can remove it and convert it to LL(1), however for the life of me I can't find the ambiguity. Any help will be much appreciated. D -> if (C) ...
0
votes
1answer
21 views

ANTLR:non-LL(*) decision due to recursive rule

I have tried to resolve this problem(removing the backtrack in my grammar) but i did not succeed,this is my grammar code: i have the problem in the "condition" rule grammar Sample3; options { ...
0
votes
0answers
19 views

Ambiguous grammar in parse phase

I want to build compiler to my own language, I wrote the grammar and finished lexer phase my question in parse phase this part of my EBNF grammer Statement → Block | Assignment | ...
-1
votes
2answers
25 views

ANTLRWorks, whitespaces, memory leaks, and crashing

I wanted to try this tool, antlr, so that I could eventually arrive to parse some code and refactor it. I tried some small grammars, everything was ok, so I took the next step and started parsing a ...
0
votes
2answers
51 views

Grammar for Linux command line with yacc and lex

I'd like to write down a formal grammar for describing the command line usage of some GNU/Linux tools. First, I would like to define a grammar : Start -> COMMAND AXIS AXIS -> EMPTY | INTER ...
1
vote
2answers
43 views

Is there a way to make this grammar LALR(1)?

I have a grammar with rules like this A -> pq B -> pr Block -> { Astar Bstar } Astar -> Astar A | epsilon Bstar -> Bstar B | epsilon Is there any way to turn this ...
0
votes
0answers
14 views

How to take complement of a language? [migrated]

I'm stuck on this question about context-free languages and was hoping for some clarification. L = {a^i b^j c^k | i=j and i=k} is NOT context-free. Show that its complement IS context-free. I ...
1
vote
1answer
55 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
57 views

While loop expressions in compiler parser construction

I am kinda new to design and constructing compilers. The thing I would like to implement is adding the while loop expressions to my so-far existed c/c++ code based on lets say these general BNF ...
0
votes
1answer
41 views

BNF grammar of xml

I wrote simple class code generator, that creates code basing on xml file. The xml file looks like this: <?xml version="1.0" encoding="UTF-8"?> <classes> <class name="Klient"> ...
1
vote
2answers
30 views

Setting precedence levels in BNFC grammar

Background: I'm taking a class in software semantics, and we are supposed to create a small compiler and runtime for a toy language called while. We were given a code skeleton for Java, but we are ...
0
votes
1answer
37 views

grammar-free section in javaCC

Here is a short javaCC code: PARSER_BEGIN(TestParser) public class TestParser { } PARSER_END(TestParser) SKIP : { " " | "\t" | "\n" | "\r" } TOKEN : /* LITERALS */ ...
1
vote
1answer
47 views

Group terminals into set

What does this warning mean ? How do I solve it ? Here is the code I am referring to expression : expression operator=DIV expression | expression operator=MUL expression | ...
1
vote
3answers
49 views

What is the syntax used for the syntax specification on the Mozilla Developer Network?

Their page on @font-face describes its syntax as: @font-face { [font-family: <family-name>;]? [src: [ <uri> [format(<string>#)]? | <font-face-name> ]#;]? [unicode-range: ...
1
vote
1answer
28 views

ANTLR 3, what does LT!* mean?

I was looking at the code for a Javascript grammar written in ANTLR 3, http://www.antlr3.org/grammar/1206736738015/JavaScript.g In many instances I found program : LT!* sourceElements LT!* ...
1
vote
2answers
37 views

Bison dangling else

I have the following rule in my grammar: block: TLBRACE statements TRBRACE | TLBRACE TRBRACE ; statements: statement ...
0
votes
1answer
36 views

JavaCC: Defining a *password* token or grammar rule

I'm using JavaCC do simulate a small part of SQL grammars, and I'm having a problem with defining a password. I'm writting grammar rules for a CREATE USER user_name IDENTIFIED BY a_password ...
2
votes
1answer
53 views

Pyparsing Token Source Range

How do I extract the source range (begin and end position) of a grammar rule match programmatically in Pyparsing? I can't use setParseAction for this (sub-)rule since I'm inspecting the parse tree ...
2
votes
3answers
67 views

Why can't a LL grammar be left-recursive?

In the dragon book, LL grammar is defined as follows: A grammar is LL if and only if for any production A -> a|b, the following two conditions apply. FIRST(a) and FIRST(b) are disjoint. This ...
0
votes
1answer
57 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): ...
2
votes
2answers
72 views

Is “Implicit token defintion in parser rule” something to worry about?

I'm creating my first grammar with ANTLR and ANTLRWorks 2. I have mostly finished the grammar itself (it recognizes the code written in the described language and builds correct parse trees), but I ...
0
votes
1answer
56 views

The key container name 'bsn' does not exist

I'm trying to run the project of bsn-goldparser (https://code.google.com/p/bsn-goldparser/) and I have the next trouble: Visual Studio shows me the next message : "Error 2 Cryptographic failure ...
-3
votes
0answers
41 views

nullpointer exception using LanguageTool [closed]

How do I resolve the Null Pointer exception at line 15. The class compiles without errors but after calling it from another class I am getting a nullpointer exception. I am using LanguageTool 2.0 for ...
0
votes
2answers
31 views

PEGjs: Fallback (backtrack?) to string if floating point rule fail

I have an atom rule that tries to parse everything as either a number or a quoted string first, if that fails, then treat the thing as a string. Everything parses fine except one particular case that ...
1
vote
4answers
81 views

Parsing, which method choose?

I'm working on a compiler (language close to C) and I've to implement it in C. My main question is how to choose the right parsing method in order to be efficient while coding my compiler. Here's my ...
1
vote
0answers
55 views

NLTK regexp for noun phrases to not match ending with a preposition

I'm trying to identify noun phrases using NLTK, but am still a little green on regular expressions. I was originally using a regexp like this: NP: {<PP\$>?<JJ.*>*<NN.*>+} But I ...
2
votes
1answer
77 views

Is my solution correct for this context free grammar?

I'm trying to solve this problem (I think I might have solved it): http://d.pr/i/L5Qm L = {a3nb2n | n >= 0} Basically the problem is saying l is not equal to m or m is not equal to n Rules ...
0
votes
1answer
22 views

How would I normalize the following ANTLR grammar rules to eliminate left recursion?

I'd like to be able to treat: int(int, int) As a function type. How do I normalize this (stripped down) grammar? type : classOrInterfaceType | primitiveType | functionType; functionType : type '(' ...
2
votes
1answer
79 views

Why the need for terminals? Is my solution sufficient enough?

I'm trying to get my head around context free grammars and I think I'm close. What is baffling me is this one question (I'm doing practise questions as I have an exam in a month's time): I've come ...
1
vote
2answers
77 views

Why s--> ^ and A --> a ? in Context Free Grammars

I've been reading: "Tips for creating Context free grammar" post for learning purposes and I nearly understand the concept, but I don't quite understand the following. If we have: L = {am bn | ...
0
votes
0answers
59 views

Parse Nested Parentheses in Abstract Syntax Tree with Javacc

I am trying to parse expressions such as a*(4+5) in my parser to build the abstract syntax tree. void addSub() : {} { mulDiv() ((<ADD> mulDiv() )| (<SUB> mulDiv() ) )* } void ...
2
votes
0answers
148 views

Algorithm to convert regular expression to linear grammar

What is the Standard Algorithm to convert any given Regular Expression(RE) to a Left (or Right) Linear Grammar? I know I can do this like this (to write Linear Grammar from RE): RegEx -> NFA ...

1 2 3 4 5 21