-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from gkozlenko/empty-edit-support
Basic support of empty edits
- Loading branch information
Showing
8 changed files
with
140 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
'use strict'; | ||
|
||
const ContainerAtom = require('../container-atom'); | ||
const Utils = require('../utils'); | ||
|
||
const ATOM_CLASSES = { | ||
elst: require('./atom-elst'), | ||
}; | ||
|
||
class AtomEDTS extends ContainerAtom { | ||
|
||
type() { | ||
return Utils.ATOM_EDTS; | ||
} | ||
|
||
availableAtomClasses() { | ||
return ATOM_CLASSES; | ||
} | ||
|
||
} | ||
|
||
module.exports = AtomEDTS; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
'use strict'; | ||
|
||
const SampleTableAtom = require('../sample-table-atom'); | ||
const Utils = require('../utils'); | ||
|
||
class AtomELST extends SampleTableAtom { | ||
|
||
type() { | ||
return Utils.ATOM_ELST; | ||
} | ||
|
||
countMultiplier() { | ||
return 3; | ||
} | ||
|
||
} | ||
|
||
module.exports = AtomELST; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters