| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
| 6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 F(NewReferenceError, 2, 1) \ | 304 F(NewReferenceError, 2, 1) \ |
| 305 F(NewSyntaxError, 2, 1) \ | 305 F(NewSyntaxError, 2, 1) \ |
| 306 F(NewTypeError, 2, 1) \ | 306 F(NewTypeError, 2, 1) \ |
| 307 F(OrdinaryHasInstance, 2, 1) \ | 307 F(OrdinaryHasInstance, 2, 1) \ |
| 308 F(ReportPromiseReject, 2, 1) \ | 308 F(ReportPromiseReject, 2, 1) \ |
| 309 F(PromiseHookInit, 2, 1) \ | 309 F(PromiseHookInit, 2, 1) \ |
| 310 F(PromiseHookResolve, 1, 1) \ | 310 F(PromiseHookResolve, 1, 1) \ |
| 311 F(PromiseHookBefore, 1, 1) \ | 311 F(PromiseHookBefore, 1, 1) \ |
| 312 F(PromiseHookAfter, 1, 1) \ | 312 F(PromiseHookAfter, 1, 1) \ |
| 313 F(PromiseMarkAsHandled, 1, 1) \ | 313 F(PromiseMarkAsHandled, 1, 1) \ |
| 314 F(PromiseMarkHandledHint, 1, 1) \ | |
| 315 F(PromiseRejectEventFromStack, 2, 1) \ | 314 F(PromiseRejectEventFromStack, 2, 1) \ |
| 316 F(PromiseRevokeReject, 1, 1) \ | 315 F(PromiseRevokeReject, 1, 1) \ |
| 317 F(PromiseResult, 1, 1) \ | 316 F(PromiseResult, 1, 1) \ |
| 318 F(PromiseStatus, 1, 1) \ | 317 F(PromiseStatus, 1, 1) \ |
| 319 F(PromoteScheduledException, 0, 1) \ | 318 F(PromoteScheduledException, 0, 1) \ |
| 320 F(ReThrow, 1, 1) \ | 319 F(ReThrow, 1, 1) \ |
| 321 F(RunMicrotasks, 0, 1) \ | 320 F(RunMicrotasks, 0, 1) \ |
| 322 F(StackGuard, 0, 1) \ | 321 F(StackGuard, 0, 1) \ |
| 323 F(Throw, 1, 1) \ | 322 F(Throw, 1, 1) \ |
| 324 F(ThrowApplyNonFunction, 1, 1) \ | 323 F(ThrowApplyNonFunction, 1, 1) \ |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1152 | 1151 |
| 1153 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1152 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1154 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1153 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1155 STATIC_ASSERT(LANGUAGE_END == 2); | 1154 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1156 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1155 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1157 | 1156 |
| 1158 } // namespace internal | 1157 } // namespace internal |
| 1159 } // namespace v8 | 1158 } // namespace v8 |
| 1160 | 1159 |
| 1161 #endif // V8_RUNTIME_RUNTIME_H_ | 1160 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |