aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/binary/decoder.js
diff options
context:
space:
mode:
authorGravatar Wojciech Mandrysz <tetek1@gmail.com>2016-10-03 18:59:34 +0200
committerGravatar Wojciech Mandrysz <tetek1@gmail.com>2016-10-10 23:00:01 +0200
commit7332ffb1f08c9414119aa0a59ec8334c7599bfd8 (patch)
treeb4c168df81adba79f3e4694e50679deefd450474 /js/binary/decoder.js
parentfe1d0a1f5a32fe144ee125eb0058927d7a359926 (diff)
JS: Replaced fromCodePoint/codePointAt with fromCharCode/charCodeAt because of functions limited availability, fixed typo in tests.
Diffstat (limited to 'js/binary/decoder.js')
-rw-r--r--js/binary/decoder.js21
1 files changed, 9 insertions, 12 deletions
diff --git a/js/binary/decoder.js b/js/binary/decoder.js
index 62f7b8b6..e4fb9148 100644
--- a/js/binary/decoder.js
+++ b/js/binary/decoder.js
@@ -905,12 +905,12 @@ jspb.BinaryDecoder.prototype.readString = function(length) {
var bytes = this.bytes_;
var cursor = this.cursor_;
var end = cursor + length;
- var codepoints = [];
+ var codeUnits = [];
while (cursor < end) {
var c = bytes[cursor++];
if (c < 128) { // Regular 7-bit ASCII.
- codepoints.push(c);
+ codeUnits.push(c);
} else if (c < 192) {
// UTF-8 continuation mark. We are out of sync. This
// might happen if we attempted to read a character
@@ -918,11 +918,11 @@ jspb.BinaryDecoder.prototype.readString = function(length) {
continue;
} else if (c < 224) { // UTF-8 with two bytes.
var c2 = bytes[cursor++];
- codepoints.push(((c & 31) << 6) | (c2 & 63));
+ codeUnits.push(((c & 31) << 6) | (c2 & 63));
} else if (c < 240) { // UTF-8 with three bytes.
var c2 = bytes[cursor++];
var c3 = bytes[cursor++];
- codepoints.push(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
+ codeUnits.push(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
} else if (c < 248) { // UTF-8 with 4 bytes.
var c2 = bytes[cursor++];
var c3 = bytes[cursor++];
@@ -932,20 +932,17 @@ jspb.BinaryDecoder.prototype.readString = function(length) {
var codepoint = ((c & 7) << 18) | ((c2 & 63) << 12) | ((c3 & 63) << 6) | (c4 & 63);
// Surrogates formula from wikipedia.
// 1. Subtract 0x10000 from codepoint
- codepoint -= 65536;
+ codepoint -= 0x10000;
// 2. Split this into the high 10-bit value and the low 10-bit value
- var low = codepoint & 1023;
- var high = (codepoint >> 10) & 1023;
// 3. Add 0xD800 to the high value to form the high surrogate
- high += 55296;
// 4. Add 0xDC00 to the low value to form the low surrogate:
- low += 56320;
- codepoints.push(high);
- codepoints.push(low);
+ var low = (codepoint & 1023) + 0xDC00;
+ var high = ((codepoint >> 10) & 1023) + 0xD800;
+ codeUnits.push(high, low)
}
}
- var result = String.fromCodePoint.apply(null, codepoints);
+ var result = String.fromCharCode.apply(null, codeUnits);
this.cursor_ = cursor;
return result;
};