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

Side by Side Diff: src/runtime.h

Issue 22903012: js accessor creation on Template (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: forgot something Created 7 years, 4 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 \ 250 \
251 F(ClassOf, 1, 1) \ 251 F(ClassOf, 1, 1) \
252 F(SetCode, 2, 1) \ 252 F(SetCode, 2, 1) \
253 F(SetExpectedNumberOfProperties, 2, 1) \ 253 F(SetExpectedNumberOfProperties, 2, 1) \
254 \ 254 \
255 F(CreateApiFunction, 1, 1) \ 255 F(CreateApiFunction, 1, 1) \
256 F(IsTemplate, 1, 1) \ 256 F(IsTemplate, 1, 1) \
257 F(GetTemplateField, 2, 1) \ 257 F(GetTemplateField, 2, 1) \
258 F(DisableAccessChecks, 1, 1) \ 258 F(DisableAccessChecks, 1, 1) \
259 F(EnableAccessChecks, 1, 1) \ 259 F(EnableAccessChecks, 1, 1) \
260 F(SetAccessorProperty, 6, 1) \
260 \ 261 \
261 /* Dates */ \ 262 /* Dates */ \
262 F(DateCurrentTime, 0, 1) \ 263 F(DateCurrentTime, 0, 1) \
263 F(DateParseString, 2, 1) \ 264 F(DateParseString, 2, 1) \
264 F(DateLocalTimezone, 1, 1) \ 265 F(DateLocalTimezone, 1, 1) \
265 F(DateToUTC, 1, 1) \ 266 F(DateToUTC, 1, 1) \
266 F(DateMakeDay, 2, 1) \ 267 F(DateMakeDay, 2, 1) \
267 F(DateSetValue, 3, 1) \ 268 F(DateSetValue, 3, 1) \
268 \ 269 \
269 /* Numbers */ \ 270 /* Numbers */ \
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 //--------------------------------------------------------------------------- 846 //---------------------------------------------------------------------------
846 // Constants used by interface to runtime functions. 847 // Constants used by interface to runtime functions.
847 848
848 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 849 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
849 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 850 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
850 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 851 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
851 852
852 } } // namespace v8::internal 853 } } // namespace v8::internal
853 854
854 #endif // V8_RUNTIME_H_ 855 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/objects-printer.cc ('k') | src/runtime.cc » ('j') | src/runtime.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698