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/builtins.h

Issue 7623011: Implement function proxies (except for their use as constructors). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed second round of comments. Created 9 years, 3 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/array.js ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 V(SHL, 1) \ 231 V(SHL, 1) \
232 V(SAR, 1) \ 232 V(SAR, 1) \
233 V(SHR, 1) \ 233 V(SHR, 1) \
234 V(DELETE, 2) \ 234 V(DELETE, 2) \
235 V(IN, 1) \ 235 V(IN, 1) \
236 V(INSTANCE_OF, 1) \ 236 V(INSTANCE_OF, 1) \
237 V(GET_KEYS, 0) \ 237 V(GET_KEYS, 0) \
238 V(FILTER_KEY, 1) \ 238 V(FILTER_KEY, 1) \
239 V(CALL_NON_FUNCTION, 0) \ 239 V(CALL_NON_FUNCTION, 0) \
240 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ 240 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \
241 V(CALL_FUNCTION_PROXY, 1) \
242 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \
241 V(TO_OBJECT, 0) \ 243 V(TO_OBJECT, 0) \
242 V(TO_NUMBER, 0) \ 244 V(TO_NUMBER, 0) \
243 V(TO_STRING, 0) \ 245 V(TO_STRING, 0) \
244 V(STRING_ADD_LEFT, 1) \ 246 V(STRING_ADD_LEFT, 1) \
245 V(STRING_ADD_RIGHT, 1) \ 247 V(STRING_ADD_RIGHT, 1) \
246 V(APPLY_PREPARE, 1) \ 248 V(APPLY_PREPARE, 1) \
247 V(APPLY_OVERFLOW, 1) 249 V(APPLY_OVERFLOW, 1)
248 250
249 251
250 class BuiltinFunctionTable; 252 class BuiltinFunctionTable;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 368
367 friend class BuiltinFunctionTable; 369 friend class BuiltinFunctionTable;
368 friend class Isolate; 370 friend class Isolate;
369 371
370 DISALLOW_COPY_AND_ASSIGN(Builtins); 372 DISALLOW_COPY_AND_ASSIGN(Builtins);
371 }; 373 };
372 374
373 } } // namespace v8::internal 375 } } // namespace v8::internal
374 376
375 #endif // V8_BUILTINS_H_ 377 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/array.js ('k') | src/execution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698