analyze function

void analyze(
  1. List<StyleSheet> styleSheets, {
  2. List<Message>? errors,
  3. PreprocessorOptions? options,
})

Analyze the CSS file.

Implementation

void analyze(List<StyleSheet> styleSheets,
    {List<Message>? errors, PreprocessorOptions? options}) {
  _createMessages(errors: errors, options: options);
  Analyzer(styleSheets, messages).run();
}