Grammar Attribute System in F #

after searching the internet, I could not find the grammatical attribute system for F #. Well there is fsyacc with inherited attributes, but I'm looking for something more expressive, like Ox ( Ox Guide ). In fact, I would prefer an inline approach (perhaps in conjunction with fparsec). Well, I could go with haskell and the excellent utrecht grammar attribute system ( UHC attribute grammar system ), but for some reason I would stick with f #.

Note: right now I am using catamorphism (and dozens of handwritten crawls), completely in my compiler the code complexity ... is just awesome; -)

any clues?

+4
source share
1 answer

As for the “dozens of handwritten crawls,” I don’t know if it’s connected exactly, but check

Reset your boiler in f #

if it helps or provides inspiration.

+2
source

All Articles