Exemplo n.º 1
0
        internal IndexerNode(Node variable, ParamListNode paramList)
        {
            variable.ThrowIfNullArgument(nameof(variable));
            paramList.ThrowIfNullArgument(nameof(paramList));

            Node1 = variable;
            Node2 = paramList;
        }
Exemplo n.º 2
0
        internal IndexerNode(Node variable, ParamListNode paramList)
        {
            variable.ThrowIfNullArgument(nameof(variable));
            paramList.ThrowIfNullArgument(nameof(paramList));

            Node1 = variable;
            Node2 = paramList;
        }
Exemplo n.º 3
0
        internal MethodNode(Node variable, Node method, ParamListNode args)
        {
            method.ThrowIfNullArgument(nameof(method));
            args.ThrowIfNullArgument(nameof(args));

            Node1 = variable;//Note:null is acceptable, static method call.
            Node2 = method;
            Node3 = args;
        }
Exemplo n.º 4
0
        internal MethodNode(Node variable, Node method, ParamListNode args)
        {
            method.ThrowIfNullArgument(nameof(method));
            args.ThrowIfNullArgument(nameof(args));

            Node1 = variable;//Note:null is acceptable, static method call.
            Node2 = method;
            Node3 = args;
        }
Exemplo n.º 5
0
 public NewNode(Node typeNode, ParamListNode paramList)
 {
     this.Node1 = typeNode;
     this.Node2 = paramList;
 }
Exemplo n.º 6
0
 public NewNode(Node typeNode, ParamListNode paramList)
 {
     this.Node1 = typeNode;
     this.Node2 = paramList;
 }