marko/compiler/taglib-loader/NestedVariable.js

9 lines
125 B
JavaScript

'use strict';
class NestedVariable {
constructor() {
this.name = null;
}
}
module.exports = NestedVariable;