-
Curly braces in BNFC are considered too special. They seem to be always considered as begin and end marks for block of sequences (often surrounding the seuqnece of things separated by a sperator).
Ho…
-
The download link in "2013-03-01: BNFC 2.5 released." is broken. The URL http://bnfc.digitalgrammars.com/download/bnfc-2.5-src.tgz returns a 404 error.
-
While trying to compile a very simple BNFC file I ran into a bug. I am using version 2.5.0 of BNFC.
A simple BNFC file such as the following will fail for the Java target, as incorrect code is genera…
-
The following command generates Java code that does not compile.
BNFC file:
```
token FullURI ([" "]* [">"]) ;
comment "//" ;
comment "/*" "*/" ;
EStatements. Statements ::= [Statement] ;
EPrefi…
-
-
[with nixos-13.10, stable channel]
If I install the haskell platform for my user profile using:
```
nix-env -iA nixos.pkgs.haskellPlatform
```
Then when I try `ghc-pkg check` I have got:
```
dep…
-
When I use `hackage-mirror` this way:
``` shell
hackage-mirror -v --continuous --keep-going mirror.cfg
```
in which `mirror.cfg` contains two lines indicate the remote mirror and my local mirror wit…
-
And in https://github.com/BNFC/bnfc/tree/master/examples I do not see corresponding grammars also.
-
I gathered from the future plans that there is a problem with the way $PATH is handled. I'd like to know if the problem only concerns shelly `which` implementation or if `appendToPath` should be avoid…
-
I want to write a grammar for a language where you can use both newlines and semi-colons to separate expressions:
```
# this is valid:
a()
b()
# so is this:
a();b()
# so is this:
a(
);b(
)
```
Any t…