diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-04-13 13:05:16 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-04-19 10:26:57 +0200 |
| commit | a116470dc3f3852a062312c93ebc8f2452027133 (patch) | |
| tree | 02d734adc15cd1f6c930c7ac6ba3a3f0ac055c72 /pkg/ast/ast.go | |
| parent | 365fba2440cee3aed74c774867a1f43e3e2f7aac (diff) | |
pkg/ast: add call attributes
Diffstat (limited to 'pkg/ast/ast.go')
| -rw-r--r-- | pkg/ast/ast.go | 1 |
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) { |
