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
0answers
14 views

how typedef-name - identifier is issue resolved in C?

I've been recently writing parser for language based on C. I'm using CUP (Yacc for Java). I want to implement "The lexer hack" ...
0
votes
1answer
8 views

ANTLRworks and Java grammar problems

I'm working through a ANTLR to generate AST for Java code using Java grammar and i used the command line to compile the files, and i got these problems: when I used the antlrworks-1-1.4.3.jar with ...
1
vote
0answers
17 views

production start constraint in yacc

I'm implementing a Javascript parser using Bison. The ECMAScript specification states that ExpressionStatement: [lookahead ∉ { '{' , 'function'}] Expression ; That breaks the ambiguity between ...
0
votes
1answer
33 views

ANTLR, missmatched token exception, expected \u000F

when I run input integer function () : 2+2+2; integer x; 3-1-2; end. on my grammar: evaluator : type 'function' '(' ')' ':' (expression ';' | declaration ';')* 'end' '.' ...
-3
votes
1answer
17 views

How to implement grammarly in rails app [closed]

help me with next question: How to implement grammary in rails ( in text area forms ) like: http://www.grammarly.com/
2
votes
1answer
43 views

Eliminate this indirect left recursion

The following grammar has left recursion. X is the start simbol. X -> Xa | Zb Z -> Zc | d | Xa How to remove it? Please explain it step by step.
0
votes
1answer
26 views

bison grammar rules for a custom pascal like language

I'm trying to make a compiler for a custom pascal like language using bison and flex and I end up getting syntax errors for programs that should be correct according to my custom grammar. My custom ...
0
votes
0answers
25 views

xtext : factor expression

here, my code that I try to factorize : FunctionArguments returns FunctionArgs::IFunctionArguments : FunctionArgumentsNormal | FunctionArgumentsForIter ; FunctionArgumentsNormal returns ...
1
vote
1answer
26 views

Keyword or keyphrase spotting with Sphinx4

I am currently trying to make my java code (using eclipse) perform some function if a certain thing is said. I am using the Sphinx4 libraries and this is what I currently have: What I would like it ...
0
votes
2answers
31 views

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

I have an error (like said in the title) with one rule that i dont know how resolve. i have written the following rule : FunctionArguments returns FunctionArgs::IFunctionArguments : ...
1
vote
2answers
68 views

Is the following grammar correct?

I'm trying to check for correctness of grammar using recursive descent parsing for the following grammar: <FACTOR> ::= <EXPR> | i <TERM> ::= <FACTOR> * <TERM> | ...
1
vote
1answer
17 views

How to set Culture name kinect SDK

i have an application in C# and i use a Kinect sensor for speech recognition. It is possible to set the Culture in it-IT?? I think the problem is in the method GetKinectRecognizer() becouse in this ...
1
vote
2answers
62 views

index should be in range…but isn't

I'm trying to write code that will check whether someone has switched tenses within the same sentence. It takes data from a text box, splits it into sentences, splits those sentences into words and ...
0
votes
0answers
53 views

Is Web Speech API Grammar exposed to developers?

I am currently doing some RnD on Webkit Speech Recognition and I wanted to create an application specific grammar file. According W3C definition I wrote the following code. But it doesnt seem to show ...
-2
votes
0answers
49 views

Parsing technique for given language statements?

I am new to compiler writing and trying to learn writing compiler/interpreter. I have following language statements which do not follow natural language statements - Input - one is 1 two is 2 three ...
-1
votes
0answers
39 views

Checking grammar of non-English text [closed]

I am writing a program that will take input from users in non-English languages (German, French, Spanish, Italian, and Portuguese) and will need to determine whether the input is grammatically ...
1
vote
1answer
83 views

ARM Unified Assembler Language grammar and parser?

Is there a publicly available grammar or parser for ARM's Unified Assembler Language as described in ARM Architecture Reference Manual A4.2 This document uses the ARM Unified Assembler ...
-1
votes
1answer
47 views

Where can I learn about grammar parsing? [closed]

I have a some experience programming, and I want to understand grammar parsing, for both grammar in context and out of context. Where can I learn about grammar parsing? Are there any good books, ...
0
votes
2answers
55 views

Verify LL(1) grammar with ANTLR

I understand that ANTLR can accept an LL(*) grammar. But, is there any way to check a grammar whether it is an LL(1) or not using ANTLR?
2
votes
1answer
36 views

Rascal error when specifying grammar

I have a simple file in rascal for specifying a toy grammar module temp import IO; import ParseTree; layout LAYOUT = [\t-\n\r\ ]*; start syntax Simple = A B ; syntax A = "Hello"+ ("joe" ...
0
votes
0answers
21 views

grammar construction to strip off anything inside tag and return remaining part as token list

I am new to grammar world. how to proceed with writing grammar to remove tag data in a text.. Example input: START_TAG abc END_TAG XYZ XYZ START_TAG abc END_TAG Output: xyz xyz
0
votes
1answer
41 views

Where to find formal grammar for Ruby on Rails, Cobal, and VSL?

Does anyone know where I can get the formal grammar for these languages especially Ruby on Rails? I'm interested in looking at how the language is processed. Thanks
0
votes
1answer
63 views

Scala external DSL - infinite loop caused by alternative repetitions

I am trying to build a simple external DSL in Scala that would be able to parse strings like: value = "john${tom}peter${greg}${sue}meg" In general, a substring within quotation marks contains ...
1
vote
2answers
63 views

LL(1) predictive parsing — Avoid Left recursion

When defining a grammar, say a grammar to evaluate an arithmetic expression: we divide the Expression to Terms and Factors, like so: E ::= E + T T ::= T * F F ::= num | (E) Then we need ...
2
votes
1answer
21 views

Strange warning declaring a simple PyParsing recursive grammar in Python

I am trying to parse a CLIPS-like grammar in Python using PyParsing. The piece of code I am having problem with is: import pyparsing as pp ...some pyparsing tokens definitions... ...
0
votes
0answers
17 views

javascript speech recognition grammar input limit

I am trying to limit speech recognition to a set of sentences by adding a grammar parameter to the input field. It looks like this: <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE ...
0
votes
0answers
53 views

Grammar that contains letters a,b,c and number of letters `c` is greater than number of letters `b` [migrated]

I look for grammar which use letters a,b,c that numbers of letters c is greater than number of letters b. Example: acbccba I thought about: S-> aS|bS|SCS C->cb|ca but not sure if it work. ...
-1
votes
1answer
32 views

Recognising LL and LR grammars… NOT parser [closed]

If I am given a CFG by looking at it can I decide whether it is a LL class of grammar or LR class of grammar? When I searched for this question on Google what I got was how the parsers for these ...
0
votes
1answer
44 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 ...
20
votes
1answer
326 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
3answers
75 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"?
1
vote
0answers
29 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
43 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
49 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
36 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
52 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
63 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
22 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
26 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 ...
1
vote
1answer
43 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
32 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
46 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
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 = ...
1
vote
2answers
107 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
116 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
135 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 ...
1
vote
1answer
76 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
27 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
26 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
37 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 ...

1 2 3 4 5 22