Fix regression test after r10770.

R=yangguo@chromium.org
TEST=cctest/test-regexp/CharacterClassEscapes

Review URL: https://chromiumcodereview.appspot.com/9425050

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10771 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 417a01ac
...@@ -449,6 +449,7 @@ static bool IsWhiteSpace(uc16 c) { ...@@ -449,6 +449,7 @@ static bool IsWhiteSpace(uc16 c) {
case 0xA0: case 0xA0:
case 0x2028: case 0x2028:
case 0x2029: case 0x2029:
case 0xFEFF:
return true; return true;
default: default:
return unibrow::Space::Is(c); return unibrow::Space::Is(c);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment