macroDiagnostics property

List<AnalyzerMacroDiagnostic> macroDiagnostics
inherited

Diagnostics registered while applying macros to this element.

Implementation

List<AnalyzerMacroDiagnostic> get macroDiagnostics {
  linkedData?.read(this);
  return _macroDiagnostics;
}
void macroDiagnostics=(List<AnalyzerMacroDiagnostic> value)
inherited

Implementation

set macroDiagnostics(List<AnalyzerMacroDiagnostic> value) {
  _macroDiagnostics = value;
}