Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
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. }