'use strict';
const Noun = require('../noun.js');
const Place = class Place extends Noun {
constructor(str, tag) {
super(str);
this.tag = tag;
this.pos['Place'] = true;
}
};
Place.fn = Place.prototype;
module.exports = Place;
'use strict';
const Noun = require('../noun.js');
const Place = class Place extends Noun {
constructor(str, tag) {
super(str);
this.tag = tag;
this.pos['Place'] = true;
}
};
Place.fn = Place.prototype;
module.exports = Place;