From 828334dd95ce8e4bf3662bd5c89d7c417f0741d0 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Fri, 6 Nov 2009 14:24:38 -0800 Subject: - fine-tuning of one-line func heuristic (nodes.go) - enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006 --- src/pkg/exp/eval/scope.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/pkg/exp/eval/scope.go') diff --git a/src/pkg/exp/eval/scope.go b/src/pkg/exp/eval/scope.go index 1c3d1f622..43df7cf63 100644 --- a/src/pkg/exp/eval/scope.go +++ b/src/pkg/exp/eval/scope.go @@ -121,9 +121,7 @@ func (b *block) DefineVar(name string, pos token.Position, t Type) (*Variable, D return v, nil; } -func (b *block) DefineTemp(t Type) *Variable { - return b.defineSlot(t, true); -} +func (b *block) DefineTemp(t Type) *Variable { return b.defineSlot(t, true) } func (b *block) defineSlot(t Type, temp bool) *Variable { if b.inner != nil && b.inner.scope == b.scope { @@ -175,9 +173,7 @@ func (b *block) Lookup(name string) (bl *block, level int, def Def) { return nil, 0, nil; } -func (s *Scope) NewFrame(outer *Frame) *Frame { - return outer.child(s.maxVars); -} +func (s *Scope) NewFrame(outer *Frame) *Frame { return outer.child(s.maxVars) } /* * Frames -- cgit v1.2.3