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

Side by Side Diff: src/messages.js

Issue 206143004: Increase the "local variables in a function" limit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased Created 6 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 | src/parser.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 called_on_non_object: ["%0", " called on non-object"], 150 called_on_non_object: ["%0", " called on non-object"],
151 called_on_null_or_undefined: ["%0", " called on null or undefined"], 151 called_on_null_or_undefined: ["%0", " called on null or undefined"],
152 array_indexof_not_defined: ["Array.getIndexOf: Argument undefined"], 152 array_indexof_not_defined: ["Array.getIndexOf: Argument undefined"],
153 object_not_extensible: ["Can't add property ", "%0", ", object is not extensible"], 153 object_not_extensible: ["Can't add property ", "%0", ", object is not extensible"],
154 illegal_access: ["Illegal access"], 154 illegal_access: ["Illegal access"],
155 invalid_preparser_data: ["Invalid preparser data for function ", "%0"], 155 invalid_preparser_data: ["Invalid preparser data for function ", "%0"],
156 strict_mode_with: ["Strict mode code may not include a with state ment"], 156 strict_mode_with: ["Strict mode code may not include a with state ment"],
157 strict_eval_arguments: ["Unexpected eval or arguments in strict mode"] , 157 strict_eval_arguments: ["Unexpected eval or arguments in strict mode"] ,
158 too_many_arguments: ["Too many arguments in function call (only 655 35 allowed)"], 158 too_many_arguments: ["Too many arguments in function call (only 655 35 allowed)"],
159 too_many_parameters: ["Too many parameters in function definition (o nly 65535 allowed)"], 159 too_many_parameters: ["Too many parameters in function definition (o nly 65535 allowed)"],
160 too_many_variables: ["Too many variables declared (only 131071 allo wed)"], 160 too_many_variables: ["Too many variables declared (only 4194303 all owed)"],
161 strict_param_dupe: ["Strict mode function may not have duplicate p arameter names"], 161 strict_param_dupe: ["Strict mode function may not have duplicate p arameter names"],
162 strict_octal_literal: ["Octal literals are not allowed in strict mode ."], 162 strict_octal_literal: ["Octal literals are not allowed in strict mode ."],
163 strict_duplicate_property: ["Duplicate data property in object literal not allowed in strict mode"], 163 strict_duplicate_property: ["Duplicate data property in object literal not allowed in strict mode"],
164 accessor_data_property: ["Object literal may not have data and accessor property with the same name"], 164 accessor_data_property: ["Object literal may not have data and accessor property with the same name"],
165 accessor_get_set: ["Object literal may not have multiple get/set accessors with the same name"], 165 accessor_get_set: ["Object literal may not have multiple get/set accessors with the same name"],
166 strict_delete: ["Delete of an unqualified identifier in strict mode."], 166 strict_delete: ["Delete of an unqualified identifier in strict mode."],
167 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1 "], 167 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1 "],
168 strict_const: ["Use of const in strict mode."], 168 strict_const: ["Use of const in strict mode."],
169 strict_function: ["In strict mode code, functions can only be de clared at top level or immediately within another function." ], 169 strict_function: ["In strict mode code, functions can only be de clared at top level or immediately within another function." ],
170 strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"], 170 strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"],
(...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 %GetAndClearOverflowedStackTrace(this); 1347 %GetAndClearOverflowedStackTrace(this);
1348 }; 1348 };
1349 1349
1350 %DefineOrRedefineAccessorProperty( 1350 %DefineOrRedefineAccessorProperty(
1351 boilerplate, 'stack', getter, setter, DONT_ENUM); 1351 boilerplate, 'stack', getter, setter, DONT_ENUM);
1352 1352
1353 return boilerplate; 1353 return boilerplate;
1354 } 1354 }
1355 1355
1356 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); 1356 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate();
OLDNEW
« no previous file with comments | « no previous file | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698