bake(dev): plugins in dev server, with other fixes (#15467)

Co-authored-by: paperdave <paperdave@users.noreply.github.com>
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
This commit is contained in:
dave caruso
2024-11-29 19:07:56 -08:00
committed by GitHub
parent 497cef9759
commit 8aa451c2dc
30 changed files with 1196 additions and 531 deletions

View File

@@ -607,6 +607,9 @@ pub const ParseResult = union(enum) {
.location = Logger.Location{
.file = path,
.offset = this.loc.toUsize(),
// TODO: populate correct line and column information
.line = -1,
.column = -1,
},
.text = this.msg,
};