runWithReporter method

  1. @override
void runWithReporter(
  1. SaropaDiagnosticReporter reporter,
  2. SaropaContext context
)
override

Override this method to implement your lint rule.

Use context to register callbacks for AST node types:

context.addMethodInvocation((node) {
  if (condition) {
    reporter.atNode(node);
  }
});

Implementation

@override
void runWithReporter(
  SaropaDiagnosticReporter reporter,
  SaropaContext context,
) {
  // Check async method declarations
  context.addMethodDeclaration((node) {
    if (node.body case BlockFunctionBody body) {
      if (!body.isAsynchronous) return;
      _checkAsyncBody(body.block, reporter);
    }
  });

  // Check async function expressions (lambdas, callbacks)
  context.addFunctionExpression((node) {
    if (node.body case BlockFunctionBody body) {
      if (!body.isAsynchronous) return;
      _checkAsyncBody(body.block, reporter);
    }
  });
}