DeclarationIncludes constructor

DeclarationIncludes(
  1. Messages _messages,
  2. List<StyleSheet> styleSheets
)

Implementation

DeclarationIncludes(this._messages, List<StyleSheet> styleSheets) {
  for (var styleSheet in styleSheets) {
    visitTree(styleSheet);
  }
}