-
-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: add TaskLocation
to ListItem
#3326
refactor: add TaskLocation
to ListItem
#3326
Conversation
|
} | ||
} catch (e) { | ||
this.errorReporter(e, this.filePath, listItem, line); | ||
} | ||
return sectionIndex; | ||
} | ||
|
||
private createListItem(listItem: ListItemCache, line: string, lineNumber: number) { | ||
private createListItem(listItem: ListItemCache, line: string, lineNumber: number, taskLocation: TaskLocation) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At some point we can remove the lineNumber parameter here, as taskLocation now also supplies the lineNumber.
I put an assert in, and confirmed that across all our tests, the two values always agree.
Done by pairing with @claremacrae
Types of changes
Internal changes:
refactor
- non-breaking change which only improves the design or structure of existing code, and making no changes to its external behaviour)test
- additions and improvements to unit tests and the smoke tests)Description
TaskLocation
toListItem
(TaskLocation
not removed fromTask
)Motivation and Context
How has this been tested?
Checklist
yarn run lint
.Terms