public void Append(SemanticResultKey key)
 {
     Helpers.ThrowIfNull(key, "builder");
     AddItem(key.SemanticKeyElement);
 }
 public GrammarBuilder(SemanticResultKey key)
     : this()
 {
     Append(key);
 }