diff options
| author | Mel <einebeere@gmail.com> | 2022-04-21 03:18:46 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2022-04-21 03:18:46 +0200 |
| commit | 5267c0e8653b431cfd2c06212cdba4f22225bd02 (patch) | |
| tree | 9ec6205f01629918407edb97a531248e1bb6c762 /pkg/lang/ast/ast.go | |
| parent | 20bc0c2243888900d2f04328e57ad2d7ca0a2403 (diff) | |
| download | jinx-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.go | 4 |
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 +} |
