diff options
author | Fedor Indutny <fedor@indutny.com> | 2014-10-02 08:16:24 +0400 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2014-10-08 15:36:04 +0400 |
commit | 0e1320552badcd059df4194bb427d5bad400ef1e (patch) | |
tree | 02d09e95722780fe30ec352160f94870308bd9cd /deps/v8/src/codegen.cc | |
parent | 939278ac059b44439d41aab12bf552c8ae3c52d0 (diff) | |
download | node-new-0e1320552badcd059df4194bb427d5bad400ef1e.tar.gz |
deps: apply floating irhydra patch to v8
Reviewed-By: Fedor Indutny <fedor@indutny.com>
PR-URL: https://github.com/joyent/node/pull/8476
Diffstat (limited to 'deps/v8/src/codegen.cc')
-rw-r--r-- | deps/v8/src/codegen.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/codegen.cc b/deps/v8/src/codegen.cc index 6b12d64563..a24220d9d0 100644 --- a/deps/v8/src/codegen.cc +++ b/deps/v8/src/codegen.cc @@ -190,7 +190,7 @@ void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) { function->end_position() - function->start_position() + 1; for (int i = 0; i < source_len; i++) { if (stream.HasMore()) { - os << AsUC16(stream.GetNext()); + os << AsReversiblyEscapedUC16(stream.GetNext()); } } os << "\n\n"; |