示例#1
0
 private Cnst(Cnst c)
     : base(c.Span)
 {
     raw            = c.raw;
     CnstKind       = c.CnstKind;
     cachedHashCode = c.cachedHashCode;
 }
示例#2
0
        internal Setting(Span span, Id key, Cnst value)
            : base(span)
        {
            Contract.Requires(key != null);
            Contract.Requires(value != null);

            Key   = key;
            Value = value;
        }
示例#3
0
 public bool TryGet(Microsoft.Formula.API.Nodes.Id settingName, out Microsoft.Formula.API.Nodes.Cnst result, out List <Flag> flags)
 {
     throw new NotImplementedException();
 }