ProAct.OpStore Class
Defined in:
Module: proact-dsl
src/js/dsl/dsl.js:5
Contains ProAct.DSL operation logic definitions.
Every operation has
- sym - A symbol used to identify the right operation in a DSL string or object.
- match method - A method used for identifying the operation, usually it uses the sym
- toOptions - A method which is able to turn a DSL string with the operation, into an actual array of options containing all the functions to be executed by the DSL and their arguments.
- action - The operation logic. The options object of the above method should be passed to it, as well as the targed on which the DSL should be run.