mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 22:35:43 +08:00
218159140c
* Added support for async typechecking cancellation using a token passed through frontend options * Added luaC_enumheap for building debug tools that need a graph of Luau heap In our new typechecker: * Errors or now suppressed when checking property lookup of error-suppressing unions In our native code generation (jit): * Fixed unhandled value type in NOT_ANY lowering * Fast-call tag checks will exit to VM on failure, instead of relying on a native fallback * Added vector type to the type information * Eliminated redundant direct jumps across dead blocks * Debugger APIs are now disabled for call frames executing natively * Implemented support for unwind registration on macOS 14
25 lines
389 B
C++
25 lines
389 B
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
#include <atomic>
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
struct FrontendCancellationToken
|
|
{
|
|
void cancel()
|
|
{
|
|
cancelled.store(true);
|
|
}
|
|
|
|
bool requested()
|
|
{
|
|
return cancelled.load();
|
|
}
|
|
|
|
std::atomic<bool> cancelled;
|
|
};
|
|
|
|
} // namespace Luau
|