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

Side by Side Diff: src/messages.js

Issue 6713059: Function.caller when caller is a strict function. (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 | « src/accessors.cc ('k') | test/mjsunit/strict-mode.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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 strict_delete: ["Delete of an unqualified identifier in str ict mode."], 227 strict_delete: ["Delete of an unqualified identifier in str ict mode."],
228 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1"], 228 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1"],
229 strict_const: ["Use of const in strict mode."], 229 strict_const: ["Use of const in strict mode."],
230 strict_function: ["In strict mode code, functions can only be declared at top level or immediately within another function." ], 230 strict_function: ["In strict mode code, functions can only be declared at top level or immediately within another function." ],
231 strict_read_only_property: ["Cannot assign to read only property '", "% 0", "' of ", "%1"], 231 strict_read_only_property: ["Cannot assign to read only property '", "% 0", "' of ", "%1"],
232 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in strict mode"], 232 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in strict mode"],
233 strict_arguments_callee: ["Cannot access property 'callee' of strict mode arguments"], 233 strict_arguments_callee: ["Cannot access property 'callee' of strict mode arguments"],
234 strict_arguments_caller: ["Cannot access property 'caller' of strict mode arguments"], 234 strict_arguments_caller: ["Cannot access property 'caller' of strict mode arguments"],
235 strict_function_caller: ["Cannot access property 'caller' of a stric t mode function"], 235 strict_function_caller: ["Cannot access property 'caller' of a stric t mode function"],
236 strict_function_arguments: ["Cannot access property 'arguments' of a st rict mode function"], 236 strict_function_arguments: ["Cannot access property 'arguments' of a st rict mode function"],
237 strict_caller: ["Illegal access to a strict mode caller fun ction."],
237 }; 238 };
238 } 239 }
239 var message_type = %MessageGetType(message); 240 var message_type = %MessageGetType(message);
240 var format = kMessages[message_type]; 241 var format = kMessages[message_type];
241 if (!format) return "<unknown message " + message_type + ">"; 242 if (!format) return "<unknown message " + message_type + ">";
242 return FormatString(format, message); 243 return FormatString(format, message);
243 } 244 }
244 245
245 246
246 function GetLineNumber(message) { 247 function GetLineNumber(message) {
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 else throw e; 1081 else throw e;
1081 } 1082 }
1082 } 1083 }
1083 1084
1084 1085
1085 InstallFunctions($Error.prototype, DONT_ENUM, ['toString', errorToString]); 1086 InstallFunctions($Error.prototype, DONT_ENUM, ['toString', errorToString]);
1086 1087
1087 // Boilerplate for exceptions for stack overflows. Used from 1088 // Boilerplate for exceptions for stack overflows. Used from
1088 // Isolate::StackOverflow(). 1089 // Isolate::StackOverflow().
1089 const kStackOverflowBoilerplate = MakeRangeError('stack_overflow', []); 1090 const kStackOverflowBoilerplate = MakeRangeError('stack_overflow', []);
OLDNEW
« no previous file with comments | « src/accessors.cc ('k') | test/mjsunit/strict-mode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698