diff src/jscomp.sml @ 838:5154a047c6bc

Lexing some more string escape sequences; JS versions of number read; fix problem with signature unification; escape < more often in Jscomp
author Adam Chlipala <adamc@hcoop.net>
date Tue, 02 Jun 2009 19:28:25 -0400
parents b0a85cbefed2
children e4a02e4fa35c
line wrap: on
line diff
--- a/src/jscomp.sml	Tue Jun 02 15:43:18 2009 -0400
+++ b/src/jscomp.sml	Tue Jun 02 19:28:25 2009 -0400
@@ -523,9 +523,9 @@
                                                                 "'"
                                                           | #"\"" => "\\\""
                                                           | #"<" =>
-                                                            if mode = Script then
+                                                            (*if mode = Script then
                                                                 "<"
-                                                            else
+                                                            else*)
                                                                 "\\074"
                                                           | #"\\" => "\\\\"
                                                           | #"\n" => "\\n"