layer.cjs 269 B

12345678910111213141516
  1. 'use strict';
  2. const layer = {
  3. parse: {
  4. prelude() {
  5. return this.createSingleNodeList(
  6. this.LayerList()
  7. );
  8. },
  9. block() {
  10. return this.Block(false);
  11. }
  12. }
  13. };
  14. module.exports = layer;