Overview
Comment: | [core][js] add forgotten file <gc_rules_graph.js> to the repo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | core |
Files: | files | file ages | folders |
SHA3-256: |
bd97be5de1e242c83d96508f4562c900 |
User & Date: | olr on 2018-09-19 18:47:22 |
Other Links: | manifest | tags |
Context
2018-09-19
| ||
21:48 | [core][py] useless imports check-in: 0346156a66 user: olr tags: trunk, core | |
18:47 | [core][js] add forgotten file <gc_rules_graph.js> to the repo check-in: bd97be5de1 user: olr tags: trunk, core | |
18:45 | [fx] update version to 1.0 check-in: 8be8853738 user: olr tags: trunk, fx | |
Changes
Added gc_core/js/lang_core/gc_rules_graph.js version [7405261f29].
> > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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; } |