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.
12
votes
5answers
4k views
Boolean expression (grammar) parser in c++
I want to parse a boolean expression (in C++). Input form:
a and b xor (c and d or a and b);
I just want to parse this expression into a tree, knowing the precedence rule (not,and,xor,or).
So the ...
213
votes
14answers
9k views
int a[] = {1,2,}; Weird comma allowed. Any particular reason?
Maybe I am not from this planet, but it would seem to me that the following should be a syntax error:
int a[] = {1,2,}; //extra comma in the end
But it's not. I was surprised when this code ...
12
votes
8answers
3k views
How to get all captures of subgroup matches with preg_match_all()?
Update/Note:
I think what I'm probably looking for is to get the captures of a group in PHP.
Referenced: PCRE regular expressions using named pattern subroutines.
(Read carefully:)
I have a ...
3
votes
3answers
3k views
Context-sensitive grammar and Context-free grammar
Can someone explain to me why grammars [context-free grammar and context-sensitive grammar] of this kind accepts a String?
What i know is
Context-free grammar is a formal grammar in which every ...
3
votes
3answers
165 views
What does this JavaScript snippet mean?
I have not met this type of grammar before. What does it mean? To what technique is it related?
(function(fun) {
})(myFunkyAlert);
2
votes
3answers
548 views
What is the language of this deterministic finite automata?
Given:
I have no idea what the accepted language is.
From looking at it you can get several end results:
1.) bb
2.) ab(a,b)
3.) bbab(a, b)
4.) bbaaa
224
votes
19answers
21k 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 ...
9
votes
7answers
6k views
Lisp grammar in yacc
I am trying to build a Lisp grammar. Easy, right? Apparently not.
I present these inputs and receive errors...
( 1 1)
23 23 23
ui ui
This is the grammar...
%%
sexpr: atom ...
17
votes
7answers
17k views
How to determine whether a language is LL(1) LR(0) SLR(1)
Is there a simple way to determine wether a grammar is LL1, LR0, SLR1... just from looking on the grammar without doing any complex analysis?
For instance: To decide wether a BNF Grammar is LL1 you ...
11
votes
4answers
1k views
History of trailing comma in programming language grammars
Many programming languages allow trailing commas in their grammar following the last item in a list. Supposedly this was done to simplify automatic code generation, which is understandable.
As an ...
3
votes
3answers
688 views
Testing ANTLR Grammar
So I've been making a grammar in Eclipse with ANTLR v3.4 and I've made one that works and I want to make sure when I edit it everything still works. I can go into the interpretter everytime but that ...
9
votes
7answers
677 views
Programmatically determine whether to describe an object with “a” or “an”?
I have a database of nouns (ex "house", "exclamation point", "apple") that I need to output and describe in my application. It's hard to put together a natural-sounding sentence to describe an item ...
3
votes
3answers
3k views
ANTLR Grammar for expressions
I'm trying to implement a expression handling grammar (that deals with nested parenthesis and stuff). I have the following so far, but they can't deal with some cases (successful/failure cases appear ...
14
votes
4answers
5k views
Repository of BNF Grammars?
Is there a place I can find Backus–Naur Form or BNF grammars for popular languages? Whenever I do a search I don't turn up much, but I figure they must be published somewhere. I'm most interested in ...
17
votes
3answers
4k views
11
votes
2answers
4k views
17
votes
4answers
3k views
Is HTML a context-free language?
Reading some related questions made me think about the theoretical nature of HTML.
I'm not talking about XHTML-like code here. I'm talking about stuff like this crazy piece of markup, which is ...
14
votes
5answers
463 views
What trick does Java use to avoid spaces in >>?
In the Java Generic Book, while contrasting the difference between C++ Templates and Java Generic says:
In C++, a problem arises because >>
without the space denotes the
right-shift operator. ...
9
votes
6answers
5k views
C grammar in GCC source code
I'm looking for the C grammar in GCC source code, more specifically for the grammar in the yacc/bison form.
7
votes
3answers
1k views
Xtext: grammar for language with significant/semantic whitespace
How can I use Xtext to parse languages with semantic whitespace? I'm trying to write a grammar for CoffeeScript and I can't find any good documentation on this.
5
votes
5answers
2k views
C++ Template Ambiguity
A friend and I were discussing C++ templates. He asked me what this should do:
#include <iostream>
template <bool>
struct A {
A(bool) { std::cout << "bool\n"; }
A(void*) { ...
3
votes
1answer
2k views
How to check whether a sentence is correct (simple grammar check in Python)?
How to check whether a sentence is valid in Python?
Examples:
I love Stackoverflow - Correct
I Stackoverflow love - Incorrect
1
vote
2answers
723 views
Where can I find a yacc gammar for ECMAscript/Actionscript/Javascript [closed]
My compilers class requires us to find a yacc grammar for one of these languages and combine it with the tokenizer we wrote. Presumably this is something easy to Google but I can't find it and my ...
9
votes
5answers
4k views
Which type of quotes we should use in css background url (“…”)? Single, double or no quote needed?
this
background:url(http://url);
this
background:url("http://url");
or this
background:url('http://url');
7
votes
2answers
505 views
Grammar of a C++ Translation Unit
My understanding, for a long time now, was that a C++ translation unit, after the preprocessor has run, is a sequence of declarations (let me remind that any definition is also a declaration).
Many ...
2
votes
2answers
146 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
vote
2answers
403 views
Tips for creating Context free grammar
I am new to CFG's,
Can someone give me tips in creating CFG that generates some language
For example
L = {a^m b^n | m >= n}
What I got is
So -> a|aSo|aS1|e
S1 -> b|bS1|e
but I think ...
40
votes
51answers
8k views
Is there a human readable programming language? [closed]
I mean, is there a coded language with human style coding?
For example:
Create an object called MyVar and initialize it to 10;
Take MyVar and call MyMethod() with parameters. . .
I know it's not so ...
43
votes
7answers
2k views
Is D's grammar really context-free?
I've posted this on the D newsgroup some months ago, but for some reason, the answer never really convinced me, so I thought I'd ask it here.
The grammar of D is apparently context-free.
The ...
10
votes
4answers
6k views
Open Source Grammar Checker
For an online project I'm working on, I am looking for a open source grammar checker. I have searched Google, with some good results (http://www.link.cs.cmu.edu/link/, etc), but I am wondering what ...
9
votes
1answer
858 views
What's a valid left-hand-side expression in JavaScript grammar?
Okay, we all know what the valid left-hand-side expressions are. Kind of.*
But, looking at the definition from the ECMA-Script standard, I'm very confused:
LeftHandSideExpression :
NewExpression
...
10
votes
7answers
5k views
Reserved keywords in Objective-C?
At the CocoaHeads Ă–resund meeting yesterday, peylow had constructed a great ObjC quiz. The competition was intense and three people were left with the same score when the final question was to be ...
8
votes
2answers
1k views
HTML5 Speech recognition — is there a way to set what the user is expected to say dynamically? (Using custom Grammars)
I am looking for a way to define what you expect the user to say in an <input> tag
with the HTML 5 speech attribute set.
I know that you can specify a specific grammar to use via the grammar ...
7
votes
8answers
5k views
Efficient Context-Free Grammar parser, preferably Python-friendly
I am in need of parsing a small subset of English for one of my project, described as a context-free grammar with (1-level) feature structures (example) and I need to do it efficiently .
Right now ...
6
votes
3answers
3k views
Parsing grammars using OCaml
I have a task to write a (toy) parser for a (toy) grammar using OCaml and not sure how to start (and proceed with) this problem.
Here's a sample Awk grammar:
type ('nonterm, 'term) symbol = N of ...
11
votes
2answers
3k views
What is a Context Free Grammar?
can someone explain to me what a context free grammar is? After looking at the wikipedia entry and then the wikipedia entry on formal grammar, I am left utterly and totally befuddled. Would someone be ...
5
votes
3answers
600 views
Parsing numbers with multiple digits in Prolog
I have the following simple expression parser:
expr(+(T,E))-->term(T),"+",expr(E).
expr(T)-->term(T).
term(*(F,T))-->factor(F),"*",term(T).
term(F)-->factor(F).
factor(N)-->nat(N).
...
5
votes
4answers
5k views
Removing left recursion
The following grammar has left recursion
E= E+T|T
T= T*F|F
F= a|b|c
How to remove it? Is there any general procedure for it?
4
votes
3answers
554 views
How does Python variable scoping works?
This wants me to dig deeper in Python sources, but since there are many people on SO that already done that, I would love to hear their pointers.
>>> import os
>>> def scope():
... ...
1
vote
3answers
2k views
Writing XSS Filter for (X)HTML Based on White List
I need to implement a simple and efficient XSS Filter in C++ for CppCMS. I can't use existing high quality filters
written in PHP because because it is high performance framework that uses C++.
The ...
2
votes
1answer
92 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 ...
2
votes
1answer
188 views
Stack Overflow when Pyparsing Ada 2005 Scoped Identifiers using Reference Manual Grammar
I'm currently implementing an Ada 2005 parser using Pyparsing and the reference manual grammar rules. We need this in order to analyze and transform parts of our aging Ada-codebase to C/C++.
Most ...
2
votes
1answer
220 views
ANTLR on a noisy data stream
I'm very new in the ANTLR world and I'm trying to figure out how can I use this parsing tool to interpret a set of "noisy" string. What I would like to achieve is the following.
let's take for ...
1
vote
2answers
1k views
Closure properties of context free languages
I have the following problem:
Languages L1 = {a^n * b^n : n>=0} and L2 = {b^n * a^n : n>=0} are
context free languages so they are closed under the L1L2 so L={a^n *
b^2n A^n : n>=0} must be ...
1
vote
2answers
1k views
Is it easier to write a recursive-descent parser using an EBNF or a BNF?
I've got a BNF and EBNF for a grammar. The BNF is obviously more verbose. I have a fairly good idea as far as using the BNF to build a recursive-descent parser; there are many resources for this. I am ...
39
votes
1answer
7k views
Difference between an LL and Recursive Descent parser?
I've recently being trying to teach myself how parsers (for languages/context-free grammars) work, and most of it seems to be making sense, except for one thing. I'm focusing my attention in ...
16
votes
6answers
3k views
Haskell - How to best to represent a programming language's grammar?
I've been looking at Haskell and I'd quite like to write a compiler (as a learning exercise) in it, since a lot of it's innate features can be readily applied to a compiler (particularly a recursive ...
16
votes
6answers
8k views
Learning Treetop
I'm trying to teach myself Ruby's Treetop grammar generator. I am finding that not only is the documentation woefully sparse for the "best" one out there, but that it doesn't seem to work as ...
23
votes
2answers
260 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 ...
20
votes
4answers
2k views
Where can I find C# 3.0 grammar?
I'm planning to write a C# 3.0 compiler in C#. Where can I get the grammar for parser generation?
Preferably one that works with ANTLR v3 without modification.



