-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
45 additions
and
12 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
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,26 @@ | ||
'use strict' | ||
|
||
// Internal Symbols | ||
const kAvvio = Symbol('avvio.Boot') | ||
const kIsOnCloseHandler = Symbol('isOnCloseHandler') | ||
const kThenifyDoNotWrap = Symbol('avvio.ThenifyDoNotWrap') | ||
const kUntrackNode = Symbol('avvio.TimeTree.untrackNode') | ||
const kTrackNode = Symbol('avvio.TimeTree.trackNode') | ||
const kGetParent = Symbol('avvio.TimeTree.getParent') | ||
const kGetNode = Symbol('avvio.TimeTree.getNode') | ||
const kAddNode = Symbol('avvio.TimeTree.addNode') | ||
|
||
// Public Symbols | ||
const kPluginMeta = Symbol.for('plugin-meta') | ||
|
||
module.exports = { | ||
kAvvio, | ||
kIsOnCloseHandler, | ||
kThenifyDoNotWrap, | ||
kUntrackNode, | ||
kTrackNode, | ||
kGetParent, | ||
kGetNode, | ||
kAddNode, | ||
kPluginMeta | ||
} |
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