about summary refs log tree commit diff
path: root/pkg/lang/vm/mem/cell.go
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-05-27 23:34:40 +0000
committerGitHub <noreply@github.com>2022-05-27 23:34:40 +0000
commit83d1dc87f3336d70ccda476627c70c282b7b6e11 (patch)
tree70610879d3de1ddf02bbe9067076fe65b52979a9 /pkg/lang/vm/mem/cell.go
parent47c4cd3705bee9d7154c42ce95aef6f8a19e0661 (diff)
downloadjinx-83d1dc87f3336d70ccda476627c70c282b7b6e11.tar.zst
jinx-83d1dc87f3336d70ccda476627c70c282b7b6e11.zip
Function envs and value escaping
Diffstat (limited to 'pkg/lang/vm/mem/cell.go')
-rw-r--r--pkg/lang/vm/mem/cell.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/lang/vm/mem/cell.go b/pkg/lang/vm/mem/cell.go
index 044a45c..3f052d5 100644
--- a/pkg/lang/vm/mem/cell.go
+++ b/pkg/lang/vm/mem/cell.go
@@ -6,7 +6,11 @@ const (
 	CellKindEmpty CellKind = iota
 	CellKindString
 	CellKindArray
-	CellKindEscaped
+
+	CellKindEnv
+	CellKindOutlet
+
+	CellKindForbidden
 )
 
 type cell struct {