Revision: 5282
Author: [email protected]
Date: Tue Aug 17 02:27:51 2010
Log: Add classname to a static function call.
Review URL: http://codereview.chromium.org/3125014
http://code.google.com/p/v8/source/detail?r=5282

Modified:
 /branches/bleeding_edge/src/jsregexp.cc

=======================================
--- /branches/bleeding_edge/src/jsregexp.cc     Fri Jul 30 00:10:22 2010
+++ /branches/bleeding_edge/src/jsregexp.cc     Tue Aug 17 02:27:51 2010
@@ -478,11 +478,9 @@

   OffsetsVector registers(required_registers);

-  IrregexpResult res = IrregexpExecOnce(jsregexp,
-                                        subject,
-                                        previous_index,
-                                        Vector<int>(registers.vector(),
-                                                    registers.length()));
+  IrregexpResult res = RegExpImpl::IrregexpExecOnce(
+      jsregexp, subject, previous_index, Vector<int>(registers.vector(),
+                                                     registers.length()));
   if (res == RE_SUCCESS) {
     int capture_register_count =
(IrregexpNumberOfCaptures(FixedArray::cast(jsregexp->data())) + 1) * 2;

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

Reply via email to