소스 검색

Update DictionaryNamesGenerator.ts

adiantek 6 년 전
부모
커밋
3a09dd2b2f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/generators/identifier-names-generators/DictionaryNamesGenerator.ts

+ 2 - 2
src/generators/identifier-names-generators/DictionaryNamesGenerator.ts

@@ -77,7 +77,7 @@ export class DictionaryNamesGenerator extends AbstractIdentifierNamesGenerator {
 
     public generate (): string {
         if (this.identifiers.length === 0) {
-            throw new Error("identifiersDictionary is empty");
+            throw new Error("identifiersDictionary is empty. Add more words to identifiersDictionary");
         }
         let itResult: IteratorResult<string> = this.it.next();
         if (itResult.done) {
@@ -87,7 +87,7 @@ export class DictionaryNamesGenerator extends AbstractIdentifierNamesGenerator {
             itResult = this.it.next();
         }
         if (itResult.done) {
-            throw new Error("Too many identifiers, try add more words to identifiersDictionary");
+            throw new Error("Too many identifiers in JS code, add more words to identifiersDictionary");
         }
         const identifierName: string = itResult.value;