org.duelengine.duel.codedom.CodeStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of duel-compiler Show documentation
Show all versions of duel-compiler Show documentation
Dual-side template engine for the JVM
package org.duelengine.duel.codedom;
/**
* Represents a single code statement
*/
public abstract class CodeStatement extends CodeObject {
@Override
public CodeStatement withMetaData(Object... pairs) {
return (CodeStatement)super.withMetaData(pairs);
}
}