Skip to content

Commit

Permalink
wrong funcname
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf committed May 14, 2024
1 parent b6e7be6 commit 4e5a64b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/buildenvsetup/base.ts
Expand Up @@ -54,7 +54,7 @@ export class BuildEnvSetupBase {
}

protected props(propName: string, def?: any): any {
return this.env.ceProps(this.compiler.langId, 'buildenvsetup.' + propName, def);
return this.env.compilerProps(this.compiler.langId, 'buildenvsetup.' + propName, def);
}

Check warning on line 58 in lib/buildenvsetup/base.ts

View check run for this annotation

Codecov / codecov/patch

lib/buildenvsetup/base.ts#L57-L58

Added lines #L57 - L58 were not covered by tests

async initialise(execCompilerCachedFunc) {
Expand Down
2 changes: 1 addition & 1 deletion lib/external-parsers/base.ts
Expand Up @@ -31,7 +31,7 @@ export class ExternalParserBase implements IExternalParser {
}

protected props(propName: string, def: any): any {
return this.envInfo.ceProps(this.compilerInfo.langId, 'externalparser.' + propName, def);
return this.envInfo.compilerProps(this.compilerInfo.langId, 'externalparser.' + propName, def);
}

Check warning on line 36 in lib/external-parsers/base.ts

View check run for this annotation

Codecov / codecov/patch

lib/external-parsers/base.ts#L33-L36

Added lines #L33 - L36 were not covered by tests
private getParserArguments(filters: ParseFiltersAndOutputOptions, fromStdin: boolean): string[] {
Expand Down

0 comments on commit 4e5a64b

Please sign in to comment.