Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

14 rader
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. }