endGroup property

  1. @override
Token? endGroup
override

The token that corresponds to this token, or null if this token is not the first of a pair of matching tokens (such as parentheses).

Implementation

@override
Token? get endGroup => endToken;
void endGroup=(Token? token)

Set the token that corresponds to this token.

Implementation

set endGroup(Token? token) {
  endToken = token;
}