annotate parse.ur @ 24:693ab4dd1e9e

Track change to handling of 'class' by Basis.tag
author Adam Chlipala <adam@chlipala.net>
date Sun, 06 May 2012 13:09:43 -0400
parents 8eaaca74a64c
children
rev   line source
adam@9 1 (** Datatypes for describing parse results *)
adam@9 2
adam@9 3 datatype parse a =
adam@9 4 Success of a
adam@9 5 | Failure of string