Skip to content

Commit

Permalink
fix: Merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
d3xter666 committed Nov 12, 2024
1 parent 07e5437 commit 3651db5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/linter/ui5Types/SourceFileLinter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ export default class SourceFileLinter {
private checker: ts.TypeChecker,
private reportCoverage = false,
private messageDetails = false,
private dataTypes: Record<string, string> = {},
private manifestContent?: string,
private apiExtract: ApiExtract
private apiExtract: ApiExtract,
private manifestContent?: string
) {
this.#reporter = new SourceFileReporter(context, resourcePath,
sourceFile, sourceMaps?.get(sourceFile.fileName));
Expand Down Expand Up @@ -1249,7 +1248,7 @@ export default class SourceFileLinter {
if (!ts.isExportAssignment(declaration)) {
return;
}
const type = this.#checker.getTypeAtLocation(declaration.expression);
const type = this.checker.getTypeAtLocation(declaration.expression);
if (type.symbol?.flags & ts.SymbolFlags.Enum) {
isEnum = true;
}
Expand Down

0 comments on commit 3651db5

Please sign in to comment.