You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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