您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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