Browse Source

stream_wrap: MayContainNonAscii() is deprecated

V8 3.19.0 deprecates v8::String::MayContainNonAscii(). It always returns
true so there is not much point in keeping the call site around.
v0.11.2-release
Ben Noordhuis 12 years ago
parent
commit
7349667467
  1. 6
      src/stream_wrap.cc

6
src/stream_wrap.cc

@ -355,11 +355,7 @@ size_t StreamWrap::GetStringSizeImpl(Handle<Value> val) {
break;
case kUtf8:
if (!(string->MayContainNonAscii())) {
// If the string has only ascii characters, we know exactly how big
// the storage should be.
return string->Length();
} else if (string->Length() < 65536) {
if (string->Length() < 65536) {
// A single UCS2 codepoint never takes up more than 3 utf8 bytes.
// Unless the string is really long we just allocate so much space that
// we're certain the string fits in there entirely.

Loading…
Cancel
Save