onDidChangeSemanticTokens property

Event<void>? get onDidChangeSemanticTokens

An optional event to signal that the semantic tokens from this provider have changed.

Implementation

_i3.Event<void>? get onDidChangeSemanticTokens => _i5.getProperty(
      this,
      'onDidChangeSemanticTokens',
    );
set onDidChangeSemanticTokens (Event<void>? value)

Implementation

set onDidChangeSemanticTokens(_i3.Event<void>? value) {
  _i5.setProperty(
    this,
    'onDidChangeSemanticTokens',
    value ?? _i6.undefined,
  );
}