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

Side by Side Diff: src/builtins.h

Issue 7017008: Trying to move derived get trap from builtins to global context. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments. Created 9 years, 7 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/bootstrapper.cc ('k') | src/contexts.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 V(GET_KEYS, 0) \ 230 V(GET_KEYS, 0) \
231 V(FILTER_KEY, 1) \ 231 V(FILTER_KEY, 1) \
232 V(CALL_NON_FUNCTION, 0) \ 232 V(CALL_NON_FUNCTION, 0) \
233 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ 233 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \
234 V(TO_OBJECT, 0) \ 234 V(TO_OBJECT, 0) \
235 V(TO_NUMBER, 0) \ 235 V(TO_NUMBER, 0) \
236 V(TO_STRING, 0) \ 236 V(TO_STRING, 0) \
237 V(STRING_ADD_LEFT, 1) \ 237 V(STRING_ADD_LEFT, 1) \
238 V(STRING_ADD_RIGHT, 1) \ 238 V(STRING_ADD_RIGHT, 1) \
239 V(APPLY_PREPARE, 1) \ 239 V(APPLY_PREPARE, 1) \
240 V(APPLY_OVERFLOW, 1) \ 240 V(APPLY_OVERFLOW, 1)
241 V(DERIVED_GET_TRAP, 2)
242 241
243 242
244 class BuiltinFunctionTable; 243 class BuiltinFunctionTable;
245 class ObjectVisitor; 244 class ObjectVisitor;
246 245
247 246
248 class Builtins { 247 class Builtins {
249 public: 248 public:
250 ~Builtins(); 249 ~Builtins();
251 250
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 359
361 friend class BuiltinFunctionTable; 360 friend class BuiltinFunctionTable;
362 friend class Isolate; 361 friend class Isolate;
363 362
364 DISALLOW_COPY_AND_ASSIGN(Builtins); 363 DISALLOW_COPY_AND_ASSIGN(Builtins);
365 }; 364 };
366 365
367 } } // namespace v8::internal 366 } } // namespace v8::internal
368 367
369 #endif // V8_BUILTINS_H_ 368 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/contexts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698