luau/Analysis/src/Def.cpp

13 lines
264 B
C++
Raw Normal View History

2022-10-21 18:33:43 +01:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#include "Luau/Def.h"
namespace Luau
{
2022-12-02 10:46:05 +00:00
DefId DefArena::freshCell()
2022-10-21 18:33:43 +01:00
{
2023-03-03 13:45:38 +00:00
return NotNull{allocator.allocate(Def{Cell{}})};
2022-10-21 18:33:43 +01:00
}
} // namespace Luau