Bugfix/separate declaration from exposition (#245)

* Separate definition from exposition

* Suppress previous documentation before generating new one

* Restore deleted line

* Set up verbosity to provide details on what's going on
This commit is contained in:
tetedacier
2018-05-29 18:43:02 +02:00
committed by Jeff Schiller
parent 76db126ec7
commit d098dc0914
7 changed files with 17 additions and 6 deletions

View File

@@ -49,7 +49,7 @@ import {
* A value of null is valid for cases where no history recording is required.
* See singleton: HistoryRecordingService.NO_HISTORY
*/
export default class HistoryRecordingService {
class HistoryRecordingService {
constructor (undoManager) {
this.undoManager_ = undoManager;
this.currentBatchCommand_ = null;
@@ -158,3 +158,4 @@ export default class HistoryRecordingService {
* @property {HistoryRecordingService} NO_HISTORY - Singleton that can be passed to functions that record history, but the caller requires that no history be recorded.
*/
HistoryRecordingService.NO_HISTORY = new HistoryRecordingService();
export default HistoryRecordingService;