Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(599)

Side by Side Diff: src/messages.js

Issue 6588050: Remove Error.prototype.toStrings prototype property. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-1218.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 try { 1052 try {
1053 return %_CallFunction(this, errorToStringDetectCycle); 1053 return %_CallFunction(this, errorToStringDetectCycle);
1054 } catch(e) { 1054 } catch(e) {
1055 // If this error message was encountered already return the empty 1055 // If this error message was encountered already return the empty
1056 // string for it instead of recursively formatting it. 1056 // string for it instead of recursively formatting it.
1057 if (isCyclicErrorMarker(e)) return ''; 1057 if (isCyclicErrorMarker(e)) return '';
1058 else throw e; 1058 else throw e;
1059 } 1059 }
1060 } 1060 }
1061 1061
1062 %FunctionSetName(errorToString, 'toString'); 1062
1063 %SetProperty($Error.prototype, 'toString', errorToString, DONT_ENUM); 1063 InstallFunctions($Error.prototype, DONT_ENUM, ['toString', errorToString]);
1064 1064
1065 // Boilerplate for exceptions for stack overflows. Used from 1065 // Boilerplate for exceptions for stack overflows. Used from
1066 // Top::StackOverflow(). 1066 // Top::StackOverflow().
1067 const kStackOverflowBoilerplate = MakeRangeError('stack_overflow', []); 1067 const kStackOverflowBoilerplate = MakeRangeError('stack_overflow', []);
OLDNEW
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-1218.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698