public static string GetDocumentation(RobotsTxtFieldSymbol field)
        {
            string documentation;
            if (!BuiltInRecordDocumentations.TryGetValue(field.Name, out documentation))
            if (!ExtensionRecordDocumentations.TryGetValue(field.Name, out documentation))
                documentation = null;

            return documentation;
        }
 public static string GetParameterDocumentation(RobotsTxtFieldSymbol field)
 {
     return null;
 }
        public override bool Equals(object obj)
        {
            RobotsTxtFieldSymbol other = obj as RobotsTxtFieldSymbol;

            return(other != null && other.Name == this.Name);
        }