-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
0698d68
commit 3b5c4f5
Showing
1 changed file
with
14 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
#' try to extract the dependency graph from the application modules | ||
#' | ||
const dependency_graph = function() { | ||
let context = .get_context(); | ||
let appList = context$workflow; | ||
let source = []; # name of source node | ||
let source_type = []; # type of the source node | ||
let target = []; # name of the target node | ||
let target_type = []; # type of the target node | ||
let deps_type = []; # the dependency type | ||
|
||
# start to analysis application module and generates the input and outputs | ||
|
||
} | ||
|
||
const dependency_analysis = function(app) { | ||
str(app); | ||
stop(); | ||
} |