summaryrefslogtreecommitdiff
path: root/src/pkg/exp/eval/world.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/exp/eval/world.go')
-rw-r--r--src/pkg/exp/eval/world.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/pkg/exp/eval/world.go b/src/pkg/exp/eval/world.go
index bf9af22ab..8218c24f5 100644
--- a/src/pkg/exp/eval/world.go
+++ b/src/pkg/exp/eval/world.go
@@ -81,9 +81,7 @@ func (w *World) CompileDeclList(decls []ast.Decl) (Code, os.Error) {
return w.CompileStmtList(stmts);
}
-func (s *stmtCode) Type() Type {
- return nil;
-}
+func (s *stmtCode) Type() Type { return nil }
func (s *stmtCode) Run() (Value, os.Error) {
t := new(Thread);
@@ -120,9 +118,7 @@ func (w *World) CompileExpr(e ast.Expr) (Code, os.Error) {
return &exprCode{w, ec, eval}, nil;
}
-func (e *exprCode) Type() Type {
- return e.e.t;
-}
+func (e *exprCode) Type() Type { return e.e.t }
func (e *exprCode) Run() (Value, os.Error) {
t := new(Thread);