ADDED gc_core/js/lang_core/gc_rules_graph.js Index: gc_core/js/lang_core/gc_rules_graph.js ================================================================== --- gc_core/js/lang_core/gc_rules_graph.js +++ gc_core/js/lang_core/gc_rules_graph.js @@ -0,0 +1,20 @@ +// Grammar checker graph rules +/*jslint esversion: 6*/ +/*global exports*/ + +"use strict"; + +${string} + + +var gc_rules_graph = { + dAllGraph: ${rules_graphsJS}, + + dRule: ${rules_actionsJS} +} + + +if (typeof(exports) !== 'undefined') { + exports.dAllGraph = gc_rules_graph.dAllGraph; + exports.dRule = gc_rules_graph.dRule; +}