Tagged Questions
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.
143
votes
14answers
5k 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 ...
37
votes
7answers
1k 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 ...
35
votes
4answers
5k views
What is the difference between LR, SLR, and LALR parsers?
What is the actual difference between LR, SLR, and LALR parsers? I know that SLR and LALR are types of LR parsers, but what is the actual difference as far as their parsing tables are concerned?
And ...
35
votes
52answers
6k 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 ...
20
votes
1answer
4k 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 ...
19
votes
3answers
1k views
Examples of LL(1), LR(1), LR(0), LALR(1) grammars?
Is there a good resource online with a collection of grammars for some of the major parsing algorithms (LL(1), LR(1), LR(0), LALR(1))? I've found many individual grammars that fall into these ...
17
votes
4answers
1k 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.
16
votes
1answer
129 views
How to know if two words have the same base?
I want to know, in several languages, if two words are:
either the same word,
or the grammatical variants of the same word.
For example:
had and has has the same base: in both cases, it's the ...
16
votes
2answers
187 views
Selecting the most fluent text from a set of possibilities via grammar checking (Python)
Some background
I am a literature student at New College of Florida, currently working on an overly ambitious creative project. The project is geared towards the algorithmic generation of poetry. ...
13
votes
1answer
334 views
W3C CSS grammar, syntax oddities
I was having a look at the CSS syntax here and here and I was amazed to see both the token productions and the grammar littered with whitespace declarations. Normally whitespace is defined once in the ...
13
votes
5answers
11k views
How to determine whether a grammar 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 ...
12
votes
1answer
281 views
Irony: How to give KeyTerm precedence over variable?
Relevant chunk of Irony grammar:
var VARIABLE = new RegexBasedTerminal("variable", @"(?-i)\$?\w+");
variable.Rule = VARIABLE;
tag_blk.Rule = html_tag_kw + attr_args_opt + block;
term_simple.Rule = ...
12
votes
5answers
5k 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 ...
12
votes
4answers
4k 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 ...
11
votes
11answers
2k views
Plural form of word “mutex”
What is the correct plural form of the portmanteau mutex. Is it mutexes or mutices?
10
votes
6answers
419 views
Are there programs that iteratively write new programs?
For about a year I have been thinking about writing a program that writes programs. This would primarily be a playful exercise that might teach me some new concepts. My inspiration came from ...
10
votes
9answers
492 views
Colour instead of color?
I'm working on a game engine in C++ and I have methods like setColour and things that use british grammar. While I was thinking how C++ compilers mostly use the english language (correct me if I'm ...
10
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 ...
10
votes
2answers
1k views
What makes Ometa special?
Ometa is "a new object-oriented language for pattern matching." I've encountered pattern matching in languages like Oz tools to parse grammars like Lexx/Yacc or Pyparsing before. Despite looking at ...
9
votes
8answers
253 views
Why does the C++ compiler give errors after lines instead of on them?
This question popped into my head today at work when I was having yet another domestic affair with my compiler. Despite my buff pinky (due to all the semicolon pressing I do at work), I managed to ...
9
votes
3answers
283 views
Amend HTML Grammar based on attributes in TextMate
I've recently started experimenting with jQuery Templates, which rely on your ability to wrap HTML within SCRIPT tags.
<script id="movieTemplate" type="text/x-jquery-tmpl">
<li>
...
9
votes
3answers
649 views
English grammar checker library for C++
Is there an open-source English grammar-checking library for C++ like language tools for Java?
9
votes
3answers
452 views
Where can I find a formal grammar for the Perl programming language?
I understand that the Perl syntax is ambiguous and that its disambiguation is non-trivial (sometimes involving execution of code during the compile phase). Regardless, does Perl have a formal grammar ...
9
votes
6answers
383 views
Strange problem with context free grammar
I begin with an otherwise well formed (and well working) grammar for a language. Variables,
binary operators, function calls, lists, loops, conditionals, etc. To this grammar I'd like to add what ...
9
votes
5answers
357 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
9answers
2k views
What is the best book for Programming Language Theory?
What is a good book that covers the topics of grammars (context-free and context-sensitive) and their notations (EBNF, BNF, etc), syntax, type and programming language theory, etc?
I'm not really ...
8
votes
1answer
241 views
What about theses grammars and the minimal parser to recognize it?
I'm trying to learn how to make a compiler. In order to do so, I read a lot about context-free language. But there are some things I cannot get by myself yet.
Since it's my first compiler there are ...
8
votes
6answers
366 views
Why is this c# snippet legal?
Silly question, but why does the following line compile?
int[] i = new int[] {1,};
As you can see, I haven't entered in the second element and left a comma there. Still compiles even though you ...
8
votes
6answers
261 views
Appropriate article (a/an) in String.Format
I'm looking for a culturally-sensitive way to properly insert a noun into a sentence while using the appropriate article (a/an). It could use String.Format, or possibly something else if the ...
8
votes
6answers
4k 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 ...
8
votes
8answers
3k views
Looking for a Complete Delphi (object pascal) syntax
I need a complete Object Pascal syntax (preferably Delphi 2009). Some of the syntax is given by the help files, but not all information is provided. So I started collecting loose bits of information. ...
8
votes
19answers
2k views
Is there a meaningful correlation between spelling and programming ability?
Is there a meaningful correlation between spelling and grammatical ability, and programming ability?
7
votes
1answer
87 views
Difference between shifting and look-ahead
Given a simple grammar, like
rule1
:= token1 token2 token3 token4
|| token1 token2 token3 token3;
What's the difference between shifting the first three tokens, then looking at the fourth ...
7
votes
2answers
221 views
What is the easiest way of telling whether a BNF grammar is ambiguous or not?
Namely, is there a tool out there that will automatically show the full language for a given grammar, including highlighting ambiguities (if any)?
7
votes
6answers
704 views
Need a way to parse algebraic expressions in C
I need to parse algebraic expressions for an application I'm working on and am hoping to garnish a bit of collective wisdom before taking a crack at it and, possibly, heading down the wrong road.
...
7
votes
6answers
310 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 ...
7
votes
1answer
266 views
Why is this valid C? — ({123;}) evaluates to 123 [closed]
Possible Duplicate:
in what versions of c is a block inside parenthesis used to return a value valid?
The following is a type-safe version of a typical MAX macro (this works on gcc 4.4.5):
...
7
votes
11answers
382 views
What is the difference between readonly property and function in .net?
Apart from an architectural point of view, i'm wondering if there is any difference in .net between a readonly property and a function. Are properties only conceptual wrappers around functions?
...
7
votes
1answer
153 views
What's the proper grammar for this language?
I have this language:
{an bm | m+n is an even number}
What's the proper grammar for this?
7
votes
1answer
303 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
...
7
votes
4answers
373 views
“Sign In” or “Log in” or “Login” [closed]
Possible Duplicate:
UI Terminology: Logon vs Login
Which is the right one to use
- Sign in
- Log in
- Login
Being a non-native English speaker it is difficult to distinguish them. I ...
7
votes
4answers
640 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 ...
7
votes
7answers
3k 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 ...
7
votes
4answers
226 views
Why can't I assign @b || @c to @a in Perl?
I'd like to perform some convoluted variation of the @a = @b || @c assignment, with the intent of taking @b if non-empty (hence true in a boolean sense), @c otherwise. The documentation explicitely ...
7
votes
4answers
3k 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 ...
7
votes
2answers
2k views
6
votes
4answers
188 views
Build parser from grammar at runtime
Many (most) regular expression libraries for C++ allow for creating the expression from a string during runtime. Is anyone aware of any C++ parser generators that allow for feeding a grammar ...
6
votes
2answers
136 views
Prolog : Combining DCG grammars with other restrictions
I'm very impressed by Prolog's DCG and how quickly I can produce all the possible structures that fit a particular grammar.
But I'd like to combine this search with other constraints. For example, ...
6
votes
1answer
103 views
The following alternatives can never be reached: 2
I'm trying to create a very simple grammar to learn to use ANTLR but I get the following message:
"The following alternatives can never be reached: 2"
This is my grammar attempt:
grammar Robot;
...
6
votes
2answers
222 views
Context-sensitivity vs Ambiguity
I'm confused about how context-sensitivity and ambiguity influence each other.
What i think is correct is:
Ambiguity:
An ambiguous grammar leads to the construction of more than one parse-tree ...