Version 2.3.11.

Fix bug in RegExp related to copy-on-write arrays.

Refactoring of tools/test.py script, including the introduction of VARIANT_FLAGS that allows specification of sets of flags with which all tests should be run.

Fix a bug in the handling of debug breaks in CallIC.

Performance improvements on all platforms.


git-svn-id: http://v8.googlecode.com/svn/trunk@5345 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/parser.h b/src/parser.h
index f918a3a..225a368 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -120,6 +120,9 @@
 
   Vector<unsigned> store_;
 
+  // Read strings written by ParserRecorder::WriteString.
+  static const char* ReadString(unsigned* start, int* chars);
+
   // The last entry returned.  This is used to make lookup faster:
   // the next entry to return is typically the next entry so lookup
   // will usually be much faster if we start from the last entry.