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

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

Issue 2423053002: Install the 'name' property in classes at runtime (Closed)
Patch Set: rebased 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
« no previous file with comments | « src/ast/ast.h ('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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 F(dot_iterator, ".iterator") \ 297 F(dot_iterator, ".iterator") \
298 F(dot_result, ".result") \ 298 F(dot_result, ".result") \
299 F(dot_switch_tag, ".switch_tag") \ 299 F(dot_switch_tag, ".switch_tag") \
300 F(dot_catch, ".catch") \ 300 F(dot_catch, ".catch") \
301 F(empty, "") \ 301 F(empty, "") \
302 F(eval, "eval") \ 302 F(eval, "eval") \
303 F(function, "function") \ 303 F(function, "function") \
304 F(get_space, "get ") \ 304 F(get_space, "get ") \
305 F(length, "length") \ 305 F(length, "length") \
306 F(let, "let") \ 306 F(let, "let") \
307 F(name, "name") \
307 F(native, "native") \ 308 F(native, "native") \
308 F(new_target, ".new.target") \ 309 F(new_target, ".new.target") \
309 F(next, "next") \ 310 F(next, "next") \
310 F(proto, "__proto__") \ 311 F(proto, "__proto__") \
311 F(prototype, "prototype") \ 312 F(prototype, "prototype") \
312 F(return, "return") \ 313 F(return, "return") \
313 F(set_space, "set ") \ 314 F(set_space, "set ") \
314 F(star_default_star, "*default*") \ 315 F(star_default_star, "*default*") \
315 F(this, "this") \ 316 F(this, "this") \
316 F(this_function, ".this_function") \ 317 F(this_function, ".this_function") \
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 OTHER_CONSTANTS(F) 439 OTHER_CONSTANTS(F)
439 #undef F 440 #undef F
440 }; 441 };
441 } // namespace internal 442 } // namespace internal
442 } // namespace v8 443 } // namespace v8
443 444
444 #undef STRING_CONSTANTS 445 #undef STRING_CONSTANTS
445 #undef OTHER_CONSTANTS 446 #undef OTHER_CONSTANTS
446 447
447 #endif // V8_AST_AST_VALUE_FACTORY_H_ 448 #endif // V8_AST_AST_VALUE_FACTORY_H_
OLDNEW
« no previous file with comments | « src/ast/ast.h ('k') | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698