Exemple #1
0
 private Scalar(QName name, FastType fastType, Operator op, OperatorCodec operatorCodec,
                ScalarValue defaultValue, bool optional)
     : base(name, optional)
 {
     _operator      = op;
     _operatorCodec = operatorCodec;
     _dictionary    = DictionaryFields.Global;
     _defaultValue  = defaultValue ?? ScalarValue.Undefined;
     _fastType      = fastType;
     _typeCodec     = fastType.GetCodec(op, optional);
     _initialValue  = (defaultValue == null || defaultValue.IsUndefined) ? _fastType.DefaultValue : defaultValue;
     op.Validate(this);
 }