Esempio n. 1
0
 public Foreach(string tipoDeVariable, string identificador, string list, TipoDeRegla tipoDeRegla)
 {
     TipoDeVariable = tipoDeVariable;
     Identificador  = identificador;
     List           = list;
     TipoDeRegla    = tipoDeRegla;
 }
Esempio n. 2
0
 public Asignacion2(string tipoDeVariable, string identificador, IExpresion expresion, TipoDeRegla tipoDeRegla)
 {
     TipoDeVariable = tipoDeVariable;
     Identificador  = identificador;
     Expresion      = expresion;
     TipoDeRegla    = tipoDeRegla;
 }
Esempio n. 3
0
 public If(string firstField, string @operator, string secondField, TipoDeRegla tipoDeRegla)
 {
     FirstField  = firstField;
     Operator    = @operator;
     SecondField = secondField;
     TipoDeRegla = tipoDeRegla;
 }
Esempio n. 4
0
 public Expresion125678(string variable1, string operador, string variable2, TipoDeRegla tipoDeRegla)
 {
     Variable1   = variable1;
     Operador    = operador;
     Variable2   = variable2;
     TipoDeRegla = tipoDeRegla;
 }
Esempio n. 5
0
 public For(string identificador1, string operator1, string value1, string identificador2, string operator2, string value2, string identificador3, bool esSumante, TipoDeRegla tipoDeRegla)
 {
     Identificador1 = identificador1;
     Operator1      = operator1;
     Value1         = value1;
     Identificador2 = identificador2;
     Operator2      = operator2;
     Value2         = value2;
     Identificador3 = identificador3;
     EsSumante      = esSumante;
     TipoDeRegla    = tipoDeRegla;
 }
Esempio n. 6
0
 public Asignacion1(string identificador, IExpresion expresion, TipoDeRegla tipoDeRegla)
 {
     Identificador = identificador;
     Expresion     = expresion;
     TipoDeRegla   = tipoDeRegla;
 }
Esempio n. 7
0
 public Expresion910(string value, bool esSumante, TipoDeRegla tipoDeRegla)
 {
     Value          = value;
     this.esSumante = esSumante;
     TipoDeRegla    = tipoDeRegla;
 }
Esempio n. 8
0
 public Expresion34(string value, TipoDeRegla tipoDeRegla)
 {
     Value       = value;
     TipoDeRegla = tipoDeRegla;
 }
Esempio n. 9
0
 public Else(TipoDeRegla tipoDeRegla)
 {
     TipoDeRegla = tipoDeRegla;
 }