http://codereview.chromium.org/160605/diff/1001/5
File src/debug.cc (right):

http://codereview.chromium.org/160605/diff/1001/5#newcode2290
Line 2290: if (CompareAsciiWithUtf16("break", command)) {
FYI, an alternative to rolling out your own comparison function would be
using V8 strings:

Handle<String> request = Factory::NewStringFromTwoByte(command);
if (request->IsEqualTo(CStrVector("break")) {
...

http://codereview.chromium.org/160605

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to