summaryrefslogtreecommitdiff
path: root/src/tparse/token.go
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2021-10-30 01:54:02 -0400
committerKyle Gunger <kgunger12@gmail.com>2021-10-30 01:54:02 -0400
commitbe0f69df2c0fc4bc8f64e8d51aa06b4b56f3401d (patch)
treef2b0b878de93394e9f4107b76f6afdb1dccdcbc9 /src/tparse/token.go
parent6af4308f464e3821baca41a5bc5b4938481504b4 (diff)
[AST] Fixes for some statements in blocks
Diffstat (limited to 'src/tparse/token.go')
-rw-r--r--src/tparse/token.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tparse/token.go b/src/tparse/token.go
index 02502eb..6c84c72 100644
--- a/src/tparse/token.go
+++ b/src/tparse/token.go
@@ -29,9 +29,6 @@ type Node struct {
Data Token
IsBlock bool
- BlockQs []Token
- BlockIn []Node
- BlockOut []Node
Sub []Node
}