Revision: 13446 Author: [email protected] Date: Mon Jan 21 05:08:00 2013 Log: Merged r13417 into 3.15 branch.
Quick fix for issue 2471. [email protected] BUG=v8:2471 Review URL: https://chromiumcodereview.appspot.com/12036010 http://code.google.com/p/v8/source/detail?r=13446 Modified: /branches/3.15/src/messages.js /branches/3.15/src/version.cc ======================================= --- /branches/3.15/src/messages.js Fri Nov 16 06:43:43 2012 +++ /branches/3.15/src/messages.js Mon Jan 21 05:08:00 2013 @@ -1090,6 +1090,7 @@ // with a data property as soon as the stack trace has been formatted. var getter = function() { var value = FormatRawStackTrace(obj, raw_stack); + raw_stack = void 0; %DefineOrRedefineDataProperty(obj, 'stack', value, NONE); return value; }; ======================================= --- /branches/3.15/src/version.cc Fri Jan 18 06:04:07 2013 +++ /branches/3.15/src/version.cc Mon Jan 21 05:08:00 2013 @@ -35,7 +35,7 @@ #define MAJOR_VERSION 3 #define MINOR_VERSION 15 #define BUILD_NUMBER 11 -#define PATCH_LEVEL 10 +#define PATCH_LEVEL 11 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) #define IS_CANDIDATE_VERSION 0 -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
