marko/compiler/ast/Container.js
Patrick Steele-Idem 069b3e5ba9 Initial commit for marko v3 with htmljs-parser
Work-in-progress. Lots of failing tests.
2015-11-24 14:30:32 -07:00

13 lines
168 B
JavaScript

'use strict';
class Container {
constructor(node) {
this.node = node;
}
toJSON() {
return this.items;
}
}
module.exports = Container;