README.md: Order peg.generate options alphabetically

redux
David Majda 8 years ago
parent 3672eff31c
commit f41535224d

@ -129,11 +129,11 @@ property with more details about the error.
You can tweak the generated parser by passing a second parameter with an options You can tweak the generated parser by passing a second parameter with an options
object to `peg.generate`. The following options are supported: object to `peg.generate`. The following options are supported:
* `allowedStartRules` — rules the parser will be allowed to start parsing from
(default: the first rule in the grammar)
* `cache` — if `true`, makes the parser cache results, avoiding exponential * `cache` — if `true`, makes the parser cache results, avoiding exponential
parsing time in pathological cases but making the parser slower (default: parsing time in pathological cases but making the parser slower (default:
`false`) `false`)
* `allowedStartRules` — rules the parser will be allowed to start parsing from
(default: the first rule in the grammar)
* `dependencies` — parser dependencies, the value is an object which maps * `dependencies` — parser dependencies, the value is an object which maps
variables used to access the dependencies in the parser to module IDs used variables used to access the dependencies in the parser to module IDs used
to load them; valid only when `format` is set to `"umd"` (default: `{}`) to load them; valid only when `format` is set to `"umd"` (default: `{}`)
@ -142,11 +142,11 @@ object to `peg.generate`. The following options are supported:
set to `"umd"` (default: `null`) set to `"umd"` (default: `null`)
* `format` — format of the genreated parser (`"bare"` or `"umd"`); valid only * `format` — format of the genreated parser (`"bare"` or `"umd"`); valid only
when `output` is set to `"source"` (default: `"bare"`) when `output` is set to `"source"` (default: `"bare"`)
* `optimize`— selects between optimizing the generated parser for parsing
speed (`"speed"`) or code size (`"size"`) (default: `"speed"`)
* `output` — if set to `"parser"`, the method will return generated parser * `output` — if set to `"parser"`, the method will return generated parser
object; if set to `"source"`, it will return parser source code as a string object; if set to `"source"`, it will return parser source code as a string
(default: `"parser"`) (default: `"parser"`)
* `optimize`— selects between optimizing the generated parser for parsing
speed (`"speed"`) or code size (`"size"`) (default: `"speed"`)
* `plugins` — plugins to use * `plugins` — plugins to use
Using the Parser Using the Parser

Loading…
Cancel
Save