about summary refs log tree commit diff
path: root/pkg/lang/vm/mem
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/lang/vm/mem')
-rw-r--r--pkg/lang/vm/mem/cell.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/lang/vm/mem/cell.go b/pkg/lang/vm/mem/cell.go
index 73aa0c6..85d6c34 100644
--- a/pkg/lang/vm/mem/cell.go
+++ b/pkg/lang/vm/mem/cell.go
@@ -12,6 +12,8 @@ const (
 	CellKindEnv
 	CellKindOutlet
 
+	CellKindGlobal
+
 	CellKindForbidden
 )
 
@@ -31,6 +33,8 @@ func (c CellKind) String() string {
 		return "env"
 	case CellKindOutlet:
 		return "outlet"
+	case CellKindGlobal:
+		return "global"
 	case CellKindForbidden:
 		return "forbidden"
 	default: