summaryrefslogtreecommitdiff
path: root/src/pkg/exp/eval/expr.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/exp/eval/expr.go')
-rw-r--r--src/pkg/exp/eval/expr.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/pkg/exp/eval/expr.go b/src/pkg/exp/eval/expr.go
index ed32c0a3c..94714943c 100644
--- a/src/pkg/exp/eval/expr.go
+++ b/src/pkg/exp/eval/expr.go
@@ -627,20 +627,6 @@ func (a *exprCompiler) compile(x ast.Expr, callCtx bool) *expr {
}
return ei.compileStarExpr(v)
- case *ast.StringList:
- strings := make([]*expr, len(x.Strings))
- bad := false
- for i, s := range x.Strings {
- strings[i] = a.compile(s, false)
- if strings[i] == nil {
- bad = true
- }
- }
- if bad {
- return nil
- }
- return ei.compileStringList(strings)
-
case *ast.StructType:
goto notimpl