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

Side by Side Diff: src/heap.h

Issue 217823003: Make invalid LHSs that are calls late errors (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comments Created 6 years, 8 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/ast.cc ('k') | src/ia32/full-codegen-ia32.cc » ('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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 V(set_string, "set") \ 342 V(set_string, "set") \
343 V(map_field_string, "%map") \ 343 V(map_field_string, "%map") \
344 V(elements_field_string, "%elements") \ 344 V(elements_field_string, "%elements") \
345 V(length_field_string, "%length") \ 345 V(length_field_string, "%length") \
346 V(cell_value_string, "%cell_value") \ 346 V(cell_value_string, "%cell_value") \
347 V(function_class_string, "Function") \ 347 V(function_class_string, "Function") \
348 V(illegal_argument_string, "illegal argument") \ 348 V(illegal_argument_string, "illegal argument") \
349 V(MakeReferenceError_string, "MakeReferenceError") \ 349 V(MakeReferenceError_string, "MakeReferenceError") \
350 V(MakeSyntaxError_string, "MakeSyntaxError") \ 350 V(MakeSyntaxError_string, "MakeSyntaxError") \
351 V(MakeTypeError_string, "MakeTypeError") \ 351 V(MakeTypeError_string, "MakeTypeError") \
352 V(illegal_return_string, "illegal_return") \
353 V(illegal_break_string, "illegal_break") \
354 V(illegal_continue_string, "illegal_continue") \
355 V(unknown_label_string, "unknown_label") \ 352 V(unknown_label_string, "unknown_label") \
356 V(redeclaration_string, "redeclaration") \
357 V(space_string, " ") \ 353 V(space_string, " ") \
358 V(exec_string, "exec") \ 354 V(exec_string, "exec") \
359 V(zero_string, "0") \ 355 V(zero_string, "0") \
360 V(global_eval_string, "GlobalEval") \ 356 V(global_eval_string, "GlobalEval") \
361 V(identity_hash_string, "v8::IdentityHash") \ 357 V(identity_hash_string, "v8::IdentityHash") \
362 V(closure_string, "(closure)") \ 358 V(closure_string, "(closure)") \
363 V(use_strict_string, "use strict") \ 359 V(use_strict_string, "use strict") \
364 V(dot_string, ".") \ 360 V(dot_string, ".") \
365 V(anonymous_function_string, "(anonymous function)") \ 361 V(anonymous_function_string, "(anonymous function)") \
366 V(compare_ic_string, "==") \ 362 V(compare_ic_string, "==") \
(...skipping 2777 matching lines...) Expand 10 before | Expand all | Expand 10 after
3144 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3140 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3145 3141
3146 private: 3142 private:
3147 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3143 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3148 }; 3144 };
3149 #endif // DEBUG 3145 #endif // DEBUG
3150 3146
3151 } } // namespace v8::internal 3147 } } // namespace v8::internal
3152 3148
3153 #endif // V8_HEAP_H_ 3149 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698