mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-31 12:47:46 +00:00
17 lines
280 B
JavaScript
17 lines
280 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
const scope = {
|
||
|
|
parse: {
|
||
|
|
prelude() {
|
||
|
|
return this.createSingleNodeList(
|
||
|
|
this.Scope()
|
||
|
|
);
|
||
|
|
},
|
||
|
|
block(nested = false) {
|
||
|
|
return this.Block(nested);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = scope;
|