Artifact 3efb8afd5ce9e8965ebfc59b08dc22897d8716d87f766f1db152526fa0d010b4:
- File gc_core/js/lang_core/gc_rules_graph.js — part of check-in [977fd9b488] at 2018-10-11 15:39:24 on branch nodejs — [js] Revert syntax change (oubli) (user: IllusionPerdu, size: 364) [annotate] [blame] [check-ins using] [more...]
// Grammar checker graph rules /* jshint esversion:6, -W097 */ /* 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; }