Tagged Questions
0
votes
1answer
174 views
Parsing Documents with a DSL
I'm trying to come up with a way to go through about a million documents which are formal documents (for arguments sake, they are Thesis documents). They are not all standardized but close enough. ...
0
votes
5answers
1k views
Tools to build a DSL in .NET
I'm getting teased more and more into developing DSLs. I've developed a tiny one with F# using fslex and fsyacc but the error messages are inaccurate (I also can't find a way to generate better ones, ...
5
votes
5answers
445 views
Why are parsing tools needed for DSLs?
Couldn't a DSL be as simple as an API and therefore not need a parser? Or am I misunderstanding what a domain specific language really is? I thought it referred to any organized set of rules for ...