protected GraphExpressionNodeBase(GraphMethodRoot methodRoot, [CanBeNull] ExpressionBase expression)
            : base(methodRoot)
        {
            Expression = expression;

            RefreshText();
        }
示例#2
0
 public GraphNode([NotNull] GraphMethodRoot methodRoot)
 {
     MethodRoot       = methodRoot ?? throw new ArgumentNullException(nameof(methodRoot));
     AllOutgoing      = new ReadOnlyObservableCollection <GraphNode>(_allOutgoingInternal);
     PropertyChanged += TextManagerPropertyChanged;
 }