コード例 #1
0
ファイル: history.ts プロジェクト: hungys/vscode
	public addIfNotPresent(t: T) {
		if (!this._history.contains(t)) {
			this.add(t);
		}
	}
コード例 #2
0
ファイル: history.ts プロジェクト: hungys/vscode
	public add(t: T) {
		this._history.set(t);
		this._onChange();
	}