Simon Diemert
Simon Diemert
Given the dramatic Log4J vulnerability over the last few days, I had two questions: 1) Does Logbook depend on Log4J in anyway? (I think not, but always worth asking...) 2)...
Adds transformation units to GrapeVine as part of directed studies in Summer 2023.
The alternative operator `(|| op1 op2 ...)` does not permit nesting with other operators. For example, given two rules `say-bye` and `say-hello`, the following is a valid operation in GrapeVine...
A very small (unimportant) feature request.... Sometimes rules take up a lot of vertical space when rendered by GraphViz. This can be mildly annoying when incorporating the rule graphs into...
It would be helpful to capture and operate on all of the nodes that match a particular pattern in one rule. This might be analgous to a "for all" statement...
Great library! One suggestion for the README file. Please include examples that setup up the viewbox. I spent about an hour trying to figure out why the most basic examples...
When importing another class dependency, must proceed the `require(...)` statement with the class name. Currently generates: `var RouteController = require('./RouteController');` would like : `var RouteController = require('./RouteController').RouteController;`
If a file exists with the same path and name the generator should ask whether we want to overwrite files. The should also be a configuration option.
The functional class pattern must create the `proc` object before it creates its super class.
Constructors need to be generated for both the functional and prototype class patterns.