Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Fixing switch section output + it's now possible to track node output
Browse files Browse the repository at this point in the history
in the output visitor.
  • Loading branch information
Mike Krüger committed May 25, 2011
1 parent 79f1798 commit f761813
Show file tree
Hide file tree
Showing 2 changed files with 1,331 additions and 1,279 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,15 @@ public Expression Expression {
set { SetChildByRole (Roles.Expression, value); }
}

public CaseLabel ()
{
}

public CaseLabel (Expression expression)
{
this.Expression = expression;
}

public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data)
{
return visitor.VisitCaseLabel (this, data);
Expand Down
Loading

0 comments on commit f761813

Please sign in to comment.