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

Side by Side Diff: src/ast/ast-value-factory.h

Issue 1773653002: [strong] Remove all remainders of strong mode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Oversight Created 4 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
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/bootstrapper.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 F(proto, "__proto__") \ 264 F(proto, "__proto__") \
265 F(prototype, "prototype") \ 265 F(prototype, "prototype") \
266 F(rest_parameter, ".rest_parameter") \ 266 F(rest_parameter, ".rest_parameter") \
267 F(return, "return") \ 267 F(return, "return") \
268 F(set_space, "set ") \ 268 F(set_space, "set ") \
269 F(this, "this") \ 269 F(this, "this") \
270 F(this_function, ".this_function") \ 270 F(this_function, ".this_function") \
271 F(throw, "throw") \ 271 F(throw, "throw") \
272 F(undefined, "undefined") \ 272 F(undefined, "undefined") \
273 F(use_asm, "use asm") \ 273 F(use_asm, "use asm") \
274 F(use_strong, "use strong") \
275 F(use_strict, "use strict") \ 274 F(use_strict, "use strict") \
276 F(value, "value") 275 F(value, "value")
277 276
278 #define OTHER_CONSTANTS(F) \ 277 #define OTHER_CONSTANTS(F) \
279 F(true_value) \ 278 F(true_value) \
280 F(false_value) \ 279 F(false_value) \
281 F(null_value) \ 280 F(null_value) \
282 F(undefined_value) \ 281 F(undefined_value) \
283 F(the_hole_value) 282 F(the_hole_value)
284 283
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 OTHER_CONSTANTS(F) 368 OTHER_CONSTANTS(F)
370 #undef F 369 #undef F
371 }; 370 };
372 } // namespace internal 371 } // namespace internal
373 } // namespace v8 372 } // namespace v8
374 373
375 #undef STRING_CONSTANTS 374 #undef STRING_CONSTANTS
376 #undef OTHER_CONSTANTS 375 #undef OTHER_CONSTANTS
377 376
378 #endif // V8_AST_AST_VALUE_FACTORY_H_ 377 #endif // V8_AST_AST_VALUE_FACTORY_H_
OLDNEW
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698