about summary refs log tree commit diff
path: root/pkg/lang/ast/ast.go
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-04-21 03:18:46 +0200
committerMel <einebeere@gmail.com>2022-04-21 03:18:46 +0200
commit5267c0e8653b431cfd2c06212cdba4f22225bd02 (patch)
tree9ec6205f01629918407edb97a531248e1bb6c762 /pkg/lang/ast/ast.go
parent20bc0c2243888900d2f04328e57ad2d7ca0a2403 (diff)
downloadjinx-5267c0e8653b431cfd2c06212cdba4f22225bd02.tar.zst
jinx-5267c0e8653b431cfd2c06212cdba4f22225bd02.zip
Do not force generics for Expr and Stmt
Diffstat (limited to 'pkg/lang/ast/ast.go')
-rw-r--r--pkg/lang/ast/ast.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/lang/ast/ast.go b/pkg/lang/ast/ast.go
index 43d0c28..4171801 100644
--- a/pkg/lang/ast/ast.go
+++ b/pkg/lang/ast/ast.go
@@ -1,5 +1,5 @@
 package ast
 
 type Program struct {
-	Stmts []Stmt[any]
-}
\ No newline at end of file
+	Stmts []Stmt
+}