aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/ast/ast.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-04-13 13:05:16 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-04-19 10:26:57 +0200
commita116470dc3f3852a062312c93ebc8f2452027133 (patch)
tree02d734adc15cd1f6c930c7ac6ba3a3f0ac055c72 /pkg/ast/ast.go
parent365fba2440cee3aed74c774867a1f43e3e2f7aac (diff)
pkg/ast: add call attributes
Diffstat (limited to 'pkg/ast/ast.go')
-rw-r--r--pkg/ast/ast.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/ast/ast.go b/pkg/ast/ast.go
index f1f74e61b..8cd7bef6e 100644
--- a/pkg/ast/ast.go
+++ b/pkg/ast/ast.go
@@ -92,6 +92,7 @@ type Call struct {
NR uint64
Args []*Field
Ret *Type
+ Attrs []*Type
}
func (n *Call) Info() (Pos, string, string) {