Skip to content
Snippets Groups Projects

Resolve "Feature: Send endpoint for attributes"

Merged René Schöne requested to merge 38-feature-send-endpoint-for-attributes into dev
1 file
+ 2
0
Compare changes
  • Side-by-side
  • Inline
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); }
Loading