Beispiel #1
0
 public SolidityStruct AddToBody(SolidityStatement statement)
 {
     body.Add(statement);
     return(this);
 }
Beispiel #2
0
 public void AddToBody(SolidityStatement statement)
 {
     body.Add(statement);
 }
Beispiel #3
0
 public void Add(SolidityStatement statement)
 {
     Statements.AddRange(statement.Statements);
 }
Beispiel #4
0
 public SolidityFor(string loopVariableName, string loopCountVariable)
 {
     body = new SolidityStatement();
     this.loopVariableName  = loopVariableName;
     this.loopCountVariable = loopCountVariable;
 }