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

Side by Side Diff: src/runtime.h

Issue 11266011: Delivery logic for Object.observe (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased against newest per-isolate patch Created 8 years, 1 month 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 /* Harmony weakmaps */ \ 313 /* Harmony weakmaps */ \
314 F(WeakMapInitialize, 1, 1) \ 314 F(WeakMapInitialize, 1, 1) \
315 F(WeakMapGet, 2, 1) \ 315 F(WeakMapGet, 2, 1) \
316 F(WeakMapHas, 2, 1) \ 316 F(WeakMapHas, 2, 1) \
317 F(WeakMapDelete, 2, 1) \ 317 F(WeakMapDelete, 2, 1) \
318 F(WeakMapSet, 3, 1) \ 318 F(WeakMapSet, 3, 1) \
319 \ 319 \
320 /* Harmony observe */ \ 320 /* Harmony observe */ \
321 F(IsObserved, 1, 1) \ 321 F(IsObserved, 1, 1) \
322 F(SetIsObserved, 2, 1) \ 322 F(SetIsObserved, 2, 1) \
323 F(SetHasActiveObjectObservers, 0, 1) \
323 F(GetObservationState, 0, 1) \ 324 F(GetObservationState, 0, 1) \
324 F(CreateObjectHashTable, 0, 1) \ 325 F(CreateObjectHashTable, 0, 1) \
325 F(ObjectHashTableGet, 2, 1) \ 326 F(ObjectHashTableGet, 2, 1) \
326 F(ObjectHashTableSet, 3, 1) \ 327 F(ObjectHashTableSet, 3, 1) \
327 F(ObjectHashTableHas, 2, 1) \ 328 F(ObjectHashTableHas, 2, 1) \
328 \ 329 \
329 /* Statements */ \ 330 /* Statements */ \
330 F(NewClosure, 3, 1) \ 331 F(NewClosure, 3, 1) \
331 F(NewObject, 1, 1) \ 332 F(NewObject, 1, 1) \
332 F(NewObjectFromBound, 1, 1) \ 333 F(NewObjectFromBound, 1, 1) \
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 //--------------------------------------------------------------------------- 714 //---------------------------------------------------------------------------
714 // Constants used by interface to runtime functions. 715 // Constants used by interface to runtime functions.
715 716
716 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 717 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
717 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 718 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
718 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 719 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
719 720
720 } } // namespace v8::internal 721 } } // namespace v8::internal
721 722
722 #endif // V8_RUNTIME_H_ 723 #endif // V8_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698