Before
public void union (Object o); public void struct (Object o); public void delete (Object o);
After
public void union(Object o); public void struct(Object o); public void delete(Object o);
Differential D6315
clang-format: ignore C++ keywords in Java het on Nov 18 2014, 3:31 PM. Authored by
Details
Before public void union (Object o); public void struct (Object o); public void delete (Object o); After public void union(Object o); public void struct(Object o); public void delete(Object o);
Diff Detail Event TimelineComment Actions Perhaps a more correct way to do this is to transform tok::union, tok::struct, and tok::delete into tok::identifier in the tokenizer if the language is Java |