Changeset 246572 in webkit
- Timestamp:
- Jun 18, 2019, 3:24:44 PM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/VM.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r246571 r246572 1 2019-06-18 Keith Miller <keith_miller@apple.com> 2 3 Unreviewed, fix signature of currentWeakRefVersion to return an uintptr_t. 4 5 * runtime/VM.h: 6 (JSC::VM::currentWeakRefVersion const): 7 1 8 2019-06-18 Justin Michaud <justin_michaud@apple.com> 2 9 -
trunk/Source/JavaScriptCore/runtime/VM.h
r246565 r246572 891 891 void setOnEachMicrotaskTick(WTF::Function<void(VM&)>&& func) { m_onEachMicrotaskTick = WTFMove(func); } 892 892 void finalizeSynchronousJSExecution() { ASSERT(currentThreadIsHoldingAPILock()); m_currentWeakRefVersion++; } 893 uint 64_t currentWeakRefVersion() const { return m_currentWeakRefVersion; }893 uintptr_t currentWeakRefVersion() const { return m_currentWeakRefVersion; } 894 894 895 895 void setGlobalConstRedeclarationShouldThrow(bool globalConstRedeclarationThrow) { m_globalConstRedeclarationShouldThrow = globalConstRedeclarationThrow; }
Note:
See TracChangeset
for help on using the changeset viewer.