diff src/source.sml @ 173:8221b95cc24c

Patterns for int and string constants
author Adam Chlipala <adamc@hcoop.net>
date Thu, 31 Jul 2008 10:44:52 -0400
parents a158f8c5aa55
children 7ee424760d2f
line wrap: on
line diff
--- a/src/source.sml	Thu Jul 31 10:31:30 2008 -0400
+++ b/src/source.sml	Thu Jul 31 10:44:52 2008 -0400
@@ -92,6 +92,7 @@
 datatype pat' =
          PWild
        | PVar of string
+       | PPrim of Prim.t
        | PCon of string list * string * pat option
 
 withtype pat = pat' located