コード例 #1
0
 private protected virtual void VisitLibraryMethodExpression(BoundLibraryMethodExpression node)
 {
     this.DefaultVisit(node);
 }
コード例 #2
0
        public BoundLibraryMethodInvocationExpression(InvocationExpressionSyntax syntax, bool hasValue, bool hasErrors, BoundLibraryMethodExpression method, IReadOnlyList <BaseBoundExpression> arguments)
            : base(hasValue, hasErrors)
        {
            Debug.Assert(!syntax.IsDefault(), "'syntax' must not be null.");
            Debug.Assert(!method.IsDefault(), "'method' must not be null.");
            Debug.Assert(!arguments.IsDefault(), "'arguments' must not be null.");

            this.Syntax    = syntax;
            this.Method    = method;
            this.Arguments = arguments;
        }