提交 b5956d4e 编写于 作者: S Sandeep Somavarapu

Doc map, fix build error

上级 e1b871e1
......@@ -16,6 +16,10 @@ export interface Entry<K, T> {
value: T;
}
/**
* A simple map to store value by a key object. Key can be any object that has toString() function to get
* string value of the key.
*/
export class SimpleMap<K extends Key, T> {
protected map: { [key: string]: Entry<K, T> };
......
......@@ -34,7 +34,7 @@ exports.collectModules = function(excludes) {
createModuleDescription('vs/workbench/parts/debug/browser/debugViewlet', excludes),
createModuleDescription('vs/workbench/parts/debug/browser/repl', excludes),
createModuleDescription('vs/workbench/parts/errorList/browser/errorList', excludes),
createModuleDescription('vs/workbench/parts/markers/browser/MarkersPanel', excludes),
createModuleDescription('vs/workbench/parts/terminal/electron-browser/terminalPanel', excludes),
......
......@@ -30,6 +30,11 @@ Problems Panel:
☐ Do not expand the file again if the user closes it
☐ Expand a file if there is a new error after it was removed from the panel
Infra Changes:
☐ Introduced a simple map in maps
☐ Fixed toggle class in dom
☐ Fixed getActions to modify the copy
Clean Up:
☐ Messages file - put strings under quotes
☐ Markers handler in quick open contributions
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册