Revision: 8392
Author:   [email protected]
Date:     Thu Jun 23 03:18:16 2011
Log:      Ported patch from revision 3839 to trunk.

Review URL: http://codereview.chromium.org/7245001
http://code.google.com/p/v8/source/detail?r=8392

Modified:
 /trunk/src/version.cc
 /trunk/test/cctest/test-api.cc

=======================================
--- /trunk/src/version.cc       Wed Jun 22 23:29:21 2011
+++ /trunk/src/version.cc       Thu Jun 23 03:18:16 2011
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     4
 #define BUILD_NUMBER      6
-#define PATCH_LEVEL       0
+#define PATCH_LEVEL       1
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0
=======================================
--- /trunk/test/cctest/test-api.cc      Mon Jun 20 08:33:18 2011
+++ /trunk/test/cctest/test-api.cc      Thu Jun 23 03:18:16 2011
@@ -4195,7 +4195,7 @@

 THREADED_TEST(NativeFunctionDeclarationError) {
   v8::HandleScope handle_scope;
-  const char* name = "nativedecl";
+  const char* name = "nativedeclerr";
   // Syntax error in extension code.
   v8::RegisterExtension(new NativeFunctionExtension(name,
"native\nfunction foo();"));
@@ -4207,7 +4207,7 @@

 THREADED_TEST(NativeFunctionDeclarationErrorEscape) {
   v8::HandleScope handle_scope;
-  const char* name = "nativedecl";
+  const char* name = "nativedeclerresc";
   // Syntax error in extension code - escape code in "native" means that
   // it's not treated as a keyword.
   v8::RegisterExtension(new NativeFunctionExtension(

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

Reply via email to