affectsConfiguration(section: string, overrides?: IConfigurationOverrides): boolean {
// we have one large string with all keys that have changed. we pad (marker) the section
configurationModels.ts
// and check that either find it padded or before a segment character
const needle = this._marker + section;
const idx = this._affectsConfigStr.indexOf(needle);
if (idx < 0) {
// NOT: (marker + section)
return false;