Skip to content
Snippets Groups Projects

Draft: Resolve "Commenter for Aspect Files"

Open Johannes Mey requested to merge feature/commenter-for-aspect-files into develop
4 files
+ 45
2
Compare changes
  • Side-by-side
  • Inline
Files
4
package org.jastadd.tooling.aspect;
import com.intellij.lang.Commenter;
import org.jetbrains.annotations.Nullable;
public class AspectCommenter implements Commenter {
@Nullable
@Override
public String getLineCommentPrefix() {
return "//";
}
@Nullable
@Override
public String getBlockCommentPrefix() {
return "/*";
}
@Nullable
@Override
public String getBlockCommentSuffix() {
return "*/";
}
@Nullable
@Override
public String getCommentedBlockCommentPrefix() {
return null;
}
@Nullable
@Override
public String getCommentedBlockCommentSuffix() {
return null;
}
}
Loading