Tagged Questions
10
votes
5answers
3k views
Aspect Oriented Programming: When to start using a framework?
I just watched this talk by Greg Young warning people to KISS: Keep It Simple Stupid.
One of the things he suggested is that to do aspect-oriented programming, one does not need a framework.
He ...
7
votes
1answer
193 views
Should I let my users write BnfExpressions to extend my grammar?
Preface
I'm designing a templating language (please skip the don't/why?? speech). One of the major goals of this language is to be extensible. There are 2 main elements in my language. "Tags" and ...