Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Side by Side Diff: trunk/src/third_party/JSON/JSON-2.59/t/_unicode_handling.pm

Issue 16539003: Revert 205057 "Add JSON.pm to third_party" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #package utf8;
2 package _unicode_handling;
3
4 # this is a dummy pragma for 5.005.
5
6 if ($] < 5.006) {
7 $INC{'utf8.pm'} = './utf8.pm';
8
9 eval q|
10 sub utf8::import { }
11 sub utf8::unimport { }
12 |;
13
14 $JSON::can_handle_UTF16_and_utf8 = 0;
15 }
16 else {
17 $JSON::can_handle_UTF16_and_utf8 = 1;
18
19 if ($] > 5.007 and $] < 5.008003) {
20 # $JSON::can_handle_UTF16_and_utf8 = 0;
21 }
22
23 }
24
25
26
27
28 1;
OLDNEW
« no previous file with comments | « trunk/src/third_party/JSON/JSON-2.59/t/99_binary.t ('k') | trunk/src/third_party/JSON/JSON-2.59/t/e00_func.t » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698