Download Latest Version Mouse-2.3.tar.gz (582.1 kB)
Email in envelope

Get an email when there's a new version of From PEG to a practical parser

Home / Mouse-1.4
Name Modified Size InfoDownloads / Week
Parent folder
Mouse-1.4.tar.gz 2011-10-15 425.5 kB
README 2011-10-15 684 Bytes
Totals: 2 Items   426.2 kB 0
Mouse 1.4
---------

This release contains the following enhancements to release 1.3.1:

(1) Shorthand forms for three frequently used
constructions. They are easier to read and have
a more efficient implementation.

- e1*+ e2. A shorthand for (!e2 e1)*e2: 
  iterate e1 until e2. 
 
- e1++ e2. A shorthand for (!e2 e1)+e2: 
  iterate e1 at least once until e2.
  
- ^[s]. A shorthand for ![s]_: 
  consume character NOT appearing in string s.
  
(2) Position of a Phrase in source text made available 
to semantic procedures via helper method 'where'.
(Feature request 3298666.)

(3) A slightly better formulation for messages
about failing predicate !e.

Source: README, updated 2011-10-15