intersects method

bool intersects(
  1. CodeActionKind other
)

Checks if this code action kind intersects other.

The kind "refactor.extract" for example intersects refactor, "refactor.extract" and ``"refactor.extract.function", but not "unicorn.refactor.extract", or "refactor.extractAll"`.

@param other Kind to check.

Implementation

_i2.bool intersects(_i3.CodeActionKind other) => _i5.callMethod(
      this,
      'intersects',
      [other],
    );