public Builder(string input, FormattedSentence.SimpleToken.TokenFlavor flavor, int startAt)
 {
     this.input   = input;
     this.flavor  = flavor;
     this.startAt = startAt;
 }
 public SimpleToken(FormattedSentence.SimpleToken.TokenFlavor flavor, string value)
 {
     this.flavor = flavor;
     this.value  = value;
 }