Files

17 lines
269 B
JavaScript
Raw Permalink Normal View History

'use strict';
const layer = {
parse: {
prelude() {
return this.createSingleNodeList(
this.LayerList()
);
},
block() {
return this.Block(false);
}
}
};
module.exports = layer;