yyl
2025-10-22 b1f98c42a6b859b35c26e0722efb38a6e9c215be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Jace.Operations
{
    public class UnaryMinus : Operation
    {
        public UnaryMinus(DataType dataType, Operation argument)
            : base(dataType, argument.DependsOnVariables, argument.IsIdempotent)
        {
            this.Argument = argument;
        }
 
        public Operation Argument { get; internal set; }
    }
}