Updates:
        Status: Invalid

Comment #1 on issue 2307 by [email protected]: Continued from issue 2303 "Korean language is broken"
http://code.google.com/p/v8/issues/detail?id=2307

The problem seems to be your source file encoding, TestJavaScript.cpp does not open correctly for me:

[...]
Handle<String> source = String::New(L"MessageLog('°¡³ªŽÙ¶óž¶¹Ù»ç')");
[...]


V8 itself seems to work fine. The developer shell d8 delivers the correct output:

V8 version 3.13.4 (candidate) [console: dumb]
d8> print("가나다라마바사")
가나다라마바사


Why don't you try

Handle<String> source = String::New("MessageLog('\uac00\ub098\ub2e4\ub77c\ub9c8\ubc14\uc0ac')");

instead?


Please post further questions to groups.google.com/group/v8-users since this problem doesn't seem to be caused by V8.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to