File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ export function getAllAvailableConfigurations(): ModuleInterface[] {
4949 */
5050export class ModuleParser implements Parser {
5151 private static instance : ModuleParser ;
52- private constructor ( ) { }
5352
5453 static getInstance ( ) : ModuleParser {
5554 if ( ! ModuleParser . instance ) {
@@ -102,7 +101,6 @@ export const moduleParser = ModuleParser.getInstance();
102101 * Extract code lenses from matched modules and parsed sections.
103102 * These will be shown in the editor as clickable links to documentation.
104103 */
105- // For testing only
106104export function extractCodeLenses (
107105 source : string ,
108106 matchedModules : ModuleInterface [ ]
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export class ConfigurationManager {
5252 case "enableHoverInfo" :
5353 return config . get ( "enableHoverInfo" , false ) as AshStudioConfig [ T ] ;
5454 default :
55- throw new Error ( `Unknown configuration key: ${ String ( key ) } ` ) ;
55+ throw new Error ( `Unknown configuration key: ${ key } ` ) ;
5656 }
5757 }
5858
You can’t perform that action at this time.
0 commit comments