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

Side by Side Diff: src/builtins.h

Issue 7043003: Version 3.3.8 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: 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/execution.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)
241 242
242 243
243 class BuiltinFunctionTable; 244 class BuiltinFunctionTable;
244 class ObjectVisitor; 245 class ObjectVisitor;
245 246
246 247
247 class Builtins { 248 class Builtins {
248 public: 249 public:
249 ~Builtins(); 250 ~Builtins();
250 251
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 360
360 friend class BuiltinFunctionTable; 361 friend class BuiltinFunctionTable;
361 friend class Isolate; 362 friend class Isolate;
362 363
363 DISALLOW_COPY_AND_ASSIGN(Builtins); 364 DISALLOW_COPY_AND_ASSIGN(Builtins);
364 }; 365 };
365 366
366 } } // namespace v8::internal 367 } } // namespace v8::internal
367 368
368 #endif // V8_BUILTINS_H_ 369 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/execution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698