public DebugLineItemDetail(DebugItemResultType type, string value, string moreLink, string variable)
 {
     Type = type;
     Value = value;
     MoreLink = moreLink;
     Variable = variable;
 }
Esempio n. 2
0
 public DebugLineItemDetail(DebugItemResultType type, string value, string moreLink, string variable)
 {
     Type     = type;
     Value    = value;
     MoreLink = moreLink;
     Variable = variable;
 }
 public DebugItemStaticDataParams(string value, string variable, string labelText)
 {
     _value     = value;
     _labelText = labelText;
     _variable  = variable;
     _type      = DebugItemResultType.Variable;
 }
 public DebugItemStaticDataParams(string value, string variable, string labelText)
 {
     _value = value;
     _labelText = labelText;
     _variable = variable;
     _type = DebugItemResultType.Variable;
 }
 public DebugItemWarewolfAtomResult(string value, string leftLabel)
 {
     _value     = value;
     _leftLabel = leftLabel;
     _type      = DebugItemResultType.Value;
     _operand   = "";
 }
 public DebugItemWarewolfAtomResult(string value, string leftLabel)
 {
     _value = value;
     _leftLabel = leftLabel;
     _type = DebugItemResultType.Value;
     _operand = "";
 }
 public DebugItemWarewolfRecordset(DataASTMutable.WarewolfRecordset warewolfRecordset, string variable, string labelText, string operand)
 {
     _warewolfRecordset = warewolfRecordset;
     _labelText = labelText;
     _operand = operand;
     _variable = variable;
     _type = DebugItemResultType.Variable;
 }
Esempio n. 8
0
 public DebugItemWarewolfRecordset(DataASTMutable.WarewolfRecordset warewolfRecordset, string variable, string labelText, string operand)
 {
     _warewolfRecordset = warewolfRecordset;
     _labelText         = labelText;
     _operand           = operand;
     _variable          = variable;
     _type = DebugItemResultType.Variable;
 }
 public DebugItemWarewolfAtomResult(string value, string newValue, string variable, string assignFromVariable, string leftLabel, string rightLabel, string operand)
 {
     _value              = value;
     _newValue           = newValue;
     _leftLabel          = leftLabel;
     _rightLabel         = rightLabel;
     _operand            = operand;
     _variable           = variable;
     _assignFromVariable = assignFromVariable;
     _type = DebugItemResultType.Variable;
 }
 public DebugItemWarewolfAtomResult(string value, string newValue, string variable, string assignFromVariable, string leftLabel, string rightLabel, string operand)
 {
     _value = value;
     _newValue = newValue;
     _leftLabel = leftLabel;
     _rightLabel = rightLabel;
     _operand = operand;
     _variable = variable;
     _assignFromVariable = assignFromVariable;
     _type = DebugItemResultType.Variable;
 }
 public DebugItemWarewolfAtomListResult(WarewolfDataEvaluationCommon.WarewolfEvalResult.WarewolfAtomListresult warewolfAtomListresult, WarewolfDataEvaluationCommon.WarewolfEvalResult oldResult, string assignedToVariableName, string variable, string leftLabelText, string rightLabelText, string operand)
 {
     _labelText = "";
     _operand = operand;
     _variable = variable;
     _type = DebugItemResultType.Variable;
     _rightLabel = rightLabelText;
     _leftLabel = leftLabelText;
     _warewolfAtomListresult = warewolfAtomListresult;
     _oldValue = oldResult;
     _assignedToVariableName = assignedToVariableName;
 }
 public DebugItemWarewolfAtomListResult(WarewolfDataEvaluationCommon.WarewolfEvalResult.WarewolfAtomListresult warewolfAtomListresult, WarewolfDataEvaluationCommon.WarewolfEvalResult oldResult, string assignedToVariableName, string variable, string leftLabelText, string rightLabelText, string operand)
 {
     _labelText              = "";
     _operand                = operand;
     _variable               = variable;
     _type                   = DebugItemResultType.Variable;
     _rightLabel             = rightLabelText;
     _leftLabel              = leftLabelText;
     _warewolfAtomListresult = warewolfAtomListresult;
     _oldValue               = oldResult;
     _assignedToVariableName = assignedToVariableName;
 }
Esempio n. 13
0
 public DebugItemWarewolfAtomListResult(CommonFunctions.WarewolfEvalResult.WarewolfAtomListresult warewolfAtomListresult, CommonFunctions.WarewolfEvalResult oldResult, string assignedToVariableName, string variable, string leftLabelText, string rightLabelText, string operand, bool isCalculate, bool mockSelected)
 {
     _labelText              = "";
     _operand                = operand;
     _isCalculate            = isCalculate;
     _variable               = variable;
     _type                   = DebugItemResultType.Variable;
     _rightLabel             = rightLabelText;
     _leftLabel              = leftLabelText;
     _warewolfAtomListresult = warewolfAtomListresult;
     _oldValue               = oldResult;
     _assignedToVariableName = assignedToVariableName;
     _mockSelected           = mockSelected;
 }