Re: Pegged, a Parsing Expression Grammar (PEG) generator in D

2012-03-14 Thread Jay Norwood
On Saturday, 10 March 2012 at 23:28:42 UTC, Philippe Sigaud wrote: * Grammars can be dumped in a file to create a D module. In reading the D spec I've seen a few instance where there are infered items such as auto for variables and various parameters in templates. I presume your D grammar

Re: Pegged: Syntax Highlighting

2012-03-14 Thread Andrej Mitrovic
On 3/14/12, Andrej Mitrovic wrote: > On 3/14/12, Andrej Mitrovic wrote: >> how would one use a parser like Pegged for syntax >> highlighting? > > Ok, typically one would use a lexer and not a parser. But using a > parser might be more interesting for creating more complex syntax > highlighting. :

Re: Pegged: Syntax Highlighting

2012-03-14 Thread Andrej Mitrovic
On 3/14/12, Andrej Mitrovic wrote: > how would one use a parser like Pegged for syntax > highlighting? Ok, typically one would use a lexer and not a parser. But using a parser might be more interesting for creating more complex syntax highlighting. :)

Re: std.log review suspended

2012-03-14 Thread Johannes Pfau
Am Tue, 13 Mar 2012 19:18:31 +0100 schrieb Johannes Pfau : > Am Tue, 13 Mar 2012 00:07:01 +0100 > schrieb "David Nadlinger" : > > > The extended review period for std.log has ended [1], and Jose, > > the author of the proposed module, has requested some extra time > > to incorporate the suggest

Re: Visual D 0.3.31 features GDC support

2012-03-14 Thread Piotr Szturmaj
Rainer Schuetze wrote: Hi, the new version of Visual D includes support for building and debugging D projects with GDC, both Win32 and x64. Cool! Keep up the good work! I can't wait to test my projects with GDC-win...

Re: Visual D 0.3.31 features GDC support

2012-03-14 Thread Jakob Ovrum
On Wednesday, 14 March 2012 at 07:46:35 UTC, Rainer Schuetze wrote: * property: fixed editing multiple configurations at once Very happy to finally see this get fixed. In actual VisualD use, these issues are the most urgent. Thanks, and keep the project management improvements coming - I can'

Re: Pegged, From EBNF to PEG

2012-03-14 Thread Dmitry Olshansky
On 14.03.2012 2:49, Philippe Sigaud wrote: On Tue, Mar 13, 2012 at 17:17, Dmitry Olshansky wrote: PEG defines order of alternatives, that is pretty much like a top-down recursive descent parser would parse it. Alternatives are tried from left to right, if first one fails, it tries next and so

Re: Visual D 0.3.31 features GDC support

2012-03-14 Thread Dmitry Olshansky
On 14.03.2012 11:46, Rainer Schuetze wrote: Hi, the new version of Visual D includes support for building and debugging D projects with GDC, both Win32 and x64. Wow! Now that's a killer feature! Here is a list of major changes: 2012-03-14 Version 0.3.31 * added support for building with G

Visual D 0.3.31 features GDC support

2012-03-14 Thread Rainer Schuetze
Hi, the new version of Visual D includes support for building and debugging D projects with GDC, both Win32 and x64. Here is a list of major changes: 2012-03-14 Version 0.3.31 * added support for building with GDC * added platform support for "x64" (use with GDC only) * includes new version

Re: Low feature GNUPlot controller for D2

2012-03-14 Thread Jay Norwood
On Wednesday, 14 March 2012 at 07:16:39 UTC, Jay Norwood wrote: > I just tried this on Win7 64 bit using the latest TangoD2 and the gnuplot from this link http://sourceforge.net/projects/gnuplot/files/ I had to substitute pgnuplot.exe, which is one of the windows gnuplot exe versions that acc

Re: Low feature GNUPlot controller for D2

2012-03-14 Thread Jay Norwood
On Sunday, 11 March 2012 at 21:45:02 UTC, SiegeLord wrote: > Anyway, the repository for it is here: https://github.com/SiegeLord/DGnuplot It requires TangoD2 to build and gnuplot 4.4.3 to run (unless you're saving commands to a file as described above). It works on Linux, and maybe on Windows