From d1284ef9f08ad1b342a27b2f5de064b07bb45d03 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Thu, 10 Jul 2008 17:21:23 -0700 Subject: - more frontend pieces in Go SVN=126744 --- usr/gri/src/scope.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 usr/gri/src/scope.go (limited to 'usr/gri/src/scope.go') diff --git a/usr/gri/src/scope.go b/usr/gri/src/scope.go new file mode 100644 index 000000000..13a14ce49 --- /dev/null +++ b/usr/gri/src/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; +} -- cgit v1.2.3