Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index 1f0ee37735cfd552581133ebb3d9fea68faf53e3..5db760c3afcf15d52e9b8d303e8b6f7ff491055c 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -118,8 +118,7 @@ namespace internal { |
F(WeakCollectionHas, 3, 1) \ |
F(WeakCollectionDelete, 3, 1) \ |
F(WeakCollectionSet, 4, 1) \ |
- F(GetWeakSetValues, 2, 1) \ |
- F(ObservationWeakMapCreate, 0, 1) |
+ F(GetWeakSetValues, 2, 1) |
#define FOR_EACH_INTRINSIC_COMPILER(F) \ |
F(CompileLazy, 1, 1) \ |
@@ -319,7 +318,9 @@ namespace internal { |
F(CreateListFromArrayLike, 1, 1) \ |
F(IncrementUseCounter, 1, 1) \ |
F(GetOrdinaryHasInstance, 0, 1) \ |
- F(GetAndResetRuntimeCallStats, 0, 1) |
+ F(GetAndResetRuntimeCallStats, 0, 1) \ |
+ F(EnqueueMicrotask, 1, 1) \ |
+ F(RunMicrotasks, 0, 1) |
#define FOR_EACH_INTRINSIC_JSON(F) \ |
F(QuoteJSONString, 1, 1) \ |
@@ -443,19 +444,6 @@ namespace internal { |
F(ObjectDefineProperty, 3, 1) \ |
F(CreateDataProperty, 3, 1) |
-#define FOR_EACH_INTRINSIC_OBSERVE(F) \ |
- F(IsObserved, 1, 1) \ |
- F(SetIsObserved, 1, 1) \ |
- F(EnqueueMicrotask, 1, 1) \ |
- F(RunMicrotasks, 0, 1) \ |
- F(DeliverObservationChangeRecords, 2, 1) \ |
- F(GetObservationState, 0, 1) \ |
- F(ObserverObjectAndRecordHaveSameOrigin, 3, 1) \ |
- F(ObjectWasCreatedInCurrentOrigin, 1, 1) \ |
- F(GetObjectContextObjectObserve, 1, 1) \ |
- F(GetObjectContextObjectGetNotifier, 1, 1) \ |
- F(GetObjectContextNotifierPerformChange, 1, 1) |
- |
#define FOR_EACH_INTRINSIC_OPERATORS(F) \ |
F(Multiply, 2, 1) \ |
F(Divide, 2, 1) \ |
@@ -1020,7 +1008,6 @@ namespace internal { |
FOR_EACH_INTRINSIC_MATHS(F) \ |
FOR_EACH_INTRINSIC_NUMBERS(F) \ |
FOR_EACH_INTRINSIC_OBJECT(F) \ |
- FOR_EACH_INTRINSIC_OBSERVE(F) \ |
FOR_EACH_INTRINSIC_OPERATORS(F) \ |
FOR_EACH_INTRINSIC_PROXY(F) \ |
FOR_EACH_INTRINSIC_REGEXP(F) \ |