aspect Util { static String ASTNode.capitalize(String s) { return Character.toUpperCase(s.charAt(0)) + s.substring(1); } }