Exemple #1
0
 public override OclExpression Visit(ErrorExp node)
 {
     notSupportedExpression = node;
     isSuitable             = false;
     throw new OclConstructNotAvailableInPSM(node);
 }
Exemple #2
0
 public virtual void Visit(ErrorExp node)
 {
     throw new ExpressionNotSupportedInXPath(node);
 }
 public override bool Visit(ErrorExp node)
 {
     violatingExpression = node;
     isSuitable          = false;
     return(false);
 }
Exemple #4
0
 public void Visit(ErrorExp node)
 {
 }
Exemple #5
0
 public void Visit(ErrorExp node)
 {
     sb.Append(" ERROR ");
 }
Exemple #6
0
 public abstract TType Visit(ErrorExp node);