17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
package slangc.model.clauses;
|
|
|
|
import slangc.model.ClauseModel;
|
|
import slangc.model.StatementOwner;
|
|
import slangc.parser.Branch;
|
|
|
|
/** Used as an internal clause primarily in "for" statements where the parts inside (...;...;...) might be
|
|
* variable definitions or might be plain old expressions (or might just be empty, i.e. zero expressions).
|
|
*/
|
|
public abstract class ExpressionsOrVariables extends ClauseModel {
|
|
|
|
public ExpressionsOrVariables(StatementOwner owner, Branch source) {
|
|
super(owner, source);
|
|
}
|
|
|
|
}
|