mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
a2a553b286
Similar to IterationDecision, this can be returned from callbacks passed to recursive traversal functions to signal how to proceed.
19 lines
243 B
C++
19 lines
243 B
C++
/*
|
|
* Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace AK {
|
|
|
|
enum class RecursionDecision {
|
|
Recurse,
|
|
Continue,
|
|
Break,
|
|
};
|
|
|
|
}
|
|
|
|
using AK::RecursionDecision;
|