Skip to content

Commit

Permalink
chore: add docs and fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Codeneos committed Jan 23, 2024
1 parent 354589d commit 0455094
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import VlocodeService from '../lib/vlocodeService';
import { container, injectable } from '@vlocode/core';
import { VlocodeCommand } from '../constants';
import { ApexTestCoverage } from '@vlocode/salesforce';
import { TimedMap, cache } from '@vlocode/util';
import { cache } from '@vlocode/util';

/**
* Provides a code lens to show the test coverage for the current class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ import { CommandBase } from '../../lib/commandBase';
import { cache, substringBetweenLast } from '@vlocode/util';

@vscodeCommand(VlocodeCommand.apexToggleCoverage)
export default class PauseMetadataDeploymentsCommand extends CommandBase {
/**
* Represents a command for toggling test coverage
* highlighting in the editor for the an Apex class.
*/
export default class ToggleApexTestCoverage extends CommandBase {

private coverageShowingFor = new Set<string>();

Expand Down

0 comments on commit 0455094

Please sign in to comment.