Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
755 B

package org.openrs2.deob.ast.transform
import com.github.javaparser.ast.CompilationUnit
import org.openrs2.deob.ast.Library
import org.openrs2.deob.ast.LibraryGroup
public abstract class Transformer {
public fun transform(group: LibraryGroup) {
preTransform(group)
for (library in group) {
for (unit in library) {
transformUnit(group, library, unit)
}
}
postTransform(group)
}
protected open fun preTransform(group: LibraryGroup) {
// empty
}
protected open fun transformUnit(group: LibraryGroup, library: Library, unit: CompilationUnit) {
// empty
}
protected open fun postTransform(group: LibraryGroup) {
// empty
}
}