6 lines
131 B
Plaintext
6 lines
131 B
Plaintext
|
package slangc.bytecode;
|
||
|
|
||
|
public interface SystemVisitor extends Visitor {
|
||
|
TypeVisitor visitType(TypeSignature signature);
|
||
|
}
|