6 lines
76 B
Plaintext
6 lines
76 B
Plaintext
|
package slangc.bytecode;
|
||
|
|
||
|
public interface Visitor {
|
||
|
void finish();
|
||
|
}
|