removing C++ comments, cause they hate me
authormiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 8 Mar 2005 22:14:26 +0000 (22:14 +0000)
committermiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 8 Mar 2005 22:14:26 +0000 (22:14 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@204 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/JSON.pm

index 6027c92..0d99806 100644 (file)
@@ -81,12 +81,11 @@ sub JSON2perl {
        my $class = shift;
        local $_ = shift;
 
-       # remove C++ comments
-       s/\/\/.+$//sgmo;
-
        # Convert JSON Unicode...
        s/\\u(\d{4})/chr(hex($1))/esog;
 
+       warn $_;
+
        # Grab strings...
        my @strings = /"((?:(?:\\[\"])|[^\"])*)"/sog;
 
@@ -108,6 +107,7 @@ sub JSON2perl {
        s/true/ bless( {}, "JSON::bool::true") /sog;
        s/false/ bless( {}, "JSON::bool::false") /sog;
 
+
        my $ret;
        return eval '$ret = '.$_;
 }