summaryrefslogtreecommitdiff
path: root/usr/austin/eval/stmt.go
diff options
context:
space:
mode:
authorAustin Clements <aclements@csail.mit.edu>2009-08-12 17:24:05 -0700
committerAustin Clements <aclements@csail.mit.edu>2009-08-12 17:24:05 -0700
commit01edc945f1069ba3d38bd015af5725880fb779b4 (patch)
treeec3c881bd6fa67a13d54fbb8cc0ea286c84fb615 /usr/austin/eval/stmt.go
parentb935e1ee0aca587ca1ab9b07b7eb2ec2aacd900f (diff)
downloadgolang-01edc945f1069ba3d38bd015af5725880fb779b4.tar.gz
Convert interpreter to whole-package compilation.
R=rsc APPROVED=rsc DELTA=334 (110 added, 211 deleted, 13 changed) OCL=33135 CL=33137
Diffstat (limited to 'usr/austin/eval/stmt.go')
-rw-r--r--usr/austin/eval/stmt.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/austin/eval/stmt.go b/usr/austin/eval/stmt.go
index 2b401a1ba..08c0c6d6d 100644
--- a/usr/austin/eval/stmt.go
+++ b/usr/austin/eval/stmt.go
@@ -6,7 +6,6 @@ package eval
import (
"bignum";
- "eval";
"log";
"os";
"go/ast";
@@ -244,8 +243,7 @@ func (a *stmtCompiler) defineVar(ident *ast.Ident, t Type) *Variable {
return v;
}
-// TODO(austin) Move the real definition
-func (a *stmtCompiler) doAssign(lhs []ast.Expr, rhs []ast.Expr, tok token.Token, declTypeExpr ast.Expr)
+// TODO(austin) Move doAssign to here
/*
* Statement visitors