org.qbicc.machine.llvm.Commentable Maven / Gradle / Ivy
package org.qbicc.machine.llvm;
/**
* Something which can receive LLVM source comments.
*/
public interface Commentable {
/**
* Add a comment.
*
* @param comment the comment text
* @return this instance
*/
Commentable comment(String comment);
}