Show:
Defined in: src/js/dsl/dsl.js:5
Module: proact-dsl

Contains ProAct.DSL operation logic definitions.

Every operation has

  1. sym - A symbol used to identify the right operation in a DSL string or object.
  2. match method - A method used for identifying the operation, usually it uses the sym
  3. 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.
  4. 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.

Item Index