'use strict';
const Noun = require('../noun.js');
const guess_gender = require('./gender.js');
const parse_name = require('./parse_name.js');
class Person extends Noun {
constructor(str, tag) {
super(str);
this.tag = tag;
this.pos['Person'] = true;
this.honourific = null;
this.firstName = null;
this.middleName = null;
this.lastName = null;
this.parse();
}