Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 wiersze
319 B

  1. 'use strict';
  2. import { Container } from '../container';
  3. import { command, Command, Commands } from './common';
  4. @command()
  5. export class ToggleCodeLensCommand extends Command {
  6. constructor() {
  7. super(Commands.ToggleCodeLens);
  8. }
  9. execute() {
  10. return Container.codeLens.toggleCodeLens();
  11. }
  12. }