Skip to content

Commit

Permalink
fixup! Add support for function definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Clark Barrett committed Feb 22, 2020
1 parent 71ef063 commit b4d1cd9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Source/Core/Absy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1527,7 +1527,6 @@ public override void Emit(TokenTextWriter stream, int level) {

public class Axiom : Declaration {
private Expr/*!*/ expression;
public bool IsFunctionDefinition;

public Expr Expr {
get {
Expand Down Expand Up @@ -1558,7 +1557,6 @@ public Axiom(IToken/*!*/ tok, Expr/*!*/ expr, string comment)
Contract.Requires(tok != null);
Contract.Requires(expr != null);
this.expression = expr;
this.IsFunctionDefinition = false;
Comment = comment;
}

Expand Down

0 comments on commit b4d1cd9

Please sign in to comment.