Reviewers: Lasse Reichstein,

Description:
Simplify criteria for doing an optimized test call

Please review this at http://codereview.chromium.org/2662002/show

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/regexp.js


Index: src/regexp.js
===================================================================
--- src/regexp.js       (revision 4799)
+++ src/regexp.js       (working copy)
@@ -293,15 +293,12 @@
     return cache.answer;
   }

-  // Remove irrelevant '.*' around a test regexp. The expression
- // checks whether this.source starts and ends with '.*' and that the third
-  // char is not a '?' and that the third to last char is not a '\'.
+  // Remove irrelevant preceeding '.*' in a test regexp. The expression
+  // checks whether this.source starts with '.*' and that the third
+  // char is not a '?'
   if (%_StringCharCodeAt(this.source,0) == 46 && // '.'
       %_StringCharCodeAt(this.source,1) == 42 && // '*'
-      %_StringCharCodeAt(this.source,2) != 63 && // '?'
- %_StringCharCodeAt(this.source,this.source.length - 3) != 28 && // '\' - %_StringCharCodeAt(this.source,this.source.length - 2) == 46 && // '.' - %_StringCharCodeAt(this.source,this.source.length - 1) == 42) { // '*'
+      %_StringCharCodeAt(this.source,2) != 63) { // '?'
     if (!%_ObjectEquals(regexp_key, this)) {
       regexp_key = this;
       regexp_val = new $RegExp(this.source.substring(2,


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

Reply via email to