[YAML] Use correct source location for unknown key errors. (details)
Reland [clangd] Extract per-dir CDB cache to its own threadsafe class. NFC (details)
Commit
d380c38e3470c5b02a3002a7ea8d836f44086b31
by n.james93
[YAML] Use correct source location for unknown key errors.
Currently unknown keys when inputting mapping traits have the location set to the Value. Example: ``` YAML:1:14: error: unknown key 'UnknownKey' {UnknownKey: SomeValue} ^~~~~~~~~ ``` This is unhelpful for a user as it draws them to fix the wrong item.