summaryrefslogtreecommitdiff
path: root/usr/austin/eval/util.go
diff options
context:
space:
mode:
authorAustin Clements <aclements@csail.mit.edu>2009-09-24 08:25:14 -0700
committerAustin Clements <aclements@csail.mit.edu>2009-09-24 08:25:14 -0700
commit90f1b948138c226c74616a4e625df1b1353f69a8 (patch)
treea2afa274d520850ed457f199049d320a4a5fff38 /usr/austin/eval/util.go
parent39117013ca364bd1b68a02a6e561824ebec21bff (diff)
downloadgolang-90f1b948138c226c74616a4e625df1b1353f69a8.tar.gz
Fix declared and not used errors and unused import errors in
the interpreter and update code to use ast.BasicDecl and multi-type switch. There are still a lot of "switch _ := x.(type)" that should make use of the new type switch syntax, but those will be a different CL. R=rsc APPROVED=rsc DELTA=58 (16 added, 23 deleted, 19 changed) OCL=34853 CL=34963
Diffstat (limited to 'usr/austin/eval/util.go')
-rw-r--r--usr/austin/eval/util.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/usr/austin/eval/util.go b/usr/austin/eval/util.go
index 68f58842d..9cdf23722 100644
--- a/usr/austin/eval/util.go
+++ b/usr/austin/eval/util.go
@@ -6,8 +6,6 @@ package eval
import (
"bignum";
- "fmt";
- "go/token";
)
// TODO(austin): Maybe add to bignum in more general form