From c7ac3aabe49d6c101a206c7cda698bc1204c5bd0 Mon Sep 17 00:00:00 2001 From: Brendo Costa Date: Mon, 7 Oct 2024 19:52:31 -0300 Subject: [PATCH] Renamed field from "target" to "continuation" --- src/gwr/execution/stack.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gwr/execution/stack.gleam b/src/gwr/execution/stack.gleam index 62f9c38..0087650 100644 --- a/src/gwr/execution/stack.gleam +++ b/src/gwr/execution/stack.gleam @@ -25,7 +25,7 @@ pub type StackEntry /// https://webassembly.github.io/spec/core/exec/runtime.html#labels pub type Label { - Label(arity: Int, target: List(instruction.Instruction)) + Label(arity: Int, continuation: List(instruction.Instruction)) } /// Activation frames carry the return arity of the respective function, hold the values of