Exemplo n.º 1
0
 public SendMessageToField(string fieldName, string message, Arguments arguments, VerbPrecedenceType precedenceType,
                           bool inPlace = false, bool registerCall = false, bool optional = false)
     : base(message, arguments, inPlace, registerCall, optional)
 {
     this.fieldName      = fieldName;
     this.precedenceType = precedenceType;
     result   = "";
     typeName = "";
 }
Exemplo n.º 2
0
        public With(Block sourceBlock, Block actionsBlock, VerbPrecedenceType precedence)
        {
            this.sourceBlock  = sourceBlock;
            this.actionsBlock = actionsBlock;
            this.precedence   = precedence;

            result   = "";
            typeName = "";
        }
Exemplo n.º 3
0
 public SendMessageToProperty(string fieldName, string propertyName, Arguments propertyArguments,
                              string messageName, Arguments messageArguments, VerbPrecedenceType precedenceType)
 {
     this.fieldName         = fieldName;
     this.propertyName      = propertyName;
     this.propertyArguments = propertyArguments;
     this.messageName       = messageName;
     this.messageArguments  = messageArguments;
     this.precedenceType    = precedenceType;
     result   = "";
     typeName = "";
 }
Exemplo n.º 4
0
 public IfExecute(Values.If @if, VerbPrecedenceType precedence = VerbPrecedenceType.Statement)
 {
     this.@if        = @if;
     this.precedence = precedence;
 }
Exemplo n.º 5
0
 public WithParser(string pattern = "^ /(|tabs| 'with') /b", VerbPrecedenceType precedence = VerbPrecedenceType.Statement) : base(pattern)
 {
     this.precedence = precedence;
 }
Exemplo n.º 6
0
 public Invoke(Arguments arguments, VerbPrecedenceType precedence = VerbPrecedenceType.Invoke)
 {
     this.arguments  = arguments;
     this.precedence = precedence;
 }