private string ConvertIdentifier(string name)
 {
     return(NameHelper.ConvertIdentifier(name, this.namingConvention));
 }
Example #2
0
 private static string GetMemberNameForType(Type type)
 {
     // TODO: use JSObject attribute, if it set
     return(NameHelper.ConvertMemberName(type.FullName, NamingConvention.Default));
 }