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

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

Issue 2423053002: Install the 'name' property in classes at runtime (Closed)
Patch Set: Move computed property names check to parser and runtime function Created 4 years 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
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 F(dot_iterator, ".iterator") \ 290 F(dot_iterator, ".iterator") \
291 F(dot_result, ".result") \ 291 F(dot_result, ".result") \
292 F(dot_switch_tag, ".switch_tag") \ 292 F(dot_switch_tag, ".switch_tag") \
293 F(dot_catch, ".catch") \ 293 F(dot_catch, ".catch") \
294 F(empty, "") \ 294 F(empty, "") \
295 F(eval, "eval") \ 295 F(eval, "eval") \
296 F(function, "function") \ 296 F(function, "function") \
297 F(get_space, "get ") \ 297 F(get_space, "get ") \
298 F(length, "length") \ 298 F(length, "length") \
299 F(let, "let") \ 299 F(let, "let") \
300 F(name, "name") \
300 F(native, "native") \ 301 F(native, "native") \
301 F(new_target, ".new.target") \ 302 F(new_target, ".new.target") \
302 F(next, "next") \ 303 F(next, "next") \
303 F(proto, "__proto__") \ 304 F(proto, "__proto__") \
304 F(prototype, "prototype") \ 305 F(prototype, "prototype") \
305 F(return, "return") \ 306 F(return, "return") \
306 F(set_space, "set ") \ 307 F(set_space, "set ") \
307 F(star_default_star, "*default*") \ 308 F(star_default_star, "*default*") \
308 F(this, "this") \ 309 F(this, "this") \
309 F(this_function, ".this_function") \ 310 F(this_function, ".this_function") \
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 OTHER_CONSTANTS(F) 426 OTHER_CONSTANTS(F)
426 #undef F 427 #undef F
427 }; 428 };
428 } // namespace internal 429 } // namespace internal
429 } // namespace v8 430 } // namespace v8
430 431
431 #undef STRING_CONSTANTS 432 #undef STRING_CONSTANTS
432 #undef OTHER_CONSTANTS 433 #undef OTHER_CONSTANTS
433 434
434 #endif // V8_AST_AST_VALUE_FACTORY_H_ 435 #endif // V8_AST_AST_VALUE_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698