Example #1
0
 public Variable(string name, string type, VariablesScopes scope)
 {
     Name  = OpenSTAUtils.RenameVariableIfNeccesary(name);
     Type  = type;
     Scope = scope;
 }
Example #2
0
 public EndTimer(string timerName)
 {
     TimerName = OpenSTAUtils.RenameVariableIfNeccesary(timerName);
 }