http://qs321.pair.com?node_id=1198843


in reply to Re: Freezing a regular expression qr()
in thread Freezing a regular expression qr()

"... comments, which JSON doesn't allow."

The inevitable addendum: It seems like Cpanel::JSON::XS does:

"As a nonstandard extension to the JSON syntax that is enabled by the relaxed setting, shell-style comments are allowed. They can start anywhere outside strings and go till the end of the line."

Best regards, Karl

«The Crux of the Biscuit is the Apostrophe»

perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help

Replies are listed 'Best First'.
Re^3: Freezing a regular expression qr()
by afoken (Chancellor) on Sep 08, 2017 at 06:40 UTC
    As a nonstandard extension to the JSON syntax that is enabled by the relaxed setting, shell-style comments are allowed.

    I don't like that. It feels like an "impedance mismatch". Why on earth would one want to use comment syntax from (unix) shells in something derived from JavaScript? JSON was designed so that you could simply pass it to JavaScript's eval function (yes, that would be insecure, but it is possible). Using shell comments breaks that feature. The most natural comment extension for JSON would be JavaScript comments, i.e. from /* to the next */ and from // to the next end of line.

    The //-style comments have the slight disadvantage of giving some whitespace characters (\r and \n) a second meaning, whereas pure JSON treats all whitespace characters outside strings equally and allows to freely replace them with other whitespace characters.

    Apart from shell comments, I can only imagine two more mismatching comment variants:

    • The REM keyword, stolen from BASIC and DOS batches.
    • A C in the first column of a line, stolen from classic FORTRAN.

    But while surfing, I found an even more mismatching comment syntax at http://www.gavilan.edu/csis/languages/comments.html:

    • A * in column 7 of a line, stolen from COBOL.

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
      "Noli nuntium interficere"

      Or so. Best regards, Karl

      «The Crux of the Biscuit is the Apostrophe»

      perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help