Beispiel #1
0
 public int UsedIn(ColaNode n)
 {
     if (In.Contains(n)) return +1;
     if (Out.Contains(n)) return -1;
     return 0;
 }
 public ScriptIsErroneousFactum(ColaNode node, ErroneousScriptException exception)
     : base(Severity.Fatal, node) 
 {
     Node = node;
     Exception = exception;
 }
Beispiel #3
0
 protected Factum(Severity severity, ColaNode bubble)
     : this(severity, new ColaBottle(bubble.Parents.Reverse().Concat(bubble.AsArray()).First()))
 {
 }