match method

  1. @override
bool match(
  1. dynamic exp
)
override

Implementation

@override
bool match(dynamic exp) {
  if (currentMatch(exp)) {
    return true;
  }
  return parentMatch(exp);
}