You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fpirsch d7e853b87c Fix automatic semi-colon insertion
Fix automatic semi-colon insertion in var statements without
initialisers.
var i
i = 1;
is valid and not accepted by the parser

but
var i = 2
i = 3;
is valid and accepted by the parser, as it should be.

With this fix, both are accepted.
11 years ago
..
arithmetics.pegjs Text nodes: Use text nodes in examples/arithmetics.pegjs 12 years ago
css.pegjs Text nodes: Use text nodes in examples/css.pegjs 12 years ago
javascript.pegjs Fix automatic semi-colon insertion 11 years ago
json.pegjs Text nodes: Use text nodes in examples/json.pegjs 12 years ago