16 lines
338 B
Plaintext
16 lines
338 B
Plaintext
|
package slangc.model;
|
||
|
|
||
|
public abstract class StatementOrExpression {
|
||
|
|
||
|
public StatementOrExpression() {
|
||
|
// TODO Auto-generated constructor stub
|
||
|
}
|
||
|
|
||
|
public int resolveExpressions() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public abstract Named lookupSimpleName(String name);
|
||
|
public abstract MethodModel[] lookupSimpleMethod(String name);
|
||
|
}
|