summaryrefslogtreecommitdiff
path: root/crates/typst-eval/src/flow.rs
diff options
context:
space:
mode:
authorfrozolotl <44589151+frozolotl@users.noreply.github.com>2024-10-31 19:53:10 +0100
committerGitHub <noreply@github.com>2024-10-31 18:53:10 +0000
commit753e59eaa0574b561a52627c4d1f88f50c845847 (patch)
tree47bc095a6b1bdd1ac405c7383b5063fc02cac968 /crates/typst-eval/src/flow.rs
parent1261d176b0d0eebe8aef117fb5929209f018f1fa (diff)
Make `Vm` attributes more public (#5148)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'crates/typst-eval/src/flow.rs')
-rw-r--r--crates/typst-eval/src/flow.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-eval/src/flow.rs b/crates/typst-eval/src/flow.rs
index 5c9d2a00..231e6899 100644
--- a/crates/typst-eval/src/flow.rs
+++ b/crates/typst-eval/src/flow.rs
@@ -11,7 +11,7 @@ const MAX_ITERATIONS: usize = 10_000;
/// A control flow event that occurred during evaluation.
#[derive(Debug, Clone, PartialEq)]
-pub(crate) enum FlowEvent {
+pub enum FlowEvent {
/// Stop iteration in a loop.
Break(Span),
/// Skip the remainder of the current iteration in a loop.