Changeset 243367 in webkit
- Timestamp:
- Mar 22, 2019, 12:39:47 AM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/FunctionExecutable.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r243365 r243367 1 2019-03-22 Yusuke Suzuki <ysuzuki@apple.com> 2 3 Unreviewed, build fix for Windows 4 https://bugs.webkit.org/show_bug.cgi?id=196122 5 6 * runtime/FunctionExecutable.cpp: 7 1 8 2019-03-21 Yusuke Suzuki <ysuzuki@apple.com> 2 9 -
trunk/Source/JavaScriptCore/runtime/FunctionExecutable.cpp
r243365 r243367 42 42 43 43 const ClassInfo FunctionExecutable::s_info = { "FunctionExecutable", &ScriptExecutable::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(FunctionExecutable) }; 44 45 static_assert(sizeof(FunctionExecutable) <= 128, "FunctionExecutable should fit in a 128-byte cell since it is so frequently allocated.");46 44 47 45 FunctionExecutable::FunctionExecutable(VM& vm, const SourceCode& source, UnlinkedFunctionExecutable* unlinkedExecutable, Intrinsic intrinsic)
Note:
See TracChangeset
for help on using the changeset viewer.