public With(VerbPresidenceType presidence) { this.presidence = presidence; sourceBlock = new Block(); actionsBlock = new Block(); result = ""; typeName = ""; }
public With(Block sourceBlock, Block actionsBlock, VerbPresidenceType presidence) { this.sourceBlock = sourceBlock; this.actionsBlock = actionsBlock; this.presidence = presidence; result = ""; typeName = ""; }
public void SendMessageToField(string fieldName, string message, Arguments arguments = null, VerbPresidenceType verbPresidenceType = VerbPresidenceType.SendMessage) { if (arguments == null) { arguments = new Arguments(); } block.Add(new SendMessageToField(fieldName, message, arguments, verbPresidenceType)); }
public SendMessageToField(string fieldName, string message, Arguments arguments, VerbPresidenceType presidenceType, bool inPlace = false, bool registerCall = false, bool optional = false) : base(message, arguments, inPlace, registerCall, optional) { this.fieldName = fieldName; this.presidenceType = presidenceType; result = ""; typeName = ""; }
public SendMessageToProperty(string fieldName, string propertyName, Arguments propertyArguments, string messageName, Arguments messageArguments, VerbPresidenceType presidenceType) { this.fieldName = fieldName; this.propertyName = propertyName; this.propertyArguments = propertyArguments; this.messageName = messageName; this.messageArguments = messageArguments; this.presidenceType = presidenceType; result = ""; typeName = ""; }
public Invoke(Arguments arguments, VerbPresidenceType presidence = VerbPresidenceType.Invoke) { this.arguments = arguments; this.presidence = presidence; }
public WithParser(string pattern = "^ /(|tabs| 'with') /b", VerbPresidenceType presidence = VerbPresidenceType.Statement) : base(pattern) => this.presidence = presidence;
public IfExecute(Values.If _if, VerbPresidenceType presidence = VerbPresidenceType.Statement) { this._if = _if; this.presidence = presidence; }