Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm going to create Erlang language support plugin for an Intellij Idea. The big and first problem I have is in the JFlex erlang syntax definition. Does anybody know where can I get EBNF or BNF for Erlang?

share|improve this question

2 Answers

up vote 6 down vote accepted

Why not go straight to the source? The Erlang 4.7 specification lists productions in a grammar.

share|improve this answer

Have a look at lib/compiler/src/core_parse.yrl in the otp source distribution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.