mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
* Fixed `Frontend::markDirty` not working on modules that were not typechecked yet * Fixed generic variadic function unification succeeding when it should have reported an error New Type Solver: * Implemented semantic subtyping check for function types Native Code Generation: * Improved performance of numerical loops with a constant step * Simplified IR for `bit32.extract` calls extracting first/last bits * Improved performance of NaN checks
22 lines
653 B
C++
22 lines
653 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 <unordered_set>
|
|
#include <string>
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
using RegisterCallback = void (*)();
|
|
|
|
/// Gets a set of callbacks to run immediately before running tests, intended
|
|
/// for registering new tests at runtime.
|
|
std::unordered_set<RegisterCallback>& getRegisterCallbacks();
|
|
|
|
/// Adds a new callback to be ran immediately before running tests.
|
|
///
|
|
/// @param cb the callback to add.
|
|
/// @returns a dummy integer to satisfy a doctest internal contract.
|
|
int addTestCallback(RegisterCallback cb);
|
|
|
|
} // namespace Luau
|