MaPePeR
MaPePeR

Reputation: 983

Complete railroad/syntax diagrams for JavaScript

Is there a source to get a full syntax description for JavaScript?

I only found syntax diagrams for "Crockford-Javascript", but not for complete JavaScript. Sadly, this diagrams are incomplete. For example: names cannot contain $ or _.

Upvotes: 1

Views: 1096

Answers (1)

Gunther
Gunther

Reputation: 5256

There is a grammar that is close to EcmaScript 5th Edition (2009) here: https://www.bottlecaps.de/rex/

You will need to download it, but you can use it to generate diagrams here: https://www.bottlecaps.de/rr/ui

Click "Edit Grammar", paste the grammar or use "Load" to upload it, then click "View Diagram".

Upvotes: 1

Related Questions