Searched refs:subdiagnostics (Results 1 - 2 of 2) sorted by relevance

/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DAbstractDiagnosticFormatter.java87 * (!= 0 for subdiagnostics)
253 * Format all the subdiagnostics attached to a given diagnostic.
255 * @param d diagnostic whose subdiagnostics are to be formatted
257 * @return list of all string representations of the subdiagnostics
260 List<String> subdiagnostics = List.nil();
269 subdiagnostics = subdiagnostics.append(formatSubdiagnostic(d, d2, l));
280 return subdiagnostics;
284 * Format a subdiagnostics attached to a given diagnostic.
286 * @param parent multiline diagnostic whose subdiagnostics i
[all...]
H A DJCDiagnostic.java795 private final List<JCDiagnostic> subdiagnostics; field in class:JCDiagnostic.MultilineDiagnostic
797 public MultilineDiagnostic(JCDiagnostic other, List<JCDiagnostic> subdiagnostics) { argument
804 this.subdiagnostics = subdiagnostics;
809 return subdiagnostics;

Completed in 72 milliseconds