summaryrefslogtreecommitdiff
path: root/src/pkg/exp/eval/scope.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/exp/eval/scope.go')
-rw-r--r--src/pkg/exp/eval/scope.go8
1 files changed, 2 insertions, 6 deletions
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