Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
3k views

Are there any Parsing Expression Grammar (PEG) libraries for Javascript or PHP?

I find myself drawn to the Parsing Expression Grammar formalism for describing domain specific languages, but so far the implementation code I've found has been written in languages like Java and ...
11
votes
2answers
2k views

Visual Studio T4 vs CodeSmith

I've been using CodeSmith for the past 2 years and love what it does for me. However, I also know about T4 which is built in to Visual Studio and can do some pretty cool stuff too. Based on ...
7
votes
2answers
202 views

Write an anonymous sub in Perl to a file for later use

I have a Perl program that generates parsing rules as subs from an input file. The subs are anonymously defined an put into a hash. Now, I want to export that hash, with all the subs and then load ...
5
votes
2answers
121 views

Generative regular expressions

Typically in our work we use regular expressions in capture or match operations. However, regular expressions can be used - manually at least - to generate legal sentences that match the regular ...
1
vote
1answer
61 views

Auto-generate methods for subclasses

I have a few dozen classes. Here are two of them: class Class_A(ClassABC): def __init__(self): super().__init__() def from_B(self, b): #do stuff def from_C(self, c): ...