Fixes #30044: Task contribution should allow extension to supress problem matcher attach message

This commit is contained in:
Dirk Baeumer
2017-07-10 13:09:38 +02:00
parent b92a9b09a8
commit 8efcb4e909
5 changed files with 18 additions and 4 deletions

View File

@@ -352,7 +352,8 @@ namespace Tasks {
group: task.group ? (task.group as types.TaskGroup).id : undefined,
command: command,
isBackground: !!task.isBackground,
problemMatchers: task.problemMatchers.slice()
problemMatchers: task.problemMatchers.slice(),
hasDefinedMatchers: (task as types.Task).hasDefinedMatchers
};
return result;
}