summaryrefslogtreecommitdiff
path: root/Source/Dafny/Cloner.cs
diff options
context:
space:
mode:
authorGravatar leino <unknown>2014-12-07 01:23:24 -0800
committerGravatar leino <unknown>2014-12-07 01:23:24 -0800
commitd0519ffb24c23198269a0bff1f8ed20e7c1b3f5a (patch)
tree9e41dee147e9713a08400a0811fb782f4bb0a304 /Source/Dafny/Cloner.cs
parent3d8fd4cc56db82eb5c83f1e2061e88859f40778d (diff)
Finished up refactoring of the new name segment parsing, AST, and resolution.
Removed now defunct IdentifierSequence from the AST.
Diffstat (limited to 'Source/Dafny/Cloner.cs')
-rw-r--r--Source/Dafny/Cloner.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/Dafny/Cloner.cs b/Source/Dafny/Cloner.cs
index 4e0ccdcf..796db4ab 100644
--- a/Source/Dafny/Cloner.cs
+++ b/Source/Dafny/Cloner.cs
@@ -409,11 +409,6 @@ namespace Microsoft.Dafny
var e = (ParensExpression)expr;
return CloneExpr(e.E); // skip the parentheses in the clone
- } else if (expr is IdentifierSequence) {
- var e = (IdentifierSequence)expr;
- var aa = e.Arguments == null ? null : e.Arguments.ConvertAll(CloneExpr);
- return new IdentifierSequence(e.Tokens.ConvertAll(Tok), e.OpenParen == null ? null : Tok(e.OpenParen), aa);
-
} else if (expr is MatchExpr) {
var e = (MatchExpr)expr;
return new MatchExpr(Tok(e.tok), CloneExpr(e.Source),