Ejemplo n.º 1
0
 public Frame(WindowFrameType type, FrameBoundType startType, Symbol startValue, FrameBoundType endType, Symbol endValue)
 {
     this.Type       = type;
     this.StartType  = startType;
     this.StartValue = startValue;
     this.EndType    = endType;
     this.EndValue   = endValue;
 }
Ejemplo n.º 2
0
 public FrameBound(NodeLocation location, FrameBoundType type, dynamic value, dynamic originalValue) : base(location)
 {
     this.Type          = type;
     this.Value         = value;
     this.OriginalValue = originalValue;
 }
Ejemplo n.º 3
0
 public FrameBound(NodeLocation location, FrameBoundType type) : this(location, type, null, null)
 {
 }
Ejemplo n.º 4
0
 public FrameBound(NodeLocation location, FrameBoundType type, dynamic value) : this(location, type, (object)value, (object)value)
 {
 }
Ejemplo n.º 5
0
 public FrameBound(FrameBoundType type) : this(null, type)
 {
 }