2012-02-16 21:49:30 -07:00
|
|
|
// compile
|
2008-07-14 17:26:41 -06:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-03 12:43:24 -07:00
|
|
|
package bug066
|
2008-07-14 17:26:41 -06:00
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type Scope struct {
|
2008-12-19 04:05:37 -07:00
|
|
|
entries map[string] *Object;
|
2008-07-14 17:26:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type Type struct {
|
2008-07-14 17:26:41 -06:00
|
|
|
scope *Scope;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type Object struct {
|
2008-07-14 17:26:41 -06:00
|
|
|
typ *Type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func Lookup(scope *Scope) *Object {
|
2008-07-14 17:26:41 -06:00
|
|
|
return scope.entries["foo"];
|
|
|
|
}
|