mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
source control life-cycle
This commit is contained in:
@ -8,7 +8,7 @@ import { basename } from "path";
|
||||
*/
|
||||
export class JSFiddleDocumentContentProvider implements TextDocumentContentProvider, Disposable {
|
||||
private _onDidChange = new EventEmitter<Uri>();
|
||||
private fiddles = new Map<string, Fiddle>();
|
||||
private fiddles = new Map<string, Fiddle>(); // this assumes each fiddle is only open once per workspace
|
||||
|
||||
get onDidChange(): Event<Uri> {
|
||||
return this._onDidChange.event;
|
||||
|
||||
Reference in New Issue
Block a user