Re: [Caml-list] antiquotations for c#

2009-04-15 Thread Alexy Khrabrov
On Wed, Apr 15, 2009 at 4:49 AM, Joel Reymont wrote: > Suppose I have a camlp4 parser for C#. > > I want to include bits of C# in my code and end up with the AST. > > I want to have "holes" in the above AST to plug in values. > > I understand that antiquotations take car of filling the holes in t

Re: [Caml-list] antiquotations for c#

2009-04-15 Thread Jake Donham
On Wed, Apr 15, 2009 at 1:49 AM, Joel Reymont wrote: > Suppose I have a camlp4 parser for C#. > > I want to include bits of C# in my code and end up with the AST. > > I want to have "holes" in the above AST to plug in values. > > I understand that antiquotations take car of filling the holes in th

[Caml-list] antiquotations for c#

2009-04-15 Thread Joel Reymont
Suppose I have a camlp4 parser for C#. I want to include bits of C# in my code and end up with the AST. I want to have "holes" in the above AST to plug in values. I understand that antiquotations take car of filling the holes in the AST, any tips on implementing this, though? Thanks