ewggwegw
ewggwegw

Reputation: 4422

parsec parser for c++ functions?

is there any open source parser implementation for c++ functions with parsec?

can't find any, dont want to use libClang, becuase installation failes

Upvotes: 1

Views: 2824

Answers (1)

Don Stewart
Don Stewart

Reputation: 137957

No.

Why? C++ is very, very difficult to parse. So while there are pure Haskell parsers for C (e.g Language.C) there is no C++ parser implemented yet, other than the libclang binding which you are already aware of.


References:

Upvotes: 3

Related Questions