[webkit-reviews] review denied: [Bug 27305] [WINCE] add WinCE-specific unicode implementation : [Attachment 34225] patch without ICU data files, and updated copyright info

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Aug 6 18:25:35 PDT 2009


Eric Seidel <eric at webkit.org> has denied Joe Mason
<joe.mason at torchmobile.com>'s request for review:
Bug 27305: [WINCE] add WinCE-specific unicode implementation
https://bugs.webkit.org/show_bug.cgi?id=27305

Attachment 34225: patch without ICU data files, and updated copyright info
https://bugs.webkit.org/attachment.cgi?id=34225&action=review

------- Additional Comments from Eric Seidel <eric at webkit.org>
Style:
1     const UChar *sourceIterator = source;
 82	const UChar *sourceEnd = source + sourceLength;
 83	UChar *resultIterator = result;
 84	UChar *resultEnd = result + resultLength;

Argument names which don't provide clarity should be removed from headers per
our style:
 160	     bool isSpace(wchar_t c);
 161	     bool isLetter(wchar_t c);
 162	     bool isPrintableChar(wchar_t c);
 163	     bool isUpper(wchar_t c);
 164	     bool isLower(wchar_t c);
 165	     bool isPunct(wchar_t c);
 166	     bool isDigit(wchar_t c);

I assume these are already covered by other tests?

Thank you very much for posting this much smaller patch.

Unless george is volunteering to fix these when landing, I'm going to r- this
and ask you to post a copy with fixed style since you don't have commit-bit yet
(to my knowledge).

You will find the "check-webkit-style" script helpful in validating that the
style is correct in these files.


More information about the webkit-reviews mailing list