Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • a81fc24cb097209aa23b2c20ecf473894d06825b
  • master default protected
  • 20-poc-use-tinytemplate-as-template-engine
  • dev/rene
  • feature/submodule
  • feature/relast
6 results

gradle.properties

Blame
  • Util.jadd 336 B
    aspect Util {
      static String ASTNode.capitalize(String s) {
        if (s == null) return null;
        if (s.isEmpty()) return "";
        return Character.toUpperCase(s.charAt(0)) + s.substring(1);
      }
      protected T JastAddList.firstChild() { return getChild(0); }
      protected T JastAddList.lastChild() { return getChild(getNumChild() - 1); }
    }