diff options
author | Austin Clements <aclements@csail.mit.edu> | 2009-08-28 12:45:30 -0700 |
---|---|---|
committer | Austin Clements <aclements@csail.mit.edu> | 2009-08-28 12:45:30 -0700 |
commit | a2842d35320541cfabc1b3b483ccae85272e1a4c (patch) | |
tree | f68d1b57ae310bfb49f65b8475624e07be3bef34 /usr/austin/eval/expr.go | |
parent | af988a4b0ee987bd0f56fd29bb2773902d55ef83 (diff) | |
download | golang-a2842d35320541cfabc1b3b483ccae85272e1a4c.tar.gz |
Give NamedTypes a public interface
R=rsc
APPROVED=rsc
DELTA=32 (14 added, 1 deleted, 17 changed)
OCL=34043
CL=34043
Diffstat (limited to 'usr/austin/eval/expr.go')
-rw-r--r-- | usr/austin/eval/expr.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/austin/eval/expr.go b/usr/austin/eval/expr.go index c6650729a..6ca0f9b28 100644 --- a/usr/austin/eval/expr.go +++ b/usr/austin/eval/expr.go @@ -876,7 +876,7 @@ func (a *exprInfo) compileSelectorExpr(v *expr, name string) *expr { mark(depth, pathName + "." + name); log.Crash("Methods not implemented"); } - t = ti.def; + t = ti.Def; } // If it's a struct type, check fields and embedded types |