diff options
Diffstat (limited to 'usr/gri/gosrc/scope.go')
-rw-r--r-- | usr/gri/gosrc/scope.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/usr/gri/gosrc/scope.go b/usr/gri/gosrc/scope.go new file mode 100644 index 000000000..13a14ce49 --- /dev/null +++ b/usr/gri/gosrc/scope.go @@ -0,0 +1,14 @@ +// 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. + +package Scope + +import Globals "Globals" + +type Scope Globals.Scope + +func New(parent *Scope) *Scope { + panic "UNIMPLEMENTED"; + return nil; +} |