axyseo 2.0.0-alpha.0.0.2 → 2.0.0-alpha.0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/config/diacritics.js +140 -0
- package/build/config/diacritics.js.map +1 -0
- package/build/config/getTransliterations.js +3572 -0
- package/build/config/getTransliterations.js.map +1 -0
- package/build/config/transliterationsWPstyle.js +1424 -0
- package/build/config/transliterationsWPstyle.js.map +1 -0
- package/build/config/wordBoundaries.js +26 -0
- package/build/config/wordBoundaries.js.map +1 -0
- package/build/config/wordBoundariesWithoutPunctuation.js +16 -0
- package/build/config/wordBoundariesWithoutPunctuation.js.map +1 -0
- package/build/const/analysis.js +20 -0
- package/build/const/analysis.js.map +1 -0
- package/build/errors/invalidType.js +22 -0
- package/build/errors/invalidType.js.map +1 -0
- package/build/errors/missingArgument.js +22 -0
- package/build/errors/missingArgument.js.map +1 -0
- package/build/helpers/createMeasurementElement.js +46 -0
- package/build/helpers/createMeasurementElement.js.map +1 -0
- package/build/helpers/domManipulation.js +66 -0
- package/build/helpers/domManipulation.js.map +1 -0
- package/build/helpers/errors.js +26 -0
- package/build/helpers/errors.js.map +1 -0
- package/build/helpers/factory.js +207 -0
- package/build/helpers/factory.js.map +1 -0
- package/build/helpers/formatNumber.js +18 -0
- package/build/helpers/formatNumber.js.map +1 -0
- package/build/helpers/formatString.js +38 -0
- package/build/helpers/formatString.js.map +1 -0
- package/build/helpers/getLanguagesWithWordComplexity.js +15 -0
- package/build/helpers/getLanguagesWithWordComplexity.js.map +1 -0
- package/build/helpers/getLanguagesWithWordFormSupport.js +16 -0
- package/build/helpers/getLanguagesWithWordFormSupport.js.map +1 -0
- package/build/helpers/getWordComplexityConfig.js +27 -0
- package/build/helpers/getWordComplexityConfig.js.map +1 -0
- package/build/helpers/getWordComplexityHelper.js +27 -0
- package/build/helpers/getWordComplexityHelper.js.map +1 -0
- package/build/helpers/htmlEntities.js +21 -0
- package/build/helpers/htmlEntities.js.map +1 -0
- package/build/helpers/includesAny.js +24 -0
- package/build/helpers/includesAny.js.map +1 -0
- package/build/helpers/index.js +179 -0
- package/build/helpers/index.js.map +1 -0
- package/build/helpers/shortlinker/Shortlinker.js +79 -0
- package/build/helpers/shortlinker/Shortlinker.js.map +1 -0
- package/build/helpers/shortlinker/index.js +17 -0
- package/build/helpers/shortlinker/index.js.map +1 -0
- package/build/helpers/shortlinker/singleton.js +76 -0
- package/build/helpers/shortlinker/singleton.js.map +1 -0
- package/build/helpers/types.js +37 -0
- package/build/helpers/types.js.map +1 -0
- package/build/index.js +111 -0
- package/build/index.js.map +1 -0
- package/build/languageProcessing/AbstractResearcher.js +348 -0
- package/build/languageProcessing/AbstractResearcher.js.map +1 -0
- package/build/languageProcessing/helpers/highlighting/getMarkingsInSentence.js +123 -0
- package/build/languageProcessing/helpers/highlighting/getMarkingsInSentence.js.map +1 -0
- package/build/languageProcessing/helpers/html/getFieldsToMark.js +37 -0
- package/build/languageProcessing/helpers/html/getFieldsToMark.js.map +1 -0
- package/build/languageProcessing/helpers/html/getSubheadingTexts.js +47 -0
- package/build/languageProcessing/helpers/html/getSubheadingTexts.js.map +1 -0
- package/build/languageProcessing/helpers/html/getSubheadings.js +92 -0
- package/build/languageProcessing/helpers/html/getSubheadings.js.map +1 -0
- package/build/languageProcessing/helpers/html/html.js +152 -0
- package/build/languageProcessing/helpers/html/html.js.map +1 -0
- package/build/languageProcessing/helpers/html/htmlParser.js +132 -0
- package/build/languageProcessing/helpers/html/htmlParser.js.map +1 -0
- package/build/languageProcessing/helpers/html/matchParagraphs.js +61 -0
- package/build/languageProcessing/helpers/html/matchParagraphs.js.map +1 -0
- package/build/languageProcessing/helpers/html/normalizeHTML.js +23 -0
- package/build/languageProcessing/helpers/html/normalizeHTML.js.map +1 -0
- package/build/languageProcessing/helpers/image/getAltAttribute.js +24 -0
- package/build/languageProcessing/helpers/image/getAltAttribute.js.map +1 -0
- package/build/languageProcessing/helpers/image/getImagesInTree.js +21 -0
- package/build/languageProcessing/helpers/image/getImagesInTree.js.map +1 -0
- package/build/languageProcessing/helpers/image/imageInText.js +26 -0
- package/build/languageProcessing/helpers/image/imageInText.js.map +1 -0
- package/build/languageProcessing/helpers/index.js +41 -0
- package/build/languageProcessing/helpers/index.js.map +1 -0
- package/build/languageProcessing/helpers/language/getLanguage.js +16 -0
- package/build/languageProcessing/helpers/language/getLanguage.js.map +1 -0
- package/build/languageProcessing/helpers/link/checkNofollow.js +42 -0
- package/build/languageProcessing/helpers/link/checkNofollow.js.map +1 -0
- package/build/languageProcessing/helpers/link/getAnchorsFromText.js +37 -0
- package/build/languageProcessing/helpers/link/getAnchorsFromText.js.map +1 -0
- package/build/languageProcessing/helpers/link/getLinkType.js +36 -0
- package/build/languageProcessing/helpers/link/getLinkType.js.map +1 -0
- package/build/languageProcessing/helpers/match/findKeywordFormsInString.js +101 -0
- package/build/languageProcessing/helpers/match/findKeywordFormsInString.js.map +1 -0
- package/build/languageProcessing/helpers/match/isDoubleQuoted.js +19 -0
- package/build/languageProcessing/helpers/match/isDoubleQuoted.js.map +1 -0
- package/build/languageProcessing/helpers/match/matchTextWithArray.js +41 -0
- package/build/languageProcessing/helpers/match/matchTextWithArray.js.map +1 -0
- package/build/languageProcessing/helpers/match/matchTextWithTransliteration.js +58 -0
- package/build/languageProcessing/helpers/match/matchTextWithTransliteration.js.map +1 -0
- package/build/languageProcessing/helpers/match/matchTextWithWord.js +47 -0
- package/build/languageProcessing/helpers/match/matchTextWithWord.js.map +1 -0
- package/build/languageProcessing/helpers/match/matchWordFormsWithSentence.js +162 -0
- package/build/languageProcessing/helpers/match/matchWordFormsWithSentence.js.map +1 -0
- package/build/languageProcessing/helpers/match/processExactMatchRequest.js +29 -0
- package/build/languageProcessing/helpers/match/processExactMatchRequest.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/baseStemmer.js +18 -0
- package/build/languageProcessing/helpers/morphology/baseStemmer.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/buildFormRule.js +26 -0
- package/build/languageProcessing/helpers/morphology/buildFormRule.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/buildTopicStems.js +164 -0
- package/build/languageProcessing/helpers/morphology/buildTopicStems.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/createRulesFromArrays.js +48 -0
- package/build/languageProcessing/helpers/morphology/createRulesFromArrays.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/exceptionListHelpers.js +71 -0
- package/build/languageProcessing/helpers/morphology/exceptionListHelpers.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/findMatchingEndingInArray.js +29 -0
- package/build/languageProcessing/helpers/morphology/findMatchingEndingInArray.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/flattenSortLength.js +19 -0
- package/build/languageProcessing/helpers/morphology/flattenSortLength.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/getAllWordsFromPaper.js +35 -0
- package/build/languageProcessing/helpers/morphology/getAllWordsFromPaper.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/regexHelpers.js +53 -0
- package/build/languageProcessing/helpers/morphology/regexHelpers.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/stemHelpers.js +46 -0
- package/build/languageProcessing/helpers/morphology/stemHelpers.js.map +1 -0
- package/build/languageProcessing/helpers/morphology/stemPrefixedFunctionWords.js +39 -0
- package/build/languageProcessing/helpers/morphology/stemPrefixedFunctionWords.js.map +1 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/directPrecedenceException.js +42 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/directPrecedenceException.js.map +1 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/getClausesSplitOnStopWords.js +116 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/getClausesSplitOnStopWords.js.map +1 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/nonDirectParticiplePrecedenceException.js +45 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/nonDirectParticiplePrecedenceException.js.map +1 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/getClauses.js +220 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/getClauses.js.map +1 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/getIndicesWithRegex.js +27 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/getIndicesWithRegex.js.map +1 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/matchRegularParticiples.js +28 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/matchRegularParticiples.js.map +1 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/precedenceException.js +46 -0
- package/build/languageProcessing/helpers/passiveVoice/periphrastic/precedenceException.js.map +1 -0
- package/build/languageProcessing/helpers/prominentWords/determineProminentWords.js +203 -0
- package/build/languageProcessing/helpers/prominentWords/determineProminentWords.js.map +1 -0
- package/build/languageProcessing/helpers/regex/createRegexFromArray.js +38 -0
- package/build/languageProcessing/helpers/regex/createRegexFromArray.js.map +1 -0
- package/build/languageProcessing/helpers/regex/createRegexFromDoubleArray.js +39 -0
- package/build/languageProcessing/helpers/regex/createRegexFromDoubleArray.js.map +1 -0
- package/build/languageProcessing/helpers/regex/createWordRegex.js +34 -0
- package/build/languageProcessing/helpers/regex/createWordRegex.js.map +1 -0
- package/build/languageProcessing/helpers/regex/matchStringWithRegex.js +24 -0
- package/build/languageProcessing/helpers/regex/matchStringWithRegex.js.map +1 -0
- package/build/languageProcessing/helpers/regex/searchAndReplaceWithOneRegex.js +21 -0
- package/build/languageProcessing/helpers/regex/searchAndReplaceWithOneRegex.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/doubleQuotes.js +19 -0
- package/build/languageProcessing/helpers/sanitize/doubleQuotes.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/filterShortcodesFromTree.js +131 -0
- package/build/languageProcessing/helpers/sanitize/filterShortcodesFromTree.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/mergeListItems.js +30 -0
- package/build/languageProcessing/helpers/sanitize/mergeListItems.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/parseSynonyms.js +24 -0
- package/build/languageProcessing/helpers/sanitize/parseSynonyms.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/quotes.js +47 -0
- package/build/languageProcessing/helpers/sanitize/quotes.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/removeEmailAddresses.js +19 -0
- package/build/languageProcessing/helpers/sanitize/removeEmailAddresses.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/removePunctuation.js +64 -0
- package/build/languageProcessing/helpers/sanitize/removePunctuation.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/removePunctuationExceptQuotes.js +24 -0
- package/build/languageProcessing/helpers/sanitize/removePunctuationExceptQuotes.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/removeSentenceTerminators.js +20 -0
- package/build/languageProcessing/helpers/sanitize/removeSentenceTerminators.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/removeURLs.js +19 -0
- package/build/languageProcessing/helpers/sanitize/removeURLs.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/sanitizeLineBreakTag.js +18 -0
- package/build/languageProcessing/helpers/sanitize/sanitizeLineBreakTag.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/sanitizeString.js +23 -0
- package/build/languageProcessing/helpers/sanitize/sanitizeString.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/stripHTMLTags.js +59 -0
- package/build/languageProcessing/helpers/sanitize/stripHTMLTags.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/stripNonTextTags.js +22 -0
- package/build/languageProcessing/helpers/sanitize/stripNonTextTags.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/stripNumbers.js +26 -0
- package/build/languageProcessing/helpers/sanitize/stripNumbers.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/stripSpaces.js +29 -0
- package/build/languageProcessing/helpers/sanitize/stripSpaces.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/stripWordBoundaries.js +65 -0
- package/build/languageProcessing/helpers/sanitize/stripWordBoundaries.js.map +1 -0
- package/build/languageProcessing/helpers/sanitize/unifyWhitespace.js +64 -0
- package/build/languageProcessing/helpers/sanitize/unifyWhitespace.js.map +1 -0
- package/build/languageProcessing/helpers/sentence/SentenceTokenizer.js +565 -0
- package/build/languageProcessing/helpers/sentence/SentenceTokenizer.js.map +1 -0
- package/build/languageProcessing/helpers/sentence/countSentences.js +27 -0
- package/build/languageProcessing/helpers/sentence/countSentences.js.map +1 -0
- package/build/languageProcessing/helpers/sentence/getSentences.js +71 -0
- package/build/languageProcessing/helpers/sentence/getSentences.js.map +1 -0
- package/build/languageProcessing/helpers/sentence/getSentencesFromTree.js +60 -0
- package/build/languageProcessing/helpers/sentence/getSentencesFromTree.js.map +1 -0
- package/build/languageProcessing/helpers/sentence/memoizedSentenceTokenizer.js +37 -0
- package/build/languageProcessing/helpers/sentence/memoizedSentenceTokenizer.js.map +1 -0
- package/build/languageProcessing/helpers/sentence/sentencesLength.js +37 -0
- package/build/languageProcessing/helpers/sentence/sentencesLength.js.map +1 -0
- package/build/languageProcessing/helpers/syllables/DeviationFragment.js +108 -0
- package/build/languageProcessing/helpers/syllables/DeviationFragment.js.map +1 -0
- package/build/languageProcessing/helpers/syllables/countSyllables.js +173 -0
- package/build/languageProcessing/helpers/syllables/countSyllables.js.map +1 -0
- package/build/languageProcessing/helpers/syllables/syllableCountIterator.js +63 -0
- package/build/languageProcessing/helpers/syllables/syllableCountIterator.js.map +1 -0
- package/build/languageProcessing/helpers/syllables/syllableCountStep.js +75 -0
- package/build/languageProcessing/helpers/syllables/syllableCountStep.js.map +1 -0
- package/build/languageProcessing/helpers/transform/transformWordsWithHyphens.js +24 -0
- package/build/languageProcessing/helpers/transform/transformWordsWithHyphens.js.map +1 -0
- package/build/languageProcessing/helpers/transliterate/replaceDiacritics.js +25 -0
- package/build/languageProcessing/helpers/transliterate/replaceDiacritics.js.map +1 -0
- package/build/languageProcessing/helpers/transliterate/specialCharacterMappings.js +194 -0
- package/build/languageProcessing/helpers/transliterate/specialCharacterMappings.js.map +1 -0
- package/build/languageProcessing/helpers/transliterate/transliterate.js +24 -0
- package/build/languageProcessing/helpers/transliterate/transliterate.js.map +1 -0
- package/build/languageProcessing/helpers/transliterate/transliterateWPstyle.js +25 -0
- package/build/languageProcessing/helpers/transliterate/transliterateWPstyle.js.map +1 -0
- package/build/languageProcessing/helpers/url/parseSlug.js +17 -0
- package/build/languageProcessing/helpers/url/parseSlug.js.map +1 -0
- package/build/languageProcessing/helpers/url/url.js +174 -0
- package/build/languageProcessing/helpers/url/url.js.map +1 -0
- package/build/languageProcessing/helpers/word/addWordboundary.js +41 -0
- package/build/languageProcessing/helpers/word/addWordboundary.js.map +1 -0
- package/build/languageProcessing/helpers/word/areWordsInSentence.js +23 -0
- package/build/languageProcessing/helpers/word/areWordsInSentence.js.map +1 -0
- package/build/languageProcessing/helpers/word/countMetaDescriptionLength.js +24 -0
- package/build/languageProcessing/helpers/word/countMetaDescriptionLength.js.map +1 -0
- package/build/languageProcessing/helpers/word/countWords.js +21 -0
- package/build/languageProcessing/helpers/word/countWords.js.map +1 -0
- package/build/languageProcessing/helpers/word/createPunctuationTokens.js +46 -0
- package/build/languageProcessing/helpers/word/createPunctuationTokens.js.map +1 -0
- package/build/languageProcessing/helpers/word/filterWordsFromArray.js +21 -0
- package/build/languageProcessing/helpers/word/filterWordsFromArray.js.map +1 -0
- package/build/languageProcessing/helpers/word/followsIndex.js +29 -0
- package/build/languageProcessing/helpers/word/followsIndex.js.map +1 -0
- package/build/languageProcessing/helpers/word/getAllWordsFromTree.js +30 -0
- package/build/languageProcessing/helpers/word/getAllWordsFromTree.js.map +1 -0
- package/build/languageProcessing/helpers/word/getWords.js +47 -0
- package/build/languageProcessing/helpers/word/getWords.js.map +1 -0
- package/build/languageProcessing/helpers/word/includesIndex.js +34 -0
- package/build/languageProcessing/helpers/word/includesIndex.js.map +1 -0
- package/build/languageProcessing/helpers/word/indices.js +141 -0
- package/build/languageProcessing/helpers/word/indices.js.map +1 -0
- package/build/languageProcessing/helpers/word/markWordsInSentences.js +189 -0
- package/build/languageProcessing/helpers/word/markWordsInSentences.js.map +1 -0
- package/build/languageProcessing/helpers/word/matchWordInSentence.js +63 -0
- package/build/languageProcessing/helpers/word/matchWordInSentence.js.map +1 -0
- package/build/languageProcessing/helpers/word/splitIntoTokens.js +52 -0
- package/build/languageProcessing/helpers/word/splitIntoTokens.js.map +1 -0
- package/build/languageProcessing/index.js +283 -0
- package/build/languageProcessing/index.js.map +1 -0
- package/build/languageProcessing/languages/_default/Researcher.js +43 -0
- package/build/languageProcessing/languages/_default/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/_default/helpers/getStemmer.js +20 -0
- package/build/languageProcessing/languages/_default/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/ar/Researcher.js +54 -0
- package/build/languageProcessing/languages/ar/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/ar/config/firstWordExceptions.js +18 -0
- package/build/languageProcessing/languages/ar/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/ar/config/functionWords.js +80 -0
- package/build/languageProcessing/languages/ar/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/ar/config/internal/passiveVerbsWithLongVowel.js +13 -0
- package/build/languageProcessing/languages/ar/config/internal/passiveVerbsWithLongVowel.js.map +1 -0
- package/build/languageProcessing/languages/ar/config/prefixedFunctionWords.js +11 -0
- package/build/languageProcessing/languages/ar/config/prefixedFunctionWords.js.map +1 -0
- package/build/languageProcessing/languages/ar/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/ar/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ar/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/ar/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ar/helpers/createBasicWordForms.js +38 -0
- package/build/languageProcessing/languages/ar/helpers/createBasicWordForms.js.map +1 -0
- package/build/languageProcessing/languages/ar/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/ar/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/ar/helpers/internal/stem.js +635 -0
- package/build/languageProcessing/languages/ar/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/ar/helpers/isPassiveSentence.js +41 -0
- package/build/languageProcessing/languages/ar/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/ca/Researcher.js +52 -0
- package/build/languageProcessing/languages/ca/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/ca/config/sentenceLength.js +10 -0
- package/build/languageProcessing/languages/ca/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/ca/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/ca/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ca/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/ca/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ca/helpers/getStemmer.js +20 -0
- package/build/languageProcessing/languages/ca/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/cs/Researcher.js +52 -0
- package/build/languageProcessing/languages/cs/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/cs/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/cs/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/cs/config/functionWords.js +50 -0
- package/build/languageProcessing/languages/cs/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/cs/config/internal/passiveVoiceAuxiliaries.js +10 -0
- package/build/languageProcessing/languages/cs/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/cs/config/internal/passiveVoiceEndings.js +14 -0
- package/build/languageProcessing/languages/cs/config/internal/passiveVoiceEndings.js.map +1 -0
- package/build/languageProcessing/languages/cs/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/cs/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/cs/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/cs/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/cs/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/cs/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/cs/helpers/getClauses.js +35 -0
- package/build/languageProcessing/languages/cs/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/cs/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/cs/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/cs/helpers/internal/getParticiples.js +24 -0
- package/build/languageProcessing/languages/cs/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/cs/helpers/internal/stem.js +341 -0
- package/build/languageProcessing/languages/cs/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/cs/values/Clause.js +45 -0
- package/build/languageProcessing/languages/cs/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/de/Researcher.js +61 -0
- package/build/languageProcessing/languages/de/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/de/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/de/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/de/config/functionWords.js +103 -0
- package/build/languageProcessing/languages/de/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/de/config/internal/exceptionsParticiplesActive.js +13 -0
- package/build/languageProcessing/languages/de/config/internal/exceptionsParticiplesActive.js.map +1 -0
- package/build/languageProcessing/languages/de/config/internal/passiveVoiceAuxiliaries.js +29 -0
- package/build/languageProcessing/languages/de/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/de/config/internal/passiveVoiceIrregulars.js +15 -0
- package/build/languageProcessing/languages/de/config/internal/passiveVoiceIrregulars.js.map +1 -0
- package/build/languageProcessing/languages/de/config/internal/passiveVoiceRegex.js +78 -0
- package/build/languageProcessing/languages/de/config/internal/passiveVoiceRegex.js.map +1 -0
- package/build/languageProcessing/languages/de/config/keyphraseLength.js +17 -0
- package/build/languageProcessing/languages/de/config/keyphraseLength.js.map +1 -0
- package/build/languageProcessing/languages/de/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/de/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/de/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/de/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/de/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/de/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/de/config/wordComplexity.js +11 -0
- package/build/languageProcessing/languages/de/config/wordComplexity.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/de/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/checkIfWordIsComplex.js +47 -0
- package/build/languageProcessing/languages/de/helpers/checkIfWordIsComplex.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/checkIfWordIsFunction.js +20 -0
- package/build/languageProcessing/languages/de/helpers/checkIfWordIsFunction.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/getClauses.js +34 -0
- package/build/languageProcessing/languages/de/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/de/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/internal/SentenceTokenizer.js +38 -0
- package/build/languageProcessing/languages/de/helpers/internal/SentenceTokenizer.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/internal/detectAndStemRegularParticiple.js +118 -0
- package/build/languageProcessing/languages/de/helpers/internal/detectAndStemRegularParticiple.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/internal/determineStem.js +113 -0
- package/build/languageProcessing/languages/de/helpers/internal/determineStem.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/internal/getParticiples.js +39 -0
- package/build/languageProcessing/languages/de/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/internal/stem.js +222 -0
- package/build/languageProcessing/languages/de/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/de/helpers/memoizedSentenceTokenizer.js +37 -0
- package/build/languageProcessing/languages/de/helpers/memoizedSentenceTokenizer.js.map +1 -0
- package/build/languageProcessing/languages/de/values/Clause.js +91 -0
- package/build/languageProcessing/languages/de/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/el/Researcher.js +55 -0
- package/build/languageProcessing/languages/el/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/el/config/firstWordExceptions.js +33 -0
- package/build/languageProcessing/languages/el/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/el/config/functionWords.js +47 -0
- package/build/languageProcessing/languages/el/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/el/config/internal/auxiliaries.js +12 -0
- package/build/languageProcessing/languages/el/config/internal/auxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/el/config/internal/morphologicalPassiveSuffixes.js +8 -0
- package/build/languageProcessing/languages/el/config/internal/morphologicalPassiveSuffixes.js.map +1 -0
- package/build/languageProcessing/languages/el/config/internal/nonPassiveVerbStems.js +22 -0
- package/build/languageProcessing/languages/el/config/internal/nonPassiveVerbStems.js.map +1 -0
- package/build/languageProcessing/languages/el/config/stopWords.js +13 -0
- package/build/languageProcessing/languages/el/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/el/config/transitionWords.js +18 -0
- package/build/languageProcessing/languages/el/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/el/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/el/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/el/helpers/getClauses.js +34 -0
- package/build/languageProcessing/languages/el/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/el/helpers/getStemmer.js +29 -0
- package/build/languageProcessing/languages/el/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/el/helpers/internal/getParticiples.js +24 -0
- package/build/languageProcessing/languages/el/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/el/helpers/internal/stem.js +347 -0
- package/build/languageProcessing/languages/el/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/el/helpers/isPassiveSentence.js +43 -0
- package/build/languageProcessing/languages/el/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/el/values/Clause.js +46 -0
- package/build/languageProcessing/languages/el/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/en/Researcher.js +55 -0
- package/build/languageProcessing/languages/en/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/en/config/abbreviations.js +16 -0
- package/build/languageProcessing/languages/en/config/abbreviations.js.map +1 -0
- package/build/languageProcessing/languages/en/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/en/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/en/config/functionWords.js +110 -0
- package/build/languageProcessing/languages/en/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/en/config/internal/passiveVoiceAuxiliaries.js +15 -0
- package/build/languageProcessing/languages/en/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/en/config/internal/passiveVoiceIrregulars.js +15 -0
- package/build/languageProcessing/languages/en/config/internal/passiveVoiceIrregulars.js.map +1 -0
- package/build/languageProcessing/languages/en/config/internal/passiveVoiceNonVerbEndingEd.js +13 -0
- package/build/languageProcessing/languages/en/config/internal/passiveVoiceNonVerbEndingEd.js.map +1 -0
- package/build/languageProcessing/languages/en/config/regularParticiplesRegex.js +12 -0
- package/build/languageProcessing/languages/en/config/regularParticiplesRegex.js.map +1 -0
- package/build/languageProcessing/languages/en/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/en/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/en/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/en/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/en/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/en/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/en/config/wordComplexity.js +12 -0
- package/build/languageProcessing/languages/en/config/wordComplexity.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/en/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/checkIfWordIsComplex.js +49 -0
- package/build/languageProcessing/languages/en/helpers/checkIfWordIsComplex.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/getClauses.js +58 -0
- package/build/languageProcessing/languages/en/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/en/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/internal/determineStem.js +161 -0
- package/build/languageProcessing/languages/en/helpers/internal/determineStem.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/internal/getAdjectiveStem.js +149 -0
- package/build/languageProcessing/languages/en/helpers/internal/getAdjectiveStem.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/internal/getParticiples.js +33 -0
- package/build/languageProcessing/languages/en/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/en/helpers/internal/getVerbStem.js +228 -0
- package/build/languageProcessing/languages/en/helpers/internal/getVerbStem.js.map +1 -0
- package/build/languageProcessing/languages/en/values/Clause.js +68 -0
- package/build/languageProcessing/languages/en/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/es/Researcher.js +57 -0
- package/build/languageProcessing/languages/es/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/es/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/es/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/es/config/functionWords.js +111 -0
- package/build/languageProcessing/languages/es/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/es/config/internal/passiveVoiceAuxiliaries.js +12 -0
- package/build/languageProcessing/languages/es/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/es/config/internal/passiveVoiceParticiples.js +13 -0
- package/build/languageProcessing/languages/es/config/internal/passiveVoiceParticiples.js.map +1 -0
- package/build/languageProcessing/languages/es/config/sentenceLength.js +10 -0
- package/build/languageProcessing/languages/es/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/es/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/es/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/es/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/es/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/es/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/es/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/es/config/wordComplexity.js +11 -0
- package/build/languageProcessing/languages/es/config/wordComplexity.js.map +1 -0
- package/build/languageProcessing/languages/es/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/es/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/es/helpers/checkIfWordIsComplex.js +59 -0
- package/build/languageProcessing/languages/es/helpers/checkIfWordIsComplex.js.map +1 -0
- package/build/languageProcessing/languages/es/helpers/getClauses.js +38 -0
- package/build/languageProcessing/languages/es/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/es/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/es/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/es/helpers/internal/checkVerbStemModifications.js +40 -0
- package/build/languageProcessing/languages/es/helpers/internal/checkVerbStemModifications.js.map +1 -0
- package/build/languageProcessing/languages/es/helpers/internal/getParticiples.js +43 -0
- package/build/languageProcessing/languages/es/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/es/helpers/internal/stem.js +574 -0
- package/build/languageProcessing/languages/es/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/es/values/Clause.js +49 -0
- package/build/languageProcessing/languages/es/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/fa/Researcher.js +56 -0
- package/build/languageProcessing/languages/fa/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/fa/config/firstWordExceptions.js +18 -0
- package/build/languageProcessing/languages/fa/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/fa/config/functionWords.js +41 -0
- package/build/languageProcessing/languages/fa/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/fa/config/internal/participles.js +14 -0
- package/build/languageProcessing/languages/fa/config/internal/participles.js.map +1 -0
- package/build/languageProcessing/languages/fa/config/sentenceLength.js +10 -0
- package/build/languageProcessing/languages/fa/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/fa/config/transitionWords.js +18 -0
- package/build/languageProcessing/languages/fa/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/fa/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/fa/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/fa/helpers/createBasicWordForms.js +99 -0
- package/build/languageProcessing/languages/fa/helpers/createBasicWordForms.js.map +1 -0
- package/build/languageProcessing/languages/fa/helpers/getStemmer.js +22 -0
- package/build/languageProcessing/languages/fa/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/fa/helpers/isPassiveSentence.js +22 -0
- package/build/languageProcessing/languages/fa/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/fr/Researcher.js +55 -0
- package/build/languageProcessing/languages/fr/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/fr/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/functionWords.js +144 -0
- package/build/languageProcessing/languages/fr/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/internal/exceptionsParticiplesActive.js +22 -0
- package/build/languageProcessing/languages/fr/config/internal/exceptionsParticiplesActive.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/internal/passiveVoiceAuxiliaries.js +12 -0
- package/build/languageProcessing/languages/fr/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/internal/passiveVoiceIrregulars.js +27 -0
- package/build/languageProcessing/languages/fr/config/internal/passiveVoiceIrregulars.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/fr/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/fr/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/fr/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/fr/config/wordComplexity.js +11 -0
- package/build/languageProcessing/languages/fr/config/wordComplexity.js.map +1 -0
- package/build/languageProcessing/languages/fr/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/fr/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/fr/helpers/checkIfWordIsComplex.js +72 -0
- package/build/languageProcessing/languages/fr/helpers/checkIfWordIsComplex.js.map +1 -0
- package/build/languageProcessing/languages/fr/helpers/getClauses.js +42 -0
- package/build/languageProcessing/languages/fr/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/fr/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/fr/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/fr/helpers/internal/getParticiples.js +71 -0
- package/build/languageProcessing/languages/fr/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/fr/helpers/internal/stem.js +544 -0
- package/build/languageProcessing/languages/fr/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/fr/values/Clause.js +90 -0
- package/build/languageProcessing/languages/fr/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/he/Researcher.js +59 -0
- package/build/languageProcessing/languages/he/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/he/config/firstWordExceptions.js +18 -0
- package/build/languageProcessing/languages/he/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/he/config/functionWords.js +504 -0
- package/build/languageProcessing/languages/he/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/he/config/internal/regularRootsHufal.js +13 -0
- package/build/languageProcessing/languages/he/config/internal/regularRootsHufal.js.map +1 -0
- package/build/languageProcessing/languages/he/config/internal/regularRootsNifal.js +13 -0
- package/build/languageProcessing/languages/he/config/internal/regularRootsNifal.js.map +1 -0
- package/build/languageProcessing/languages/he/config/internal/regularRootsPual.js +13 -0
- package/build/languageProcessing/languages/he/config/internal/regularRootsPual.js.map +1 -0
- package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsHufal.js +15 -0
- package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsHufal.js.map +1 -0
- package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsNifal.js +15 -0
- package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsNifal.js.map +1 -0
- package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsPual.js +15 -0
- package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsPual.js.map +1 -0
- package/build/languageProcessing/languages/he/config/prefixedFunctionWords.js +9 -0
- package/build/languageProcessing/languages/he/config/prefixedFunctionWords.js.map +1 -0
- package/build/languageProcessing/languages/he/config/sentenceLength.js +10 -0
- package/build/languageProcessing/languages/he/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/he/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/he/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/he/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/he/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/he/helpers/createBasicWordForms.js +40 -0
- package/build/languageProcessing/languages/he/helpers/createBasicWordForms.js.map +1 -0
- package/build/languageProcessing/languages/he/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/he/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/he/helpers/internal/stem.js +59 -0
- package/build/languageProcessing/languages/he/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/he/helpers/isPassiveSentence.js +122 -0
- package/build/languageProcessing/languages/he/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/he/helpers/stem.js +59 -0
- package/build/languageProcessing/languages/he/helpers/stem.js.map +1 -0
- package/build/languageProcessing/languages/hu/Researcher.js +57 -0
- package/build/languageProcessing/languages/hu/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/firstWordExceptions.js +32 -0
- package/build/languageProcessing/languages/hu/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/functionWords.js +52 -0
- package/build/languageProcessing/languages/hu/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/internal/auxiliaries.js +20 -0
- package/build/languageProcessing/languages/hu/config/internal/auxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/internal/morphologicalPassiveAffixes.js +12 -0
- package/build/languageProcessing/languages/hu/config/internal/morphologicalPassiveAffixes.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/internal/nonPassivesInVaAndVe.js +25 -0
- package/build/languageProcessing/languages/hu/config/internal/nonPassivesInVaAndVe.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/internal/odikVerbs.js +25 -0
- package/build/languageProcessing/languages/hu/config/internal/odikVerbs.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/internal/participles.js +25 -0
- package/build/languageProcessing/languages/hu/config/internal/participles.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/stopWords.js +29 -0
- package/build/languageProcessing/languages/hu/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/hu/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/hu/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/hu/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/hu/helpers/getClauses.js +34 -0
- package/build/languageProcessing/languages/hu/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/hu/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/hu/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/hu/helpers/internal/getParticiples.js +25 -0
- package/build/languageProcessing/languages/hu/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/hu/helpers/internal/stem.js +390 -0
- package/build/languageProcessing/languages/hu/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/hu/helpers/isPassiveSentence.js +53 -0
- package/build/languageProcessing/languages/hu/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/hu/values/Clause.js +47 -0
- package/build/languageProcessing/languages/hu/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/id/Researcher.js +55 -0
- package/build/languageProcessing/languages/id/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/id/config/firstWordExceptions.js +18 -0
- package/build/languageProcessing/languages/id/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/id/config/functionWords.js +109 -0
- package/build/languageProcessing/languages/id/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/id/config/internal/nonPassiveVerbsStartingDi.js +13 -0
- package/build/languageProcessing/languages/id/config/internal/nonPassiveVerbsStartingDi.js.map +1 -0
- package/build/languageProcessing/languages/id/config/transitionWords.js +30 -0
- package/build/languageProcessing/languages/id/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/id/config/twoPartTransitionWords.js +14 -0
- package/build/languageProcessing/languages/id/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/id/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/id/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/id/helpers/internal/stem.js +394 -0
- package/build/languageProcessing/languages/id/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/id/helpers/internal/stemHelpers.js +86 -0
- package/build/languageProcessing/languages/id/helpers/internal/stemHelpers.js.map +1 -0
- package/build/languageProcessing/languages/id/helpers/isPassiveSentence.js +47 -0
- package/build/languageProcessing/languages/id/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/id/helpers/splitIntoTokensCustom.js +53 -0
- package/build/languageProcessing/languages/id/helpers/splitIntoTokensCustom.js.map +1 -0
- package/build/languageProcessing/languages/it/Researcher.js +57 -0
- package/build/languageProcessing/languages/it/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/it/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/it/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/it/config/functionWords.js +141 -0
- package/build/languageProcessing/languages/it/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/it/config/internal/passiveVoiceAuxiliaries.js +12 -0
- package/build/languageProcessing/languages/it/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/it/config/internal/passiveVoiceParticiples.js +13 -0
- package/build/languageProcessing/languages/it/config/internal/passiveVoiceParticiples.js.map +1 -0
- package/build/languageProcessing/languages/it/config/sentenceLength.js +10 -0
- package/build/languageProcessing/languages/it/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/it/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/it/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/it/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/it/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/it/config/twoPartTransitionWords.js +12 -0
- package/build/languageProcessing/languages/it/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/it/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/it/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/it/helpers/getClauses.js +40 -0
- package/build/languageProcessing/languages/it/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/it/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/it/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/it/helpers/internal/getParticiples.js +42 -0
- package/build/languageProcessing/languages/it/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/it/helpers/internal/stem.js +408 -0
- package/build/languageProcessing/languages/it/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/it/values/Clause.js +51 -0
- package/build/languageProcessing/languages/it/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/ja/Researcher.js +94 -0
- package/build/languageProcessing/languages/ja/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/assessmentApplicabilityCharacterCount.js +11 -0
- package/build/languageProcessing/languages/ja/config/assessmentApplicabilityCharacterCount.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/firstWordExceptions.js +14 -0
- package/build/languageProcessing/languages/ja/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/functionWords.js +8 -0
- package/build/languageProcessing/languages/ja/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/keyphraseLength.js +23 -0
- package/build/languageProcessing/languages/ja/config/keyphraseLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/metaDescriptionLength.js +11 -0
- package/build/languageProcessing/languages/ja/config/metaDescriptionLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/paragraphLength.js +17 -0
- package/build/languageProcessing/languages/ja/config/paragraphLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/sentenceLength.js +11 -0
- package/build/languageProcessing/languages/ja/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/subheadingsTooLong.js +25 -0
- package/build/languageProcessing/languages/ja/config/subheadingsTooLong.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/textLength.js +54 -0
- package/build/languageProcessing/languages/ja/config/textLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/topicLength.js +12 -0
- package/build/languageProcessing/languages/ja/config/topicLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/config/transitionWords.js +9 -0
- package/build/languageProcessing/languages/ja/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ja/customResearches/findKeyphraseInSEOTitle.js +102 -0
- package/build/languageProcessing/languages/ja/customResearches/findKeyphraseInSEOTitle.js.map +1 -0
- package/build/languageProcessing/languages/ja/customResearches/getKeyphraseLength.js +25 -0
- package/build/languageProcessing/languages/ja/customResearches/getKeyphraseLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/customResearches/getWordForms.js +57 -0
- package/build/languageProcessing/languages/ja/customResearches/getWordForms.js.map +1 -0
- package/build/languageProcessing/languages/ja/customResearches/textLength.js +31 -0
- package/build/languageProcessing/languages/ja/customResearches/textLength.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/countCharacters.js +27 -0
- package/build/languageProcessing/languages/ja/helpers/countCharacters.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/customGetStemmer.js +28 -0
- package/build/languageProcessing/languages/ja/helpers/customGetStemmer.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/getContentWords.js +27 -0
- package/build/languageProcessing/languages/ja/helpers/getContentWords.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/getWords.js +38 -0
- package/build/languageProcessing/languages/ja/helpers/getWords.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/internal/SentenceTokenizer.js +99 -0
- package/build/languageProcessing/languages/ja/helpers/internal/SentenceTokenizer.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/internal/createWordForms.js +70 -0
- package/build/languageProcessing/languages/ja/helpers/internal/createWordForms.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/internal/determineStem.js +23 -0
- package/build/languageProcessing/languages/ja/helpers/internal/determineStem.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/matchTextWithWord.js +58 -0
- package/build/languageProcessing/languages/ja/helpers/matchTextWithWord.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/matchTransitionWords.js +29 -0
- package/build/languageProcessing/languages/ja/helpers/matchTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/memoizedSentenceTokenizer.js +37 -0
- package/build/languageProcessing/languages/ja/helpers/memoizedSentenceTokenizer.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/splitIntoTokensCustom.js +27 -0
- package/build/languageProcessing/languages/ja/helpers/splitIntoTokensCustom.js.map +1 -0
- package/build/languageProcessing/languages/ja/helpers/wordsCharacterCount.js +19 -0
- package/build/languageProcessing/languages/ja/helpers/wordsCharacterCount.js.map +1 -0
- package/build/languageProcessing/languages/nb/Researcher.js +54 -0
- package/build/languageProcessing/languages/nb/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/nb/config/firstWordExceptions.js +18 -0
- package/build/languageProcessing/languages/nb/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/nb/config/functionWords.js +54 -0
- package/build/languageProcessing/languages/nb/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/nb/config/internal/participles.js +12 -0
- package/build/languageProcessing/languages/nb/config/internal/participles.js.map +1 -0
- package/build/languageProcessing/languages/nb/config/internal/passiveVoiceAuxiliaries.js +12 -0
- package/build/languageProcessing/languages/nb/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/nb/config/stopWords.js +13 -0
- package/build/languageProcessing/languages/nb/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/nb/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/nb/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/nb/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/nb/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/nb/helpers/getClauses.js +37 -0
- package/build/languageProcessing/languages/nb/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/nb/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/nb/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/nb/helpers/internal/getParticiples.js +31 -0
- package/build/languageProcessing/languages/nb/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/nb/helpers/internal/stem.js +135 -0
- package/build/languageProcessing/languages/nb/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/nb/values/Clause.js +49 -0
- package/build/languageProcessing/languages/nb/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/nl/Researcher.js +57 -0
- package/build/languageProcessing/languages/nl/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/nl/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/functionWords.js +102 -0
- package/build/languageProcessing/languages/nl/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/internal/nonParticiples.js +12 -0
- package/build/languageProcessing/languages/nl/config/internal/nonParticiples.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/internal/passiveVoiceAuxiliaries.js +12 -0
- package/build/languageProcessing/languages/nl/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/internal/passiveVoiceIrregulars.js +13 -0
- package/build/languageProcessing/languages/nl/config/internal/passiveVoiceIrregulars.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/keyphraseLength.js +17 -0
- package/build/languageProcessing/languages/nl/config/keyphraseLength.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/nl/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/transitionWords.js +11 -0
- package/build/languageProcessing/languages/nl/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/nl/config/twoPartTransitionWords.js +12 -0
- package/build/languageProcessing/languages/nl/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/nl/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/getClauses.js +34 -0
- package/build/languageProcessing/languages/nl/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/nl/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/checkExceptionsWithFullForms.js +124 -0
- package/build/languageProcessing/languages/nl/helpers/internal/checkExceptionsWithFullForms.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemRegularParticiple.js +260 -0
- package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemRegularParticiple.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemSuffixes.js +157 -0
- package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemSuffixes.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/determineStem.js +120 -0
- package/build/languageProcessing/languages/nl/helpers/internal/determineStem.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/getParticiples.js +27 -0
- package/build/languageProcessing/languages/nl/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/getStemWordsWithTAndDEnding.js +152 -0
- package/build/languageProcessing/languages/nl/helpers/internal/getStemWordsWithTAndDEnding.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/stem.js +131 -0
- package/build/languageProcessing/languages/nl/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/stemModificationHelpers.js +94 -0
- package/build/languageProcessing/languages/nl/helpers/internal/stemModificationHelpers.js.map +1 -0
- package/build/languageProcessing/languages/nl/helpers/internal/stemTOrDFromEndOfWord.js +59 -0
- package/build/languageProcessing/languages/nl/helpers/internal/stemTOrDFromEndOfWord.js.map +1 -0
- package/build/languageProcessing/languages/nl/values/Clause.js +63 -0
- package/build/languageProcessing/languages/nl/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/pl/Researcher.js +56 -0
- package/build/languageProcessing/languages/pl/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/firstWordExceptions.js +16 -0
- package/build/languageProcessing/languages/pl/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/functionWords.js +78 -0
- package/build/languageProcessing/languages/pl/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/internal/auxiliaries.js +12 -0
- package/build/languageProcessing/languages/pl/config/internal/auxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/internal/participles.js +13 -0
- package/build/languageProcessing/languages/pl/config/internal/participles.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/sentenceLength.js +17 -0
- package/build/languageProcessing/languages/pl/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/pl/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/pl/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/pl/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/pl/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/pl/helpers/getClauses.js +34 -0
- package/build/languageProcessing/languages/pl/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/pl/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/pl/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/pl/helpers/internal/getParticiples.js +25 -0
- package/build/languageProcessing/languages/pl/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/pl/helpers/internal/stem.js +158 -0
- package/build/languageProcessing/languages/pl/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/pl/values/Clause.js +51 -0
- package/build/languageProcessing/languages/pl/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/pt/Researcher.js +57 -0
- package/build/languageProcessing/languages/pt/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/firstWordExceptions.js +20 -0
- package/build/languageProcessing/languages/pt/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/functionWords.js +98 -0
- package/build/languageProcessing/languages/pt/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/internal/passiveVoiceAuxiliaries.js +12 -0
- package/build/languageProcessing/languages/pt/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/internal/passiveVoiceParticiples.js +13 -0
- package/build/languageProcessing/languages/pt/config/internal/passiveVoiceParticiples.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/sentenceLength.js +10 -0
- package/build/languageProcessing/languages/pt/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/stopWords.js +12 -0
- package/build/languageProcessing/languages/pt/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/transitionWords.js +11 -0
- package/build/languageProcessing/languages/pt/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/pt/config/twoPartTransitionWords.js +12 -0
- package/build/languageProcessing/languages/pt/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/pt/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/pt/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/pt/helpers/getClauses.js +38 -0
- package/build/languageProcessing/languages/pt/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/pt/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/pt/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/pt/helpers/internal/getParticiples.js +43 -0
- package/build/languageProcessing/languages/pt/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/pt/helpers/internal/stem.js +283 -0
- package/build/languageProcessing/languages/pt/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/pt/values/Clause.js +50 -0
- package/build/languageProcessing/languages/pt/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/ru/Researcher.js +57 -0
- package/build/languageProcessing/languages/ru/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/firstWordExceptions.js +16 -0
- package/build/languageProcessing/languages/ru/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/fleschReadingEaseScores.js +27 -0
- package/build/languageProcessing/languages/ru/config/fleschReadingEaseScores.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/functionWords.js +91 -0
- package/build/languageProcessing/languages/ru/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/internal/participlesShortenedList.js +27 -0
- package/build/languageProcessing/languages/ru/config/internal/participlesShortenedList.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/internal/passiveVoiceParticiples.js +24 -0
- package/build/languageProcessing/languages/ru/config/internal/passiveVoiceParticiples.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/sentenceLength.js +10 -0
- package/build/languageProcessing/languages/ru/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/ru/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ru/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/ru/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/ru/helpers/calculateFleschReadingScore.js +23 -0
- package/build/languageProcessing/languages/ru/helpers/calculateFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/languages/ru/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/ru/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/ru/helpers/internal/stem.js +271 -0
- package/build/languageProcessing/languages/ru/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/ru/helpers/isPassiveSentence.js +22 -0
- package/build/languageProcessing/languages/ru/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/sk/Researcher.js +55 -0
- package/build/languageProcessing/languages/sk/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/sk/config/firstWordExceptions.js +18 -0
- package/build/languageProcessing/languages/sk/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/sk/config/functionWords.js +18 -0
- package/build/languageProcessing/languages/sk/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/sk/config/internal/nonPassives.js +14 -0
- package/build/languageProcessing/languages/sk/config/internal/nonPassives.js.map +1 -0
- package/build/languageProcessing/languages/sk/config/internal/passiveVoiceAuxiliaries.js +10 -0
- package/build/languageProcessing/languages/sk/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
- package/build/languageProcessing/languages/sk/config/stopWords.js +13 -0
- package/build/languageProcessing/languages/sk/config/stopWords.js.map +1 -0
- package/build/languageProcessing/languages/sk/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/sk/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/sk/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/sk/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/sk/helpers/getClauses.js +35 -0
- package/build/languageProcessing/languages/sk/helpers/getClauses.js.map +1 -0
- package/build/languageProcessing/languages/sk/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/sk/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/sk/helpers/internal/getParticiples.js +24 -0
- package/build/languageProcessing/languages/sk/helpers/internal/getParticiples.js.map +1 -0
- package/build/languageProcessing/languages/sk/helpers/internal/stem.js +322 -0
- package/build/languageProcessing/languages/sk/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/sk/values/Clause.js +47 -0
- package/build/languageProcessing/languages/sk/values/Clause.js.map +1 -0
- package/build/languageProcessing/languages/sv/Researcher.js +54 -0
- package/build/languageProcessing/languages/sv/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/sv/config/firstWordExceptions.js +21 -0
- package/build/languageProcessing/languages/sv/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/sv/config/functionWords.js +74 -0
- package/build/languageProcessing/languages/sv/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/sv/config/internal/passiveVerbs.js +12 -0
- package/build/languageProcessing/languages/sv/config/internal/passiveVerbs.js.map +1 -0
- package/build/languageProcessing/languages/sv/config/keyphraseLength.js +17 -0
- package/build/languageProcessing/languages/sv/config/keyphraseLength.js.map +1 -0
- package/build/languageProcessing/languages/sv/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/sv/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/sv/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/sv/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/sv/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/sv/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/sv/helpers/internal/stem.js +159 -0
- package/build/languageProcessing/languages/sv/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/sv/helpers/isPassiveSentence.js +22 -0
- package/build/languageProcessing/languages/sv/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/languages/tr/Researcher.js +52 -0
- package/build/languageProcessing/languages/tr/Researcher.js.map +1 -0
- package/build/languageProcessing/languages/tr/config/firstWordExceptions.js +18 -0
- package/build/languageProcessing/languages/tr/config/firstWordExceptions.js.map +1 -0
- package/build/languageProcessing/languages/tr/config/functionWords.js +51 -0
- package/build/languageProcessing/languages/tr/config/functionWords.js.map +1 -0
- package/build/languageProcessing/languages/tr/config/internal/nonPassiveExceptions.js +13 -0
- package/build/languageProcessing/languages/tr/config/internal/nonPassiveExceptions.js.map +1 -0
- package/build/languageProcessing/languages/tr/config/internal/passiveEndings.js +13 -0
- package/build/languageProcessing/languages/tr/config/internal/passiveEndings.js.map +1 -0
- package/build/languageProcessing/languages/tr/config/sentenceLength.js +14 -0
- package/build/languageProcessing/languages/tr/config/sentenceLength.js.map +1 -0
- package/build/languageProcessing/languages/tr/config/transitionWords.js +13 -0
- package/build/languageProcessing/languages/tr/config/transitionWords.js.map +1 -0
- package/build/languageProcessing/languages/tr/config/twoPartTransitionWords.js +13 -0
- package/build/languageProcessing/languages/tr/config/twoPartTransitionWords.js.map +1 -0
- package/build/languageProcessing/languages/tr/helpers/getStemmer.js +28 -0
- package/build/languageProcessing/languages/tr/helpers/getStemmer.js.map +1 -0
- package/build/languageProcessing/languages/tr/helpers/internal/stem.js +25 -0
- package/build/languageProcessing/languages/tr/helpers/internal/stem.js.map +1 -0
- package/build/languageProcessing/languages/tr/helpers/isPassiveSentence.js +46 -0
- package/build/languageProcessing/languages/tr/helpers/isPassiveSentence.js.map +1 -0
- package/build/languageProcessing/researches/altTagCount.js +72 -0
- package/build/languageProcessing/researches/altTagCount.js.map +1 -0
- package/build/languageProcessing/researches/countSentencesFromText.js +26 -0
- package/build/languageProcessing/researches/countSentencesFromText.js.map +1 -0
- package/build/languageProcessing/researches/findKeyphraseInSEOTitle.js +257 -0
- package/build/languageProcessing/researches/findKeyphraseInSEOTitle.js.map +1 -0
- package/build/languageProcessing/researches/findKeywordInFirstParagraph.js +80 -0
- package/build/languageProcessing/researches/findKeywordInFirstParagraph.js.map +1 -0
- package/build/languageProcessing/researches/findTransitionWords.js +119 -0
- package/build/languageProcessing/researches/findTransitionWords.js.map +1 -0
- package/build/languageProcessing/researches/functionWordsInKeyphrase.js +48 -0
- package/build/languageProcessing/researches/functionWordsInKeyphrase.js.map +1 -0
- package/build/languageProcessing/researches/getAnchorsWithKeyphrase.js +222 -0
- package/build/languageProcessing/researches/getAnchorsWithKeyphrase.js.map +1 -0
- package/build/languageProcessing/researches/getFleschReadingScore.js +152 -0
- package/build/languageProcessing/researches/getFleschReadingScore.js.map +1 -0
- package/build/languageProcessing/researches/getKeywordDensity.js +49 -0
- package/build/languageProcessing/researches/getKeywordDensity.js.map +1 -0
- package/build/languageProcessing/researches/getLinkStatistics.js +56 -0
- package/build/languageProcessing/researches/getLinkStatistics.js.map +1 -0
- package/build/languageProcessing/researches/getLinks.js +23 -0
- package/build/languageProcessing/researches/getLinks.js.map +1 -0
- package/build/languageProcessing/researches/getLongCenterAlignedTexts.js +42 -0
- package/build/languageProcessing/researches/getLongCenterAlignedTexts.js.map +1 -0
- package/build/languageProcessing/researches/getParagraphLength.js +49 -0
- package/build/languageProcessing/researches/getParagraphLength.js.map +1 -0
- package/build/languageProcessing/researches/getParagraphs.js +23 -0
- package/build/languageProcessing/researches/getParagraphs.js.map +1 -0
- package/build/languageProcessing/researches/getPassiveVoiceResult.js +127 -0
- package/build/languageProcessing/researches/getPassiveVoiceResult.js.map +1 -0
- package/build/languageProcessing/researches/getProminentWordsForInsights.js +45 -0
- package/build/languageProcessing/researches/getProminentWordsForInsights.js.map +1 -0
- package/build/languageProcessing/researches/getProminentWordsForInternalLinking.js +103 -0
- package/build/languageProcessing/researches/getProminentWordsForInternalLinking.js.map +1 -0
- package/build/languageProcessing/researches/getSentenceBeginnings.js +122 -0
- package/build/languageProcessing/researches/getSentenceBeginnings.js.map +1 -0
- package/build/languageProcessing/researches/getSubheadingTextLengths.js +60 -0
- package/build/languageProcessing/researches/getSubheadingTextLengths.js.map +1 -0
- package/build/languageProcessing/researches/getWordForms.js +183 -0
- package/build/languageProcessing/researches/getWordForms.js.map +1 -0
- package/build/languageProcessing/researches/h1s.js +17 -0
- package/build/languageProcessing/researches/h1s.js.map +1 -0
- package/build/languageProcessing/researches/imageCount.js +22 -0
- package/build/languageProcessing/researches/imageCount.js.map +1 -0
- package/build/languageProcessing/researches/index.js +28 -0
- package/build/languageProcessing/researches/index.js.map +1 -0
- package/build/languageProcessing/researches/keyphraseDistribution.js +233 -0
- package/build/languageProcessing/researches/keyphraseDistribution.js.map +1 -0
- package/build/languageProcessing/researches/keyphraseLength.js +23 -0
- package/build/languageProcessing/researches/keyphraseLength.js.map +1 -0
- package/build/languageProcessing/researches/keywordCount.js +135 -0
- package/build/languageProcessing/researches/keywordCount.js.map +1 -0
- package/build/languageProcessing/researches/keywordCountInUrl.js +58 -0
- package/build/languageProcessing/researches/keywordCountInUrl.js.map +1 -0
- package/build/languageProcessing/researches/matchKeywordInSubheadings.js +68 -0
- package/build/languageProcessing/researches/matchKeywordInSubheadings.js.map +1 -0
- package/build/languageProcessing/researches/metaDescriptionKeyword.js +78 -0
- package/build/languageProcessing/researches/metaDescriptionKeyword.js.map +1 -0
- package/build/languageProcessing/researches/metaDescriptionLength.js +19 -0
- package/build/languageProcessing/researches/metaDescriptionLength.js.map +1 -0
- package/build/languageProcessing/researches/pageTitleWidth.js +18 -0
- package/build/languageProcessing/researches/pageTitleWidth.js.map +1 -0
- package/build/languageProcessing/researches/readingTime.js +84 -0
- package/build/languageProcessing/researches/readingTime.js.map +1 -0
- package/build/languageProcessing/researches/sentences.js +26 -0
- package/build/languageProcessing/researches/sentences.js.map +1 -0
- package/build/languageProcessing/researches/videoCount.js +39 -0
- package/build/languageProcessing/researches/videoCount.js.map +1 -0
- package/build/languageProcessing/researches/wordComplexity.js +128 -0
- package/build/languageProcessing/researches/wordComplexity.js.map +1 -0
- package/build/languageProcessing/researches/wordCountInText.js +36 -0
- package/build/languageProcessing/researches/wordCountInText.js.map +1 -0
- package/build/languageProcessing/values/Clause.js +113 -0
- package/build/languageProcessing/values/Clause.js.map +1 -0
- package/build/languageProcessing/values/ProminentWord.js +101 -0
- package/build/languageProcessing/values/ProminentWord.js.map +1 -0
- package/build/languageProcessing/values/Sentence.js +116 -0
- package/build/languageProcessing/values/Sentence.js.map +1 -0
- package/build/languageProcessing/values/index.js +28 -0
- package/build/languageProcessing/values/index.js.map +1 -0
- package/build/markers/addMark.js +16 -0
- package/build/markers/addMark.js.map +1 -0
- package/build/markers/addMarkSingleWord.js +37 -0
- package/build/markers/addMarkSingleWord.js.map +1 -0
- package/build/markers/index.js +21 -0
- package/build/markers/index.js.map +1 -0
- package/build/markers/removeDuplicateMarks.js +31 -0
- package/build/markers/removeDuplicateMarks.js.map +1 -0
- package/build/markers/removeMarks.js +16 -0
- package/build/markers/removeMarks.js.map +1 -0
- package/build/parse/build/build.js +62 -0
- package/build/parse/build/build.js.map +1 -0
- package/build/parse/build/index.js +14 -0
- package/build/parse/build/index.js.map +1 -0
- package/build/parse/build/private/adapt.js +111 -0
- package/build/parse/build/private/adapt.js.map +1 -0
- package/build/parse/build/private/adaptAttributes.js +41 -0
- package/build/parse/build/private/adaptAttributes.js.map +1 -0
- package/build/parse/build/private/alwaysFilterElements.js +32 -0
- package/build/parse/build/private/alwaysFilterElements.js.map +1 -0
- package/build/parse/build/private/combineIntoImplicitParagraphs.js +129 -0
- package/build/parse/build/private/combineIntoImplicitParagraphs.js.map +1 -0
- package/build/parse/build/private/filterBeforeTokenizing.js +37 -0
- package/build/parse/build/private/filterBeforeTokenizing.js.map +1 -0
- package/build/parse/build/private/filterHelpers.js +52 -0
- package/build/parse/build/private/filterHelpers.js.map +1 -0
- package/build/parse/build/private/filterTree.js +47 -0
- package/build/parse/build/private/filterTree.js.map +1 -0
- package/build/parse/build/private/getTextElementPositions.js +184 -0
- package/build/parse/build/private/getTextElementPositions.js.map +1 -0
- package/build/parse/build/private/helpers/parseClassAttribute.js +15 -0
- package/build/parse/build/private/helpers/parseClassAttribute.js.map +1 -0
- package/build/parse/build/private/isPhrasingContent.js +30 -0
- package/build/parse/build/private/isPhrasingContent.js.map +1 -0
- package/build/parse/build/private/parseBlocks.js +151 -0
- package/build/parse/build/private/parseBlocks.js.map +1 -0
- package/build/parse/build/private/tokenize.js +78 -0
- package/build/parse/build/private/tokenize.js.map +1 -0
- package/build/parse/language/LanguageProcessor.js +77 -0
- package/build/parse/language/LanguageProcessor.js.map +1 -0
- package/build/parse/structure/Heading.js +32 -0
- package/build/parse/structure/Heading.js.map +1 -0
- package/build/parse/structure/Node.js +75 -0
- package/build/parse/structure/Node.js.map +1 -0
- package/build/parse/structure/Paragraph.js +53 -0
- package/build/parse/structure/Paragraph.js.map +1 -0
- package/build/parse/structure/Sentence.js +36 -0
- package/build/parse/structure/Sentence.js.map +1 -0
- package/build/parse/structure/SourceCodeLocation.js +46 -0
- package/build/parse/structure/SourceCodeLocation.js.map +1 -0
- package/build/parse/structure/Text.js +33 -0
- package/build/parse/structure/Text.js.map +1 -0
- package/build/parse/structure/Token.js +29 -0
- package/build/parse/structure/Token.js.map +1 -0
- package/build/parse/structure/index.js +35 -0
- package/build/parse/structure/index.js.map +1 -0
- package/build/parse/traverse/findAllInTree.js +62 -0
- package/build/parse/traverse/findAllInTree.js.map +1 -0
- package/build/parse/traverse/index.js +21 -0
- package/build/parse/traverse/index.js.map +1 -0
- package/build/parse/traverse/innerText.js +30 -0
- package/build/parse/traverse/innerText.js.map +1 -0
- package/build/parsedPaper/ParsedPaper.js +100 -0
- package/build/parsedPaper/ParsedPaper.js.map +1 -0
- package/build/parsedPaper/assess/TreeAssessor.js +181 -0
- package/build/parsedPaper/assess/TreeAssessor.js.map +1 -0
- package/build/parsedPaper/assess/assessmentListFactories.js +77 -0
- package/build/parsedPaper/assess/assessmentListFactories.js.map +1 -0
- package/build/parsedPaper/assess/assessments/Assessment.js +98 -0
- package/build/parsedPaper/assess/assessments/Assessment.js.map +1 -0
- package/build/parsedPaper/assess/assessments/index.js +14 -0
- package/build/parsedPaper/assess/assessments/index.js.map +1 -0
- package/build/parsedPaper/assess/assessorFactories.js +104 -0
- package/build/parsedPaper/assess/assessorFactories.js.map +1 -0
- package/build/parsedPaper/assess/cornerstone/assessmentListFactories.js +51 -0
- package/build/parsedPaper/assess/cornerstone/assessmentListFactories.js.map +1 -0
- package/build/parsedPaper/assess/cornerstone/index.js +11 -0
- package/build/parsedPaper/assess/cornerstone/index.js.map +1 -0
- package/build/parsedPaper/assess/index.js +31 -0
- package/build/parsedPaper/assess/index.js.map +1 -0
- package/build/parsedPaper/build/PaperParser.js +103 -0
- package/build/parsedPaper/build/PaperParser.js.map +1 -0
- package/build/parsedPaper/build/linguisticParsing/Sentence.js +95 -0
- package/build/parsedPaper/build/linguisticParsing/Sentence.js.map +1 -0
- package/build/parsedPaper/build/linguisticParsing/SentenceTokenizer.js +294 -0
- package/build/parsedPaper/build/linguisticParsing/SentenceTokenizer.js.map +1 -0
- package/build/parsedPaper/build/linguisticParsing/parseText.js +26 -0
- package/build/parsedPaper/build/linguisticParsing/parseText.js.map +1 -0
- package/build/parsedPaper/build/tree/TreeBuilder.js +82 -0
- package/build/parsedPaper/build/tree/TreeBuilder.js.map +1 -0
- package/build/parsedPaper/build/tree/cleanup/calculateTextIndices.js +183 -0
- package/build/parsedPaper/build/tree/cleanup/calculateTextIndices.js.map +1 -0
- package/build/parsedPaper/build/tree/cleanup/getElementContent.js +27 -0
- package/build/parsedPaper/build/tree/cleanup/getElementContent.js.map +1 -0
- package/build/parsedPaper/build/tree/cleanup/postParsing.js +43 -0
- package/build/parsedPaper/build/tree/cleanup/postParsing.js.map +1 -0
- package/build/parsedPaper/build/tree/html/HTMLTreeConverter.js +226 -0
- package/build/parsedPaper/build/tree/html/HTMLTreeConverter.js.map +1 -0
- package/build/parsedPaper/build/tree/html/buildTree.js +36 -0
- package/build/parsedPaper/build/tree/html/buildTree.js.map +1 -0
- package/build/parsedPaper/build/tree/html/htmlConstants.js +35 -0
- package/build/parsedPaper/build/tree/html/htmlConstants.js.map +1 -0
- package/build/parsedPaper/build/tree/index.js +20 -0
- package/build/parsedPaper/build/tree/index.js.map +1 -0
- package/build/parsedPaper/build/tree/metadata/buildTree.js +36 -0
- package/build/parsedPaper/build/tree/metadata/buildTree.js.map +1 -0
- package/build/parsedPaper/research/TreeResearcher.js +136 -0
- package/build/parsedPaper/research/TreeResearcher.js.map +1 -0
- package/build/parsedPaper/research/index.js +14 -0
- package/build/parsedPaper/research/index.js.map +1 -0
- package/build/parsedPaper/research/researches/Headings.js +26 -0
- package/build/parsedPaper/research/researches/Headings.js.map +1 -0
- package/build/parsedPaper/research/researches/LinkStatistics.js +129 -0
- package/build/parsedPaper/research/researches/LinkStatistics.js.map +1 -0
- package/build/parsedPaper/research/researches/Research.js +58 -0
- package/build/parsedPaper/research/researches/Research.js.map +1 -0
- package/build/parsedPaper/research/researches/index.js +14 -0
- package/build/parsedPaper/research/researches/index.js.map +1 -0
- package/build/parsedPaper/structure/tree/FormattingElement.js +73 -0
- package/build/parsedPaper/structure/tree/FormattingElement.js.map +1 -0
- package/build/parsedPaper/structure/tree/SourceCodeLocation.js +48 -0
- package/build/parsedPaper/structure/tree/SourceCodeLocation.js.map +1 -0
- package/build/parsedPaper/structure/tree/TextContainer.js +89 -0
- package/build/parsedPaper/structure/tree/TextContainer.js.map +1 -0
- package/build/parsedPaper/structure/tree/index.js +76 -0
- package/build/parsedPaper/structure/tree/index.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/Heading.js +33 -0
- package/build/parsedPaper/structure/tree/nodes/Heading.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/LeafNode.js +82 -0
- package/build/parsedPaper/structure/tree/nodes/LeafNode.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/List.js +54 -0
- package/build/parsedPaper/structure/tree/nodes/List.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/ListItem.js +34 -0
- package/build/parsedPaper/structure/tree/nodes/ListItem.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/MetadataMiscellaneous.js +51 -0
- package/build/parsedPaper/structure/tree/nodes/MetadataMiscellaneous.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/MetadataText.js +31 -0
- package/build/parsedPaper/structure/tree/nodes/MetadataText.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/Node.js +159 -0
- package/build/parsedPaper/structure/tree/nodes/Node.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/Paragraph.js +29 -0
- package/build/parsedPaper/structure/tree/nodes/Paragraph.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/StructuredNode.js +60 -0
- package/build/parsedPaper/structure/tree/nodes/StructuredNode.js.map +1 -0
- package/build/parsedPaper/structure/tree/nodes/index.js +70 -0
- package/build/parsedPaper/structure/tree/nodes/index.js.map +1 -0
- package/build/scoring/assessments/assessment.js +72 -0
- package/build/scoring/assessments/assessment.js.map +1 -0
- package/build/scoring/assessments/index.js +64 -0
- package/build/scoring/assessments/index.js.map +1 -0
- package/build/scoring/assessments/readability/ParagraphTooLongAssessment.js +166 -0
- package/build/scoring/assessments/readability/ParagraphTooLongAssessment.js.map +1 -0
- package/build/scoring/assessments/readability/SentenceBeginningsAssessment.js +135 -0
- package/build/scoring/assessments/readability/SentenceBeginningsAssessment.js.map +1 -0
- package/build/scoring/assessments/readability/SentenceLengthInTextAssessment.js +177 -0
- package/build/scoring/assessments/readability/SentenceLengthInTextAssessment.js.map +1 -0
- package/build/scoring/assessments/readability/TransitionWordsAssessment.js +163 -0
- package/build/scoring/assessments/readability/TransitionWordsAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/ImageCountAssessment.js +111 -0
- package/build/scoring/assessments/seo/ImageCountAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/InternalLinksAssessment.js +112 -0
- package/build/scoring/assessments/seo/InternalLinksAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/IntroductionKeywordAssessment.js +109 -0
- package/build/scoring/assessments/seo/IntroductionKeywordAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/KeyphraseAssessment.js +104 -0
- package/build/scoring/assessments/seo/KeyphraseAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/KeyphraseLengthAssessment.js +109 -0
- package/build/scoring/assessments/seo/KeyphraseLengthAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/KeywordDensityAssessment.js +115 -0
- package/build/scoring/assessments/seo/KeywordDensityAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/MetaDescriptionKeywordAssessment.js +118 -0
- package/build/scoring/assessments/seo/MetaDescriptionKeywordAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/MetaDescriptionLengthAssessment.js +111 -0
- package/build/scoring/assessments/seo/MetaDescriptionLengthAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/MetaTitleKeywordAssessment.js +115 -0
- package/build/scoring/assessments/seo/MetaTitleKeywordAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/NumberInMetaTitleAssessment.js +108 -0
- package/build/scoring/assessments/seo/NumberInMetaTitleAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/OutboundLinksAssessment.js +114 -0
- package/build/scoring/assessments/seo/OutboundLinksAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/PageTitleWidthAssessment.js +106 -0
- package/build/scoring/assessments/seo/PageTitleWidthAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/SingleH1Assessment.js +114 -0
- package/build/scoring/assessments/seo/SingleH1Assessment.js.map +1 -0
- package/build/scoring/assessments/seo/SingleTitleAssessment.js +107 -0
- package/build/scoring/assessments/seo/SingleTitleAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/SubHeadingsKeywordAssessment.js +107 -0
- package/build/scoring/assessments/seo/SubHeadingsKeywordAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/TextImagesAssessment.js +142 -0
- package/build/scoring/assessments/seo/TextImagesAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/TextLengthAssessment.js +104 -0
- package/build/scoring/assessments/seo/TextLengthAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/UrlKeywordAssessment.js +106 -0
- package/build/scoring/assessments/seo/UrlKeywordAssessment.js.map +1 -0
- package/build/scoring/assessments/seo/UrlLengthAssessment.js +106 -0
- package/build/scoring/assessments/seo/UrlLengthAssessment.js.map +1 -0
- package/build/scoring/assessors/assessor.js +261 -0
- package/build/scoring/assessors/assessor.js.map +1 -0
- package/build/scoring/assessors/avadaAssessor.js +66 -0
- package/build/scoring/assessors/avadaAssessor.js.map +1 -0
- package/build/scoring/assessors/contentAssessor.js +149 -0
- package/build/scoring/assessors/contentAssessor.js.map +1 -0
- package/build/scoring/assessors/index.js +35 -0
- package/build/scoring/assessors/index.js.map +1 -0
- package/build/scoring/assessors/seoAssessor.js +44 -0
- package/build/scoring/assessors/seoAssessor.js.map +1 -0
- package/build/scoring/helpers/assessments/checkForTooLongSentences.js +19 -0
- package/build/scoring/helpers/assessments/checkForTooLongSentences.js.map +1 -0
- package/build/scoring/helpers/assessments/inRange.js +51 -0
- package/build/scoring/helpers/assessments/inRange.js.map +1 -0
- package/build/scoring/helpers/assessments/keyphraseLengthFactor.js +17 -0
- package/build/scoring/helpers/assessments/keyphraseLengthFactor.js.map +1 -0
- package/build/scoring/helpers/assessments/recommendedKeywordCount.js +47 -0
- package/build/scoring/helpers/assessments/recommendedKeywordCount.js.map +1 -0
- package/build/scoring/helpers/index.js +92 -0
- package/build/scoring/helpers/index.js.map +1 -0
- package/build/scoring/interpreters/index.js +14 -0
- package/build/scoring/interpreters/index.js.map +1 -0
- package/build/scoring/interpreters/scoreToRating.js +32 -0
- package/build/scoring/interpreters/scoreToRating.js.map +1 -0
- package/build/scoring/renderers/AssessorPresenter.js +348 -0
- package/build/scoring/renderers/AssessorPresenter.js.map +1 -0
- package/build/scoring/scoreAggregators/ReadabilityScoreAggregator.js +203 -0
- package/build/scoring/scoreAggregators/ReadabilityScoreAggregator.js.map +1 -0
- package/build/scoring/scoreAggregators/SEOScoreAggregator.js +60 -0
- package/build/scoring/scoreAggregators/SEOScoreAggregator.js.map +1 -0
- package/build/scoring/scoreAggregators/ScoreAggregator.js +30 -0
- package/build/scoring/scoreAggregators/ScoreAggregator.js.map +1 -0
- package/build/scoring/scoreAggregators/index.js +28 -0
- package/build/scoring/scoreAggregators/index.js.map +1 -0
- package/build/values/AssessmentResult.js +485 -0
- package/build/values/AssessmentResult.js.map +1 -0
- package/build/values/Mark.js +273 -0
- package/build/values/Mark.js.map +1 -0
- package/build/values/Paper.js +425 -0
- package/build/values/Paper.js.map +1 -0
- package/build/values/index.js +28 -0
- package/build/values/index.js.map +1 -0
- package/build/vendor/turkishStemmer.js +2817 -0
- package/build/vendor/turkishStemmer.js.map +1 -0
- package/package.json +13 -2
- package/.browserslistrc +0 -1
- package/.gitattributes +0 -1
- package/babel.config.js +0 -3
- package/eslint.config.mjs +0 -119
- package/src/bundledPlugins/index.js +0 -5
- package/src/bundledPlugins/previouslyUsedKeywords.js +0 -192
- package/src/config/diacritics.js +0 -106
- package/src/config/getTransliterations.js +0 -1447
- package/src/config/transliterationsWPstyle.js +0 -774
- package/src/config/wordBoundaries.js +0 -23
- package/src/config/wordBoundariesWithoutPunctuation.js +0 -9
- package/src/const/analysis.js +0 -41
- package/src/errors/invalidType.js +0 -14
- package/src/errors/missingArgument.js +0 -14
- package/src/helpers/createMeasurementElement.js +0 -40
- package/src/helpers/domManipulation.js +0 -65
- package/src/helpers/errors.js +0 -26
- package/src/helpers/factory.js +0 -219
- package/src/helpers/formatNumber.js +0 -12
- package/src/helpers/formatString.js +0 -33
- package/src/helpers/getLanguagesWithWordComplexity.js +0 -8
- package/src/helpers/getLanguagesWithWordFormSupport.js +0 -11
- package/src/helpers/getWordComplexityConfig.js +0 -20
- package/src/helpers/getWordComplexityHelper.js +0 -20
- package/src/helpers/htmlEntities.js +0 -41
- package/src/helpers/includesAny.js +0 -19
- package/src/helpers/index.js +0 -127
- package/src/helpers/shortlinker/Shortlinker.js +0 -75
- package/src/helpers/shortlinker/index.js +0 -1
- package/src/helpers/shortlinker/singleton.js +0 -68
- package/src/helpers/types.js +0 -34
- package/src/index.js +0 -60
- package/src/languageProcessing/AbstractResearcher.js +0 -366
- package/src/languageProcessing/helpers/highlighting/getMarkingsInSentence.js +0 -125
- package/src/languageProcessing/helpers/html/getFieldsToMark.js +0 -29
- package/src/languageProcessing/helpers/html/getSubheadingTexts.js +0 -47
- package/src/languageProcessing/helpers/html/getSubheadings.js +0 -95
- package/src/languageProcessing/helpers/html/html.js +0 -176
- package/src/languageProcessing/helpers/html/htmlParser.js +0 -145
- package/src/languageProcessing/helpers/html/matchParagraphs.js +0 -62
- package/src/languageProcessing/helpers/html/normalizeHTML.js +0 -16
- package/src/languageProcessing/helpers/image/getAltAttribute.js +0 -20
- package/src/languageProcessing/helpers/image/getImagesInTree.js +0 -16
- package/src/languageProcessing/helpers/image/imageInText.js +0 -19
- package/src/languageProcessing/helpers/index.js +0 -12
- package/src/languageProcessing/helpers/language/getLanguage.js +0 -9
- package/src/languageProcessing/helpers/link/checkNofollow.js +0 -38
- package/src/languageProcessing/helpers/link/getAnchorsFromText.js +0 -32
- package/src/languageProcessing/helpers/link/getLinkType.js +0 -32
- package/src/languageProcessing/helpers/match/findKeywordFormsInString.js +0 -101
- package/src/languageProcessing/helpers/match/isDoubleQuoted.js +0 -13
- package/src/languageProcessing/helpers/match/matchTextWithArray.js +0 -36
- package/src/languageProcessing/helpers/match/matchTextWithTransliteration.js +0 -58
- package/src/languageProcessing/helpers/match/matchTextWithWord.js +0 -45
- package/src/languageProcessing/helpers/match/matchWordFormsWithSentence.js +0 -164
- package/src/languageProcessing/helpers/match/processExactMatchRequest.js +0 -20
- package/src/languageProcessing/helpers/morphology/baseStemmer.js +0 -11
- package/src/languageProcessing/helpers/morphology/buildFormRule.js +0 -19
- package/src/languageProcessing/helpers/morphology/buildTopicStems.js +0 -169
- package/src/languageProcessing/helpers/morphology/createRulesFromArrays.js +0 -45
- package/src/languageProcessing/helpers/morphology/exceptionListHelpers.js +0 -65
- package/src/languageProcessing/helpers/morphology/findMatchingEndingInArray.js +0 -24
- package/src/languageProcessing/helpers/morphology/flattenSortLength.js +0 -14
- package/src/languageProcessing/helpers/morphology/getAllWordsFromPaper.js +0 -39
- package/src/languageProcessing/helpers/morphology/regexHelpers.js +0 -44
- package/src/languageProcessing/helpers/morphology/stemHelpers.js +0 -38
- package/src/languageProcessing/helpers/morphology/stemPrefixedFunctionWords.js +0 -31
- package/src/languageProcessing/helpers/passiveVoice/periphrastic/directPrecedenceException.js +0 -36
- package/src/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/getClausesSplitOnStopWords.js +0 -113
- package/src/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/nonDirectParticiplePrecedenceException.js +0 -45
- package/src/languageProcessing/helpers/passiveVoice/periphrastic/getClauses.js +0 -231
- package/src/languageProcessing/helpers/passiveVoice/periphrastic/getIndicesWithRegex.js +0 -20
- package/src/languageProcessing/helpers/passiveVoice/periphrastic/matchRegularParticiples.js +0 -23
- package/src/languageProcessing/helpers/passiveVoice/periphrastic/precedenceException.js +0 -40
- package/src/languageProcessing/helpers/prominentWords/determineProminentWords.js +0 -238
- package/src/languageProcessing/helpers/regex/createRegexFromArray.js +0 -35
- package/src/languageProcessing/helpers/regex/createRegexFromDoubleArray.js +0 -34
- package/src/languageProcessing/helpers/regex/createWordRegex.js +0 -30
- package/src/languageProcessing/helpers/regex/matchStringWithRegex.js +0 -19
- package/src/languageProcessing/helpers/regex/searchAndReplaceWithOneRegex.js +0 -14
- package/src/languageProcessing/helpers/sanitize/doubleQuotes.js +0 -12
- package/src/languageProcessing/helpers/sanitize/filterShortcodesFromTree.js +0 -131
- package/src/languageProcessing/helpers/sanitize/mergeListItems.js +0 -24
- package/src/languageProcessing/helpers/sanitize/parseSynonyms.js +0 -20
- package/src/languageProcessing/helpers/sanitize/quotes.js +0 -46
- package/src/languageProcessing/helpers/sanitize/removeEmailAddresses.js +0 -12
- package/src/languageProcessing/helpers/sanitize/removePunctuation.js +0 -64
- package/src/languageProcessing/helpers/sanitize/removePunctuationExceptQuotes.js +0 -18
- package/src/languageProcessing/helpers/sanitize/removeSentenceTerminators.js +0 -13
- package/src/languageProcessing/helpers/sanitize/removeURLs.js +0 -13
- package/src/languageProcessing/helpers/sanitize/sanitizeLineBreakTag.js +0 -11
- package/src/languageProcessing/helpers/sanitize/sanitizeString.js +0 -18
- package/src/languageProcessing/helpers/sanitize/stripHTMLTags.js +0 -57
- package/src/languageProcessing/helpers/sanitize/stripNonTextTags.js +0 -15
- package/src/languageProcessing/helpers/sanitize/stripNumbers.js +0 -21
- package/src/languageProcessing/helpers/sanitize/stripSpaces.js +0 -23
- package/src/languageProcessing/helpers/sanitize/stripWordBoundaries.js +0 -65
- package/src/languageProcessing/helpers/sanitize/unifyWhitespace.js +0 -61
- package/src/languageProcessing/helpers/sentence/SentenceTokenizer.js +0 -640
- package/src/languageProcessing/helpers/sentence/countSentences.js +0 -20
- package/src/languageProcessing/helpers/sentence/getSentences.js +0 -65
- package/src/languageProcessing/helpers/sentence/getSentencesFromTree.js +0 -55
- package/src/languageProcessing/helpers/sentence/memoizedSentenceTokenizer.js +0 -28
- package/src/languageProcessing/helpers/sentence/sentencesLength.js +0 -31
- package/src/languageProcessing/helpers/syllables/DeviationFragment.js +0 -112
- package/src/languageProcessing/helpers/syllables/countSyllables.js +0 -182
- package/src/languageProcessing/helpers/syllables/syllableCountIterator.js +0 -56
- package/src/languageProcessing/helpers/syllables/syllableCountStep.js +0 -68
- package/src/languageProcessing/helpers/transform/transformWordsWithHyphens.js +0 -17
- package/src/languageProcessing/helpers/transliterate/replaceDiacritics.js +0 -22
- package/src/languageProcessing/helpers/transliterate/specialCharacterMappings.js +0 -214
- package/src/languageProcessing/helpers/transliterate/transliterate.js +0 -20
- package/src/languageProcessing/helpers/transliterate/transliterateWPstyle.js +0 -21
- package/src/languageProcessing/helpers/url/parseSlug.js +0 -10
- package/src/languageProcessing/helpers/url/url.js +0 -172
- package/src/languageProcessing/helpers/word/addWordboundary.js +0 -37
- package/src/languageProcessing/helpers/word/areWordsInSentence.js +0 -16
- package/src/languageProcessing/helpers/word/countMetaDescriptionLength.js +0 -18
- package/src/languageProcessing/helpers/word/countWords.js +0 -14
- package/src/languageProcessing/helpers/word/createPunctuationTokens.js +0 -42
- package/src/languageProcessing/helpers/word/filterWordsFromArray.js +0 -15
- package/src/languageProcessing/helpers/word/followsIndex.js +0 -25
- package/src/languageProcessing/helpers/word/getAllWordsFromTree.js +0 -23
- package/src/languageProcessing/helpers/word/getWords.js +0 -43
- package/src/languageProcessing/helpers/word/includesIndex.js +0 -30
- package/src/languageProcessing/helpers/word/indices.js +0 -146
- package/src/languageProcessing/helpers/word/markWordsInSentences.js +0 -173
- package/src/languageProcessing/helpers/word/matchWordInSentence.js +0 -61
- package/src/languageProcessing/helpers/word/splitIntoTokens.js +0 -46
- package/src/languageProcessing/index.js +0 -91
- package/src/languageProcessing/languages/_default/Researcher.js +0 -34
- package/src/languageProcessing/languages/_default/helpers/getStemmer.js +0 -11
- package/src/languageProcessing/languages/ar/Researcher.js +0 -46
- package/src/languageProcessing/languages/ar/config/firstWordExceptions.js +0 -14
- package/src/languageProcessing/languages/ar/config/functionWords.js +0 -329
- package/src/languageProcessing/languages/ar/config/internal/passiveVerbsWithLongVowel.js +0 -570
- package/src/languageProcessing/languages/ar/config/prefixedFunctionWords.js +0 -5
- package/src/languageProcessing/languages/ar/config/transitionWords.js +0 -19
- package/src/languageProcessing/languages/ar/config/twoPartTransitionWords.js +0 -7
- package/src/languageProcessing/languages/ar/helpers/createBasicWordForms.js +0 -32
- package/src/languageProcessing/languages/ar/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/ar/helpers/internal/stem.js +0 -632
- package/src/languageProcessing/languages/ar/helpers/isPassiveSentence.js +0 -33
- package/src/languageProcessing/languages/ca/Researcher.js +0 -43
- package/src/languageProcessing/languages/ca/config/sentenceLength.js +0 -3
- package/src/languageProcessing/languages/ca/config/transitionWords.js +0 -31
- package/src/languageProcessing/languages/ca/config/twoPartTransitionWords.js +0 -7
- package/src/languageProcessing/languages/ca/helpers/getStemmer.js +0 -11
- package/src/languageProcessing/languages/cs/Researcher.js +0 -44
- package/src/languageProcessing/languages/cs/config/firstWordExceptions.js +0 -15
- package/src/languageProcessing/languages/cs/config/functionWords.js +0 -121
- package/src/languageProcessing/languages/cs/config/internal/passiveVoiceAuxiliaries.js +0 -38
- package/src/languageProcessing/languages/cs/config/internal/passiveVoiceEndings.js +0 -54
- package/src/languageProcessing/languages/cs/config/stopWords.js +0 -42
- package/src/languageProcessing/languages/cs/config/transitionWords.js +0 -26
- package/src/languageProcessing/languages/cs/config/twoPartTransitionWords.js +0 -8
- package/src/languageProcessing/languages/cs/helpers/getClauses.js +0 -26
- package/src/languageProcessing/languages/cs/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/cs/helpers/internal/getParticiples.js +0 -16
- package/src/languageProcessing/languages/cs/helpers/internal/stem.js +0 -499
- package/src/languageProcessing/languages/cs/values/Clause.js +0 -34
- package/src/languageProcessing/languages/de/Researcher.js +0 -52
- package/src/languageProcessing/languages/de/config/firstWordExceptions.js +0 -17
- package/src/languageProcessing/languages/de/config/functionWords.js +0 -303
- package/src/languageProcessing/languages/de/config/internal/exceptionsParticiplesActive.js +0 -2231
- package/src/languageProcessing/languages/de/config/internal/passiveVoiceAuxiliaries.js +0 -96
- package/src/languageProcessing/languages/de/config/internal/passiveVoiceIrregulars.js +0 -368
- package/src/languageProcessing/languages/de/config/internal/passiveVoiceRegex.js +0 -72
- package/src/languageProcessing/languages/de/config/keyphraseLength.js +0 -11
- package/src/languageProcessing/languages/de/config/stopWords.js +0 -67
- package/src/languageProcessing/languages/de/config/transitionWords.js +0 -31
- package/src/languageProcessing/languages/de/config/twoPartTransitionWords.js +0 -12
- package/src/languageProcessing/languages/de/config/wordComplexity.js +0 -4
- package/src/languageProcessing/languages/de/helpers/calculateFleschReadingScore.js +0 -18
- package/src/languageProcessing/languages/de/helpers/checkIfWordIsComplex.js +0 -40
- package/src/languageProcessing/languages/de/helpers/checkIfWordIsFunction.js +0 -15
- package/src/languageProcessing/languages/de/helpers/getClauses.js +0 -25
- package/src/languageProcessing/languages/de/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/de/helpers/internal/SentenceTokenizer.js +0 -31
- package/src/languageProcessing/languages/de/helpers/internal/detectAndStemRegularParticiple.js +0 -128
- package/src/languageProcessing/languages/de/helpers/internal/determineStem.js +0 -128
- package/src/languageProcessing/languages/de/helpers/internal/getParticiples.js +0 -40
- package/src/languageProcessing/languages/de/helpers/internal/stem.js +0 -215
- package/src/languageProcessing/languages/de/helpers/memoizedSentenceTokenizer.js +0 -28
- package/src/languageProcessing/languages/de/values/Clause.js +0 -85
- package/src/languageProcessing/languages/el/Researcher.js +0 -46
- package/src/languageProcessing/languages/el/config/firstWordExceptions.js +0 -47
- package/src/languageProcessing/languages/el/config/functionWords.js +0 -116
- package/src/languageProcessing/languages/el/config/internal/auxiliaries.js +0 -19
- package/src/languageProcessing/languages/el/config/internal/morphologicalPassiveSuffixes.js +0 -87
- package/src/languageProcessing/languages/el/config/internal/nonPassiveVerbStems.js +0 -138
- package/src/languageProcessing/languages/el/config/stopWords.js +0 -854
- package/src/languageProcessing/languages/el/config/transitionWords.js +0 -26
- package/src/languageProcessing/languages/el/config/twoPartTransitionWords.js +0 -10
- package/src/languageProcessing/languages/el/helpers/getClauses.js +0 -25
- package/src/languageProcessing/languages/el/helpers/getStemmer.js +0 -21
- package/src/languageProcessing/languages/el/helpers/internal/getParticiples.js +0 -20
- package/src/languageProcessing/languages/el/helpers/internal/stem.js +0 -368
- package/src/languageProcessing/languages/el/helpers/isPassiveSentence.js +0 -38
- package/src/languageProcessing/languages/el/values/Clause.js +0 -37
- package/src/languageProcessing/languages/en/Researcher.js +0 -46
- package/src/languageProcessing/languages/en/config/abbreviations.js +0 -55
- package/src/languageProcessing/languages/en/config/firstWordExceptions.js +0 -14
- package/src/languageProcessing/languages/en/config/functionWords.js +0 -186
- package/src/languageProcessing/languages/en/config/internal/passiveVoiceAuxiliaries.js +0 -44
- package/src/languageProcessing/languages/en/config/internal/passiveVoiceIrregulars.js +0 -354
- package/src/languageProcessing/languages/en/config/internal/passiveVoiceNonVerbEndingEd.js +0 -3047
- package/src/languageProcessing/languages/en/config/regularParticiplesRegex.js +0 -5
- package/src/languageProcessing/languages/en/config/stopWords.js +0 -52
- package/src/languageProcessing/languages/en/config/transitionWords.js +0 -48
- package/src/languageProcessing/languages/en/config/twoPartTransitionWords.js +0 -7
- package/src/languageProcessing/languages/en/config/wordComplexity.js +0 -5
- package/src/languageProcessing/languages/en/helpers/calculateFleschReadingScore.js +0 -18
- package/src/languageProcessing/languages/en/helpers/checkIfWordIsComplex.js +0 -43
- package/src/languageProcessing/languages/en/helpers/getClauses.js +0 -49
- package/src/languageProcessing/languages/en/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/en/helpers/internal/determineStem.js +0 -178
- package/src/languageProcessing/languages/en/helpers/internal/getAdjectiveStem.js +0 -162
- package/src/languageProcessing/languages/en/helpers/internal/getParticiples.js +0 -25
- package/src/languageProcessing/languages/en/helpers/internal/getVerbStem.js +0 -237
- package/src/languageProcessing/languages/en/values/Clause.js +0 -68
- package/src/languageProcessing/languages/es/Researcher.js +0 -48
- package/src/languageProcessing/languages/es/config/firstWordExceptions.js +0 -16
- package/src/languageProcessing/languages/es/config/functionWords.js +0 -321
- package/src/languageProcessing/languages/es/config/internal/passiveVoiceAuxiliaries.js +0 -60
- package/src/languageProcessing/languages/es/config/internal/passiveVoiceParticiples.js +0 -7327
- package/src/languageProcessing/languages/es/config/sentenceLength.js +0 -3
- package/src/languageProcessing/languages/es/config/stopWords.js +0 -33
- package/src/languageProcessing/languages/es/config/transitionWords.js +0 -40
- package/src/languageProcessing/languages/es/config/twoPartTransitionWords.js +0 -10
- package/src/languageProcessing/languages/es/config/wordComplexity.js +0 -4
- package/src/languageProcessing/languages/es/helpers/calculateFleschReadingScore.js +0 -18
- package/src/languageProcessing/languages/es/helpers/checkIfWordIsComplex.js +0 -56
- package/src/languageProcessing/languages/es/helpers/getClauses.js +0 -29
- package/src/languageProcessing/languages/es/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/es/helpers/internal/checkVerbStemModifications.js +0 -41
- package/src/languageProcessing/languages/es/helpers/internal/getParticiples.js +0 -35
- package/src/languageProcessing/languages/es/helpers/internal/stem.js +0 -793
- package/src/languageProcessing/languages/es/values/Clause.js +0 -47
- package/src/languageProcessing/languages/fa/Researcher.js +0 -47
- package/src/languageProcessing/languages/fa/config/firstWordExceptions.js +0 -12
- package/src/languageProcessing/languages/fa/config/functionWords.js +0 -122
- package/src/languageProcessing/languages/fa/config/internal/participles.js +0 -1429
- package/src/languageProcessing/languages/fa/config/sentenceLength.js +0 -3
- package/src/languageProcessing/languages/fa/config/transitionWords.js +0 -20
- package/src/languageProcessing/languages/fa/config/twoPartTransitionWords.js +0 -9
- package/src/languageProcessing/languages/fa/helpers/createBasicWordForms.js +0 -97
- package/src/languageProcessing/languages/fa/helpers/getStemmer.js +0 -13
- package/src/languageProcessing/languages/fa/helpers/isPassiveSentence.js +0 -14
- package/src/languageProcessing/languages/fr/Researcher.js +0 -46
- package/src/languageProcessing/languages/fr/config/firstWordExceptions.js +0 -16
- package/src/languageProcessing/languages/fr/config/functionWords.js +0 -281
- package/src/languageProcessing/languages/fr/config/internal/exceptionsParticiplesActive.js +0 -1510
- package/src/languageProcessing/languages/fr/config/internal/passiveVoiceAuxiliaries.js +0 -108
- package/src/languageProcessing/languages/fr/config/internal/passiveVoiceIrregulars.js +0 -565
- package/src/languageProcessing/languages/fr/config/stopWords.js +0 -119
- package/src/languageProcessing/languages/fr/config/transitionWords.js +0 -59
- package/src/languageProcessing/languages/fr/config/twoPartTransitionWords.js +0 -15
- package/src/languageProcessing/languages/fr/config/wordComplexity.js +0 -4
- package/src/languageProcessing/languages/fr/helpers/calculateFleschReadingScore.js +0 -18
- package/src/languageProcessing/languages/fr/helpers/checkIfWordIsComplex.js +0 -67
- package/src/languageProcessing/languages/fr/helpers/getClauses.js +0 -34
- package/src/languageProcessing/languages/fr/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/fr/helpers/internal/getParticiples.js +0 -72
- package/src/languageProcessing/languages/fr/helpers/internal/stem.js +0 -633
- package/src/languageProcessing/languages/fr/values/Clause.js +0 -96
- package/src/languageProcessing/languages/he/Researcher.js +0 -50
- package/src/languageProcessing/languages/he/config/firstWordExceptions.js +0 -13
- package/src/languageProcessing/languages/he/config/functionWords.js +0 -564
- package/src/languageProcessing/languages/he/config/internal/regularRootsHufal.js +0 -186
- package/src/languageProcessing/languages/he/config/internal/regularRootsNifal.js +0 -195
- package/src/languageProcessing/languages/he/config/internal/regularRootsPual.js +0 -168
- package/src/languageProcessing/languages/he/config/passiveVoice/regularRootsHufal.js +0 -188
- package/src/languageProcessing/languages/he/config/passiveVoice/regularRootsNifal.js +0 -197
- package/src/languageProcessing/languages/he/config/passiveVoice/regularRootsPual.js +0 -170
- package/src/languageProcessing/languages/he/config/prefixedFunctionWords.js +0 -2
- package/src/languageProcessing/languages/he/config/sentenceLength.js +0 -3
- package/src/languageProcessing/languages/he/config/transitionWords.js +0 -28
- package/src/languageProcessing/languages/he/config/twoPartTransitionWords.js +0 -8
- package/src/languageProcessing/languages/he/helpers/createBasicWordForms.js +0 -33
- package/src/languageProcessing/languages/he/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/he/helpers/internal/stem.js +0 -52
- package/src/languageProcessing/languages/he/helpers/isPassiveSentence.js +0 -96
- package/src/languageProcessing/languages/he/helpers/stem.js +0 -52
- package/src/languageProcessing/languages/hu/Researcher.js +0 -48
- package/src/languageProcessing/languages/hu/config/firstWordExceptions.js +0 -31
- package/src/languageProcessing/languages/hu/config/functionWords.js +0 -284
- package/src/languageProcessing/languages/hu/config/internal/auxiliaries.js +0 -97
- package/src/languageProcessing/languages/hu/config/internal/morphologicalPassiveAffixes.js +0 -125
- package/src/languageProcessing/languages/hu/config/internal/nonPassivesInVaAndVe.js +0 -265
- package/src/languageProcessing/languages/hu/config/internal/odikVerbs.js +0 -273
- package/src/languageProcessing/languages/hu/config/internal/participles.js +0 -412
- package/src/languageProcessing/languages/hu/config/stopWords.js +0 -213
- package/src/languageProcessing/languages/hu/config/transitionWords.js +0 -42
- package/src/languageProcessing/languages/hu/config/twoPartTransitionWords.js +0 -34
- package/src/languageProcessing/languages/hu/helpers/getClauses.js +0 -25
- package/src/languageProcessing/languages/hu/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/hu/helpers/internal/getParticiples.js +0 -21
- package/src/languageProcessing/languages/hu/helpers/internal/stem.js +0 -389
- package/src/languageProcessing/languages/hu/helpers/isPassiveSentence.js +0 -54
- package/src/languageProcessing/languages/hu/values/Clause.js +0 -41
- package/src/languageProcessing/languages/id/Researcher.js +0 -46
- package/src/languageProcessing/languages/id/config/firstWordExceptions.js +0 -13
- package/src/languageProcessing/languages/id/config/functionWords.js +0 -202
- package/src/languageProcessing/languages/id/config/internal/nonPassiveVerbsStartingDi.js +0 -215
- package/src/languageProcessing/languages/id/config/transitionWords.js +0 -62
- package/src/languageProcessing/languages/id/config/twoPartTransitionWords.js +0 -13
- package/src/languageProcessing/languages/id/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/id/helpers/internal/stem.js +0 -462
- package/src/languageProcessing/languages/id/helpers/internal/stemHelpers.js +0 -78
- package/src/languageProcessing/languages/id/helpers/isPassiveSentence.js +0 -39
- package/src/languageProcessing/languages/id/helpers/splitIntoTokensCustom.js +0 -47
- package/src/languageProcessing/languages/it/Researcher.js +0 -48
- package/src/languageProcessing/languages/it/config/firstWordExceptions.js +0 -17
- package/src/languageProcessing/languages/it/config/functionWords.js +0 -277
- package/src/languageProcessing/languages/it/config/internal/passiveVoiceAuxiliaries.js +0 -98
- package/src/languageProcessing/languages/it/config/internal/passiveVoiceParticiples.js +0 -7197
- package/src/languageProcessing/languages/it/config/sentenceLength.js +0 -3
- package/src/languageProcessing/languages/it/config/stopWords.js +0 -57
- package/src/languageProcessing/languages/it/config/transitionWords.js +0 -104
- package/src/languageProcessing/languages/it/config/twoPartTransitionWords.js +0 -9
- package/src/languageProcessing/languages/it/helpers/calculateFleschReadingScore.js +0 -15
- package/src/languageProcessing/languages/it/helpers/getClauses.js +0 -32
- package/src/languageProcessing/languages/it/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/it/helpers/internal/getParticiples.js +0 -34
- package/src/languageProcessing/languages/it/helpers/internal/stem.js +0 -436
- package/src/languageProcessing/languages/it/values/Clause.js +0 -47
- package/src/languageProcessing/languages/ja/Researcher.js +0 -86
- package/src/languageProcessing/languages/ja/config/assessmentApplicabilityCharacterCount.js +0 -4
- package/src/languageProcessing/languages/ja/config/firstWordExceptions.js +0 -8
- package/src/languageProcessing/languages/ja/config/functionWords.js +0 -563
- package/src/languageProcessing/languages/ja/config/keyphraseLength.js +0 -16
- package/src/languageProcessing/languages/ja/config/metaDescriptionLength.js +0 -4
- package/src/languageProcessing/languages/ja/config/paragraphLength.js +0 -10
- package/src/languageProcessing/languages/ja/config/sentenceLength.js +0 -4
- package/src/languageProcessing/languages/ja/config/subheadingsTooLong.js +0 -18
- package/src/languageProcessing/languages/ja/config/textLength.js +0 -47
- package/src/languageProcessing/languages/ja/config/topicLength.js +0 -5
- package/src/languageProcessing/languages/ja/config/transitionWords.js +0 -354
- package/src/languageProcessing/languages/ja/customResearches/findKeyphraseInSEOTitle.js +0 -98
- package/src/languageProcessing/languages/ja/customResearches/getKeyphraseLength.js +0 -19
- package/src/languageProcessing/languages/ja/customResearches/getWordForms.js +0 -50
- package/src/languageProcessing/languages/ja/customResearches/textLength.js +0 -24
- package/src/languageProcessing/languages/ja/helpers/countCharacters.js +0 -19
- package/src/languageProcessing/languages/ja/helpers/customGetStemmer.js +0 -21
- package/src/languageProcessing/languages/ja/helpers/getContentWords.js +0 -21
- package/src/languageProcessing/languages/ja/helpers/getWords.js +0 -31
- package/src/languageProcessing/languages/ja/helpers/internal/SentenceTokenizer.js +0 -102
- package/src/languageProcessing/languages/ja/helpers/internal/createWordForms.js +0 -68
- package/src/languageProcessing/languages/ja/helpers/internal/determineStem.js +0 -17
- package/src/languageProcessing/languages/ja/helpers/matchTextWithWord.js +0 -53
- package/src/languageProcessing/languages/ja/helpers/matchTransitionWords.js +0 -25
- package/src/languageProcessing/languages/ja/helpers/memoizedSentenceTokenizer.js +0 -28
- package/src/languageProcessing/languages/ja/helpers/splitIntoTokensCustom.js +0 -20
- package/src/languageProcessing/languages/ja/helpers/wordsCharacterCount.js +0 -13
- package/src/languageProcessing/languages/nb/Researcher.js +0 -45
- package/src/languageProcessing/languages/nb/config/firstWordExceptions.js +0 -12
- package/src/languageProcessing/languages/nb/config/functionWords.js +0 -106
- package/src/languageProcessing/languages/nb/config/internal/participles.js +0 -3127
- package/src/languageProcessing/languages/nb/config/internal/passiveVoiceAuxiliaries.js +0 -15
- package/src/languageProcessing/languages/nb/config/stopWords.js +0 -39
- package/src/languageProcessing/languages/nb/config/transitionWords.js +0 -21
- package/src/languageProcessing/languages/nb/config/twoPartTransitionWords.js +0 -10
- package/src/languageProcessing/languages/nb/helpers/getClauses.js +0 -28
- package/src/languageProcessing/languages/nb/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/nb/helpers/internal/getParticiples.js +0 -24
- package/src/languageProcessing/languages/nb/helpers/internal/stem.js +0 -133
- package/src/languageProcessing/languages/nb/values/Clause.js +0 -43
- package/src/languageProcessing/languages/nl/Researcher.js +0 -48
- package/src/languageProcessing/languages/nl/config/firstWordExceptions.js +0 -15
- package/src/languageProcessing/languages/nl/config/functionWords.js +0 -233
- package/src/languageProcessing/languages/nl/config/internal/nonParticiples.js +0 -2515
- package/src/languageProcessing/languages/nl/config/internal/passiveVoiceAuxiliaries.js +0 -13
- package/src/languageProcessing/languages/nl/config/internal/passiveVoiceIrregulars.js +0 -474
- package/src/languageProcessing/languages/nl/config/keyphraseLength.js +0 -10
- package/src/languageProcessing/languages/nl/config/stopWords.js +0 -35
- package/src/languageProcessing/languages/nl/config/transitionWords.js +0 -22
- package/src/languageProcessing/languages/nl/config/twoPartTransitionWords.js +0 -8
- package/src/languageProcessing/languages/nl/helpers/calculateFleschReadingScore.js +0 -15
- package/src/languageProcessing/languages/nl/helpers/getClauses.js +0 -25
- package/src/languageProcessing/languages/nl/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/nl/helpers/internal/checkExceptionsWithFullForms.js +0 -128
- package/src/languageProcessing/languages/nl/helpers/internal/detectAndStemRegularParticiple.js +0 -324
- package/src/languageProcessing/languages/nl/helpers/internal/detectAndStemSuffixes.js +0 -164
- package/src/languageProcessing/languages/nl/helpers/internal/determineStem.js +0 -133
- package/src/languageProcessing/languages/nl/helpers/internal/getParticiples.js +0 -25
- package/src/languageProcessing/languages/nl/helpers/internal/getStemWordsWithTAndDEnding.js +0 -183
- package/src/languageProcessing/languages/nl/helpers/internal/stem.js +0 -146
- package/src/languageProcessing/languages/nl/helpers/internal/stemModificationHelpers.js +0 -109
- package/src/languageProcessing/languages/nl/helpers/internal/stemTOrDFromEndOfWord.js +0 -65
- package/src/languageProcessing/languages/nl/values/Clause.js +0 -62
- package/src/languageProcessing/languages/pl/Researcher.js +0 -47
- package/src/languageProcessing/languages/pl/config/firstWordExceptions.js +0 -12
- package/src/languageProcessing/languages/pl/config/functionWords.js +0 -421
- package/src/languageProcessing/languages/pl/config/internal/auxiliaries.js +0 -85
- package/src/languageProcessing/languages/pl/config/internal/participles.js +0 -26433
- package/src/languageProcessing/languages/pl/config/sentenceLength.js +0 -10
- package/src/languageProcessing/languages/pl/config/stopWords.js +0 -36
- package/src/languageProcessing/languages/pl/config/transitionWords.js +0 -42
- package/src/languageProcessing/languages/pl/config/twoPartTransitionWords.js +0 -8
- package/src/languageProcessing/languages/pl/helpers/getClauses.js +0 -25
- package/src/languageProcessing/languages/pl/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/pl/helpers/internal/getParticiples.js +0 -18
- package/src/languageProcessing/languages/pl/helpers/internal/stem.js +0 -161
- package/src/languageProcessing/languages/pl/values/Clause.js +0 -53
- package/src/languageProcessing/languages/pt/Researcher.js +0 -48
- package/src/languageProcessing/languages/pt/config/firstWordExceptions.js +0 -15
- package/src/languageProcessing/languages/pt/config/functionWords.js +0 -226
- package/src/languageProcessing/languages/pt/config/internal/passiveVoiceAuxiliaries.js +0 -66
- package/src/languageProcessing/languages/pt/config/internal/passiveVoiceParticiples.js +0 -4088
- package/src/languageProcessing/languages/pt/config/sentenceLength.js +0 -3
- package/src/languageProcessing/languages/pt/config/stopWords.js +0 -50
- package/src/languageProcessing/languages/pt/config/transitionWords.js +0 -34
- package/src/languageProcessing/languages/pt/config/twoPartTransitionWords.js +0 -9
- package/src/languageProcessing/languages/pt/helpers/calculateFleschReadingScore.js +0 -15
- package/src/languageProcessing/languages/pt/helpers/getClauses.js +0 -29
- package/src/languageProcessing/languages/pt/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/pt/helpers/internal/getParticiples.js +0 -35
- package/src/languageProcessing/languages/pt/helpers/internal/stem.js +0 -319
- package/src/languageProcessing/languages/pt/values/Clause.js +0 -43
- package/src/languageProcessing/languages/ru/Researcher.js +0 -48
- package/src/languageProcessing/languages/ru/config/firstWordExceptions.js +0 -14
- package/src/languageProcessing/languages/ru/config/fleschReadingEaseScores.js +0 -20
- package/src/languageProcessing/languages/ru/config/functionWords.js +0 -519
- package/src/languageProcessing/languages/ru/config/internal/participlesShortenedList.js +0 -2914
- package/src/languageProcessing/languages/ru/config/internal/passiveVoiceParticiples.js +0 -6295
- package/src/languageProcessing/languages/ru/config/sentenceLength.js +0 -3
- package/src/languageProcessing/languages/ru/config/transitionWords.js +0 -62
- package/src/languageProcessing/languages/ru/config/twoPartTransitionWords.js +0 -14
- package/src/languageProcessing/languages/ru/helpers/calculateFleschReadingScore.js +0 -16
- package/src/languageProcessing/languages/ru/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/ru/helpers/internal/stem.js +0 -288
- package/src/languageProcessing/languages/ru/helpers/isPassiveSentence.js +0 -14
- package/src/languageProcessing/languages/sk/Researcher.js +0 -46
- package/src/languageProcessing/languages/sk/config/firstWordExceptions.js +0 -14
- package/src/languageProcessing/languages/sk/config/functionWords.js +0 -855
- package/src/languageProcessing/languages/sk/config/internal/nonPassives.js +0 -1074
- package/src/languageProcessing/languages/sk/config/internal/passiveVoiceAuxiliaries.js +0 -22
- package/src/languageProcessing/languages/sk/config/stopWords.js +0 -34
- package/src/languageProcessing/languages/sk/config/transitionWords.js +0 -23
- package/src/languageProcessing/languages/sk/config/twoPartTransitionWords.js +0 -10
- package/src/languageProcessing/languages/sk/helpers/getClauses.js +0 -26
- package/src/languageProcessing/languages/sk/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/sk/helpers/internal/getParticiples.js +0 -16
- package/src/languageProcessing/languages/sk/helpers/internal/stem.js +0 -319
- package/src/languageProcessing/languages/sk/values/Clause.js +0 -39
- package/src/languageProcessing/languages/sv/Researcher.js +0 -45
- package/src/languageProcessing/languages/sv/config/firstWordExceptions.js +0 -15
- package/src/languageProcessing/languages/sv/config/functionWords.js +0 -176
- package/src/languageProcessing/languages/sv/config/internal/passiveVerbs.js +0 -10400
- package/src/languageProcessing/languages/sv/config/keyphraseLength.js +0 -11
- package/src/languageProcessing/languages/sv/config/transitionWords.js +0 -35
- package/src/languageProcessing/languages/sv/config/twoPartTransitionWords.js +0 -8
- package/src/languageProcessing/languages/sv/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/sv/helpers/internal/stem.js +0 -152
- package/src/languageProcessing/languages/sv/helpers/isPassiveSentence.js +0 -14
- package/src/languageProcessing/languages/tr/Researcher.js +0 -44
- package/src/languageProcessing/languages/tr/config/firstWordExceptions.js +0 -13
- package/src/languageProcessing/languages/tr/config/functionWords.js +0 -116
- package/src/languageProcessing/languages/tr/config/internal/nonPassiveExceptions.js +0 -574
- package/src/languageProcessing/languages/tr/config/internal/passiveEndings.js +0 -151
- package/src/languageProcessing/languages/tr/config/sentenceLength.js +0 -7
- package/src/languageProcessing/languages/tr/config/transitionWords.js +0 -42
- package/src/languageProcessing/languages/tr/config/twoPartTransitionWords.js +0 -7
- package/src/languageProcessing/languages/tr/helpers/getStemmer.js +0 -22
- package/src/languageProcessing/languages/tr/helpers/internal/stem.js +0 -20
- package/src/languageProcessing/languages/tr/helpers/isPassiveSentence.js +0 -43
- package/src/languageProcessing/researches/altTagCount.js +0 -70
- package/src/languageProcessing/researches/countSentencesFromText.js +0 -19
- package/src/languageProcessing/researches/findKeyphraseInSEOTitle.js +0 -257
- package/src/languageProcessing/researches/findKeywordInFirstParagraph.js +0 -86
- package/src/languageProcessing/researches/findTransitionWords.js +0 -123
- package/src/languageProcessing/researches/functionWordsInKeyphrase.js +0 -44
- package/src/languageProcessing/researches/getAnchorsWithKeyphrase.js +0 -227
- package/src/languageProcessing/researches/getFleschReadingScore.js +0 -150
- package/src/languageProcessing/researches/getKeywordDensity.js +0 -44
- package/src/languageProcessing/researches/getLinkStatistics.js +0 -54
- package/src/languageProcessing/researches/getLinks.js +0 -18
- package/src/languageProcessing/researches/getLongCenterAlignedTexts.js +0 -37
- package/src/languageProcessing/researches/getParagraphLength.js +0 -44
- package/src/languageProcessing/researches/getParagraphs.js +0 -18
- package/src/languageProcessing/researches/getPassiveVoiceResult.js +0 -129
- package/src/languageProcessing/researches/getProminentWordsForInsights.js +0 -48
- package/src/languageProcessing/researches/getProminentWordsForInternalLinking.js +0 -119
- package/src/languageProcessing/researches/getSentenceBeginnings.js +0 -124
- package/src/languageProcessing/researches/getSubheadingTextLengths.js +0 -59
- package/src/languageProcessing/researches/getWordForms.js +0 -204
- package/src/languageProcessing/researches/h1s.js +0 -10
- package/src/languageProcessing/researches/imageCount.js +0 -16
- package/src/languageProcessing/researches/index.js +0 -5
- package/src/languageProcessing/researches/keyphraseDistribution.js +0 -249
- package/src/languageProcessing/researches/keyphraseLength.js +0 -17
- package/src/languageProcessing/researches/keywordCount.js +0 -134
- package/src/languageProcessing/researches/keywordCountInUrl.js +0 -57
- package/src/languageProcessing/researches/matchKeywordInSubheadings.js +0 -62
- package/src/languageProcessing/researches/metaDescriptionKeyword.js +0 -85
- package/src/languageProcessing/researches/metaDescriptionLength.js +0 -12
- package/src/languageProcessing/researches/pageTitleWidth.js +0 -11
- package/src/languageProcessing/researches/readingTime.js +0 -82
- package/src/languageProcessing/researches/sentences.js +0 -20
- package/src/languageProcessing/researches/videoCount.js +0 -32
- package/src/languageProcessing/researches/wordComplexity.js +0 -129
- package/src/languageProcessing/researches/wordCountInText.js +0 -29
- package/src/languageProcessing/values/Clause.js +0 -108
- package/src/languageProcessing/values/ProminentWord.js +0 -95
- package/src/languageProcessing/values/Sentence.js +0 -111
- package/src/languageProcessing/values/index.js +0 -9
- package/src/markers/addMark.js +0 -9
- package/src/markers/addMarkSingleWord.js +0 -32
- package/src/markers/index.js +0 -7
- package/src/markers/removeDuplicateMarks.js +0 -27
- package/src/markers/removeMarks.js +0 -11
- package/src/parse/build/build.js +0 -52
- package/src/parse/build/index.js +0 -10
- package/src/parse/build/private/adapt.js +0 -113
- package/src/parse/build/private/adaptAttributes.js +0 -36
- package/src/parse/build/private/alwaysFilterElements.js +0 -75
- package/src/parse/build/private/combineIntoImplicitParagraphs.js +0 -130
- package/src/parse/build/private/filterBeforeTokenizing.js +0 -32
- package/src/parse/build/private/filterHelpers.js +0 -44
- package/src/parse/build/private/filterTree.js +0 -42
- package/src/parse/build/private/getTextElementPositions.js +0 -184
- package/src/parse/build/private/helpers/parseClassAttribute.js +0 -9
- package/src/parse/build/private/isPhrasingContent.js +0 -28
- package/src/parse/build/private/parseBlocks.js +0 -151
- package/src/parse/build/private/tokenize.js +0 -74
- package/src/parse/language/LanguageProcessor.js +0 -74
- package/src/parse/structure/Heading.js +0 -26
- package/src/parse/structure/Node.js +0 -69
- package/src/parse/structure/Paragraph.js +0 -48
- package/src/parse/structure/Sentence.js +0 -30
- package/src/parse/structure/SourceCodeLocation.js +0 -41
- package/src/parse/structure/Text.js +0 -27
- package/src/parse/structure/Token.js +0 -24
- package/src/parse/structure/index.js +0 -16
- package/src/parse/traverse/findAllInTree.js +0 -58
- package/src/parse/traverse/index.js +0 -12
- package/src/parse/traverse/innerText.js +0 -26
- package/src/parsedPaper/ParsedPaper.js +0 -92
- package/src/parsedPaper/assess/TreeAssessor.js +0 -184
- package/src/parsedPaper/assess/assessmentListFactories.js +0 -73
- package/src/parsedPaper/assess/assessments/Assessment.js +0 -79
- package/src/parsedPaper/assess/assessments/index.js +0 -6
- package/src/parsedPaper/assess/assessorFactories.js +0 -104
- package/src/parsedPaper/assess/cornerstone/assessmentListFactories.js +0 -47
- package/src/parsedPaper/assess/cornerstone/index.js +0 -5
- package/src/parsedPaper/assess/index.js +0 -20
- package/src/parsedPaper/build/PaperParser.js +0 -105
- package/src/parsedPaper/build/linguisticParsing/Sentence.js +0 -89
- package/src/parsedPaper/build/linguisticParsing/SentenceTokenizer.js +0 -323
- package/src/parsedPaper/build/linguisticParsing/parseText.js +0 -20
- package/src/parsedPaper/build/tree/TreeBuilder.js +0 -75
- package/src/parsedPaper/build/tree/cleanup/calculateTextIndices.js +0 -190
- package/src/parsedPaper/build/tree/cleanup/getElementContent.js +0 -21
- package/src/parsedPaper/build/tree/cleanup/postParsing.js +0 -37
- package/src/parsedPaper/build/tree/html/HTMLTreeConverter.js +0 -230
- package/src/parsedPaper/build/tree/html/buildTree.js +0 -31
- package/src/parsedPaper/build/tree/html/htmlConstants.js +0 -37
- package/src/parsedPaper/build/tree/index.js +0 -14
- package/src/parsedPaper/build/tree/metadata/buildTree.js +0 -32
- package/src/parsedPaper/research/TreeResearcher.js +0 -134
- package/src/parsedPaper/research/index.js +0 -13
- package/src/parsedPaper/research/researches/Headings.js +0 -20
- package/src/parsedPaper/research/researches/LinkStatistics.js +0 -128
- package/src/parsedPaper/research/researches/Research.js +0 -50
- package/src/parsedPaper/research/researches/index.js +0 -1
- package/src/parsedPaper/structure/tree/FormattingElement.js +0 -67
- package/src/parsedPaper/structure/tree/SourceCodeLocation.js +0 -31
- package/src/parsedPaper/structure/tree/TextContainer.js +0 -85
- package/src/parsedPaper/structure/tree/index.js +0 -22
- package/src/parsedPaper/structure/tree/nodes/Heading.js +0 -26
- package/src/parsedPaper/structure/tree/nodes/LeafNode.js +0 -75
- package/src/parsedPaper/structure/tree/nodes/List.js +0 -47
- package/src/parsedPaper/structure/tree/nodes/ListItem.js +0 -26
- package/src/parsedPaper/structure/tree/nodes/MetadataMiscellaneous.js +0 -46
- package/src/parsedPaper/structure/tree/nodes/MetadataText.js +0 -26
- package/src/parsedPaper/structure/tree/nodes/Node.js +0 -154
- package/src/parsedPaper/structure/tree/nodes/Paragraph.js +0 -24
- package/src/parsedPaper/structure/tree/nodes/StructuredNode.js +0 -52
- package/src/parsedPaper/structure/tree/nodes/index.js +0 -21
- package/src/scoring/assessments/assessment.js +0 -63
- package/src/scoring/assessments/index.js +0 -58
- package/src/scoring/assessments/readability/ParagraphTooLongAssessment.js +0 -173
- package/src/scoring/assessments/readability/SentenceBeginningsAssessment.js +0 -132
- package/src/scoring/assessments/readability/SentenceLengthInTextAssessment.js +0 -186
- package/src/scoring/assessments/readability/TransitionWordsAssessment.js +0 -168
- package/src/scoring/assessments/seo/ImageCountAssessment.js +0 -112
- package/src/scoring/assessments/seo/InternalLinksAssessment.js +0 -114
- package/src/scoring/assessments/seo/IntroductionKeywordAssessment.js +0 -110
- package/src/scoring/assessments/seo/KeyphraseAssessment.js +0 -104
- package/src/scoring/assessments/seo/KeyphraseLengthAssessment.js +0 -110
- package/src/scoring/assessments/seo/KeywordDensityAssessment.js +0 -116
- package/src/scoring/assessments/seo/MetaDescriptionKeywordAssessment.js +0 -114
- package/src/scoring/assessments/seo/MetaDescriptionLengthAssessment.js +0 -112
- package/src/scoring/assessments/seo/MetaTitleKeywordAssessment.js +0 -111
- package/src/scoring/assessments/seo/NumberInMetaTitleAssessment.js +0 -107
- package/src/scoring/assessments/seo/OutboundLinksAssessment.js +0 -111
- package/src/scoring/assessments/seo/PageTitleWidthAssessment.js +0 -104
- package/src/scoring/assessments/seo/SingleH1Assessment.js +0 -118
- package/src/scoring/assessments/seo/SingleTitleAssessment.js +0 -108
- package/src/scoring/assessments/seo/SubHeadingsKeywordAssessment.js +0 -107
- package/src/scoring/assessments/seo/TextImagesAssessment.js +0 -144
- package/src/scoring/assessments/seo/TextLengthAssessment.js +0 -100
- package/src/scoring/assessments/seo/UrlKeywordAssessment.js +0 -111
- package/src/scoring/assessments/seo/UrlLengthAssessment.js +0 -103
- package/src/scoring/assessors/assessor.js +0 -269
- package/src/scoring/assessors/avadaAssessor.js +0 -67
- package/src/scoring/assessors/contentAssessor.js +0 -159
- package/src/scoring/assessors/index.js +0 -4
- package/src/scoring/assessors/seoAssessor.js +0 -57
- package/src/scoring/helpers/assessments/checkForTooLongSentences.js +0 -13
- package/src/scoring/helpers/assessments/inRange.js +0 -49
- package/src/scoring/helpers/assessments/keyphraseLengthFactor.js +0 -10
- package/src/scoring/helpers/assessments/recommendedKeywordCount.js +0 -43
- package/src/scoring/helpers/index.js +0 -74
- package/src/scoring/interpreters/index.js +0 -5
- package/src/scoring/interpreters/scoreToRating.js +0 -31
- package/src/scoring/renderers/AssessorPresenter.js +0 -360
- package/src/scoring/scoreAggregators/ReadabilityScoreAggregator.js +0 -203
- package/src/scoring/scoreAggregators/SEOScoreAggregator.js +0 -54
- package/src/scoring/scoreAggregators/ScoreAggregator.js +0 -23
- package/src/scoring/scoreAggregators/index.js +0 -3
- package/src/values/AssessmentResult.js +0 -496
- package/src/values/Mark.js +0 -271
- package/src/values/Paper.js +0 -425
- package/src/values/index.js +0 -9
- package/src/vendor/turkishStemmer.js +0 -3435
- package/tsconfig.json +0 -15
- /package/{src → build}/languageProcessing/languages/de/config/syllables.json +0 -0
- /package/{src → build}/languageProcessing/languages/en/config/syllables.json +0 -0
- /package/{src → build}/languageProcessing/languages/es/config/syllables.json +0 -0
- /package/{src → build}/languageProcessing/languages/fr/config/syllables.json +0 -0
- /package/{src → build}/languageProcessing/languages/it/config/syllables.json +0 -0
- /package/{src → build}/languageProcessing/languages/nl/config/syllables.json +0 -0
- /package/{src → build}/languageProcessing/languages/pt/config/syllables.json +0 -0
- /package/{src → build}/languageProcessing/languages/ru/config/syllables.json +0 -0
|
@@ -1,3435 +0,0 @@
|
|
|
1
|
-
/* eslint-disable max-statements, require-jsdoc, complexity, camelcase, prefer-const, no-labels, no-constant-condition, no-lone-blocks, max-depth, no-return-assign, max-len, no-bitwise, no-unused-vars */
|
|
2
|
-
/*
|
|
3
|
-
* Snowball JavaScript Library v0.5
|
|
4
|
-
* http://snowball.tartarus.org/
|
|
5
|
-
* https://github.com/mazko/jssnowball
|
|
6
|
-
*
|
|
7
|
-
* Copyright 20.12.2015 15:03:09, Oleg Mazko
|
|
8
|
-
* http://www.opensource.org/licenses/bsd-license.html
|
|
9
|
-
*
|
|
10
|
-
* BSD 3-Clause License
|
|
11
|
-
*
|
|
12
|
-
* Copyright (c) 2018, Oleg Mazko
|
|
13
|
-
* All rights reserved.
|
|
14
|
-
*
|
|
15
|
-
* Redistribution and use in source and binary forms, with or without
|
|
16
|
-
* modification, are permitted provided that the following conditions are met:
|
|
17
|
-
*
|
|
18
|
-
* * Redistributions of source code must retain the above copyright notice, this
|
|
19
|
-
* list of conditions and the following disclaimer.
|
|
20
|
-
*
|
|
21
|
-
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
22
|
-
* this list of conditions and the following disclaimer in the documentation
|
|
23
|
-
* and/or other materials provided with the distribution.
|
|
24
|
-
*
|
|
25
|
-
* * Neither the name of the copyright holder nor the names of its
|
|
26
|
-
* contributors may be used to endorse or promote products derived from
|
|
27
|
-
* this software without specific prior written permission.
|
|
28
|
-
*
|
|
29
|
-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
30
|
-
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
31
|
-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
32
|
-
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
33
|
-
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
34
|
-
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
35
|
-
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
36
|
-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
37
|
-
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
38
|
-
*
|
|
39
|
-
*/
|
|
40
|
-
class StringBuffer {
|
|
41
|
-
get b() {
|
|
42
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$b" ) ? this._$esjava$b : this._$esjava$b = "";
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
set b( v ) {
|
|
46
|
-
this._$esjava$b = v;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
length$esjava$0() {
|
|
50
|
-
return this.b.length;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
replace$esjava$3( start, end, str ) {
|
|
54
|
-
if ( start === 0 && end === this.b.length ) {
|
|
55
|
-
this.b = str;
|
|
56
|
-
} else {
|
|
57
|
-
const left = this.b.substring( 0, start ), right = this.b.substring( end );
|
|
58
|
-
this.b = left + str + right;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
substring$esjava$2( start, end ) {
|
|
63
|
-
return this.b.substring( start, end );
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
charAt$esjava$1( index ) {
|
|
67
|
-
return this.b.charCodeAt( index );
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
subSequence$esjava$2( start, end ) {
|
|
71
|
-
throw new Error( "NotImpl: CharSequence::subSequence" );
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
toString$esjava$0() {
|
|
75
|
-
return this.b;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
length( ...args ) {
|
|
79
|
-
switch ( args.length ) {
|
|
80
|
-
case 0:
|
|
81
|
-
return this.length$esjava$0( ...args );
|
|
82
|
-
}
|
|
83
|
-
return super.length( ...args );
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
replace( ...args ) {
|
|
87
|
-
switch ( args.length ) {
|
|
88
|
-
case 3:
|
|
89
|
-
return this.replace$esjava$3( ...args );
|
|
90
|
-
}
|
|
91
|
-
return super.replace( ...args );
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
substring( ...args ) {
|
|
95
|
-
switch ( args.length ) {
|
|
96
|
-
case 2:
|
|
97
|
-
return this.substring$esjava$2( ...args );
|
|
98
|
-
}
|
|
99
|
-
return super.substring( ...args );
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
charAt( ...args ) {
|
|
103
|
-
switch ( args.length ) {
|
|
104
|
-
case 1:
|
|
105
|
-
return this.charAt$esjava$1( ...args );
|
|
106
|
-
}
|
|
107
|
-
return super.charAt( ...args );
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
subSequence( ...args ) {
|
|
111
|
-
switch ( args.length ) {
|
|
112
|
-
case 2:
|
|
113
|
-
return this.subSequence$esjava$2( ...args );
|
|
114
|
-
}
|
|
115
|
-
return super.subSequence( ...args );
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
toString( ...args ) {
|
|
119
|
-
switch ( args.length ) {
|
|
120
|
-
case 0:
|
|
121
|
-
return this.toString$esjava$0( ...args );
|
|
122
|
-
}
|
|
123
|
-
return super.toString( ...args );
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
class Among {
|
|
127
|
-
static toCharArray$esjava$1( s ) {
|
|
128
|
-
const sLength = s.length;
|
|
129
|
-
const charArr = new Array( sLength );
|
|
130
|
-
for ( let i = 0; i < sLength; i++ ) {
|
|
131
|
-
charArr[ i ] = s.charCodeAt( i );
|
|
132
|
-
}
|
|
133
|
-
return charArr;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
constructor( s, substring_i, result, methodname, methodobject ) {
|
|
137
|
-
this.s_size = s.length;
|
|
138
|
-
this.s = Among.toCharArray$esjava$1( s );
|
|
139
|
-
this.substring_i = substring_i;
|
|
140
|
-
this.result = result;
|
|
141
|
-
this.methodobject = methodobject;
|
|
142
|
-
this.method = methodname ? methodobject[ methodname ] : null;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
get s_size() {
|
|
146
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$s_size" ) ? this._$esjava$s_size : this._$esjava$s_size = 0;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
set s_size( v ) {
|
|
150
|
-
this._$esjava$s_size = v;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
get s() {
|
|
154
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$s" ) ? this._$esjava$s : this._$esjava$s = null;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
set s( v ) {
|
|
158
|
-
this._$esjava$s = v;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
get substring_i() {
|
|
162
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$substring_i" ) ? this._$esjava$substring_i : this._$esjava$substring_i = 0;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
set substring_i( v ) {
|
|
166
|
-
this._$esjava$substring_i = v;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
get result() {
|
|
170
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$result" ) ? this._$esjava$result : this._$esjava$result = 0;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
set result( v ) {
|
|
174
|
-
this._$esjava$result = v;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
get method() {
|
|
178
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$method" ) ? this._$esjava$method : this._$esjava$method = null;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
set method( v ) {
|
|
182
|
-
this._$esjava$method = v;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
get methodobject() {
|
|
186
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$methodobject" ) ? this._$esjava$methodobject : this._$esjava$methodobject = null;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
set methodobject( v ) {
|
|
190
|
-
this._$esjava$methodobject = v;
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
class SnowballProgram {
|
|
195
|
-
constructor() {
|
|
196
|
-
this.current = new StringBuffer();
|
|
197
|
-
this.setCurrent$esjava$1( "" );
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
setCurrent$esjava$1( value ) {
|
|
201
|
-
this.current.replace( 0, this.current.length(), value );
|
|
202
|
-
this.cursor = 0;
|
|
203
|
-
this.limit = this.current.length();
|
|
204
|
-
this.limit_backward = 0;
|
|
205
|
-
this.bra = this.cursor;
|
|
206
|
-
this.ket = this.limit;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
getCurrent$esjava$0() {
|
|
210
|
-
const result = this.current.toString();
|
|
211
|
-
this.current = new StringBuffer();
|
|
212
|
-
return result;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
get current() {
|
|
216
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$current" ) ? this._$esjava$current : this._$esjava$current = null;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
set current( v ) {
|
|
220
|
-
this._$esjava$current = v;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
get cursor() {
|
|
224
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$cursor" ) ? this._$esjava$cursor : this._$esjava$cursor = 0;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
set cursor( v ) {
|
|
228
|
-
this._$esjava$cursor = v;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
get limit() {
|
|
232
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$limit" ) ? this._$esjava$limit : this._$esjava$limit = 0;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
set limit( v ) {
|
|
236
|
-
this._$esjava$limit = v;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
get limit_backward() {
|
|
240
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$limit_backward" ) ? this._$esjava$limit_backward : this._$esjava$limit_backward = 0;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
set limit_backward( v ) {
|
|
244
|
-
this._$esjava$limit_backward = v;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
get bra() {
|
|
248
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$bra" ) ? this._$esjava$bra : this._$esjava$bra = 0;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
set bra( v ) {
|
|
252
|
-
this._$esjava$bra = v;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
get ket() {
|
|
256
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$ket" ) ? this._$esjava$ket : this._$esjava$ket = 0;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
set ket( v ) {
|
|
260
|
-
this._$esjava$ket = v;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
copy_from$esjava$1( other ) {
|
|
264
|
-
this.current = other.current;
|
|
265
|
-
this.cursor = other.cursor;
|
|
266
|
-
this.limit = other.limit;
|
|
267
|
-
this.limit_backward = other.limit_backward;
|
|
268
|
-
this.bra = other.bra;
|
|
269
|
-
this.ket = other.ket;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
in_grouping$esjava$3( s, min, max ) {
|
|
273
|
-
if ( this.cursor >= this.limit ) {
|
|
274
|
-
return false;
|
|
275
|
-
}
|
|
276
|
-
let ch = this.current.charAt( this.cursor );
|
|
277
|
-
if ( ch > max || ch < min ) {
|
|
278
|
-
return false;
|
|
279
|
-
}
|
|
280
|
-
ch -= min;
|
|
281
|
-
if ( ( s[ ch >> 3 ] & 0X1 << ( ch & 0X7 ) ) === 0 ) {
|
|
282
|
-
return false;
|
|
283
|
-
}
|
|
284
|
-
this.cursor++;
|
|
285
|
-
return true;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
in_grouping_b$esjava$3( s, min, max ) {
|
|
289
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
290
|
-
return false;
|
|
291
|
-
}
|
|
292
|
-
let ch = this.current.charAt( this.cursor - 1 );
|
|
293
|
-
if ( ch > max || ch < min ) {
|
|
294
|
-
return false;
|
|
295
|
-
}
|
|
296
|
-
ch -= min;
|
|
297
|
-
if ( ( s[ ch >> 3 ] & 0X1 << ( ch & 0X7 ) ) === 0 ) {
|
|
298
|
-
return false;
|
|
299
|
-
}
|
|
300
|
-
this.cursor--;
|
|
301
|
-
return true;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
out_grouping$esjava$3( s, min, max ) {
|
|
305
|
-
if ( this.cursor >= this.limit ) {
|
|
306
|
-
return false;
|
|
307
|
-
}
|
|
308
|
-
let ch = this.current.charAt( this.cursor );
|
|
309
|
-
if ( ch > max || ch < min ) {
|
|
310
|
-
this.cursor++;
|
|
311
|
-
return true;
|
|
312
|
-
}
|
|
313
|
-
ch -= min;
|
|
314
|
-
if ( ( s[ ch >> 3 ] & 0X1 << ( ch & 0X7 ) ) === 0 ) {
|
|
315
|
-
this.cursor++;
|
|
316
|
-
return true;
|
|
317
|
-
}
|
|
318
|
-
return false;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
out_grouping_b$esjava$3( s, min, max ) {
|
|
322
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
323
|
-
return false;
|
|
324
|
-
}
|
|
325
|
-
let ch = this.current.charAt( this.cursor - 1 );
|
|
326
|
-
if ( ch > max || ch < min ) {
|
|
327
|
-
this.cursor--;
|
|
328
|
-
return true;
|
|
329
|
-
}
|
|
330
|
-
ch -= min;
|
|
331
|
-
if ( ( s[ ch >> 3 ] & 0X1 << ( ch & 0X7 ) ) === 0 ) {
|
|
332
|
-
this.cursor--;
|
|
333
|
-
return true;
|
|
334
|
-
}
|
|
335
|
-
return false;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
in_range$esjava$2( min, max ) {
|
|
339
|
-
if ( this.cursor >= this.limit ) {
|
|
340
|
-
return false;
|
|
341
|
-
}
|
|
342
|
-
const ch = this.current.charAt( this.cursor );
|
|
343
|
-
if ( ch > max || ch < min ) {
|
|
344
|
-
return false;
|
|
345
|
-
}
|
|
346
|
-
this.cursor++;
|
|
347
|
-
return true;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
in_range_b$esjava$2( min, max ) {
|
|
351
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
352
|
-
return false;
|
|
353
|
-
}
|
|
354
|
-
const ch = this.current.charAt( this.cursor - 1 );
|
|
355
|
-
if ( ch > max || ch < min ) {
|
|
356
|
-
return false;
|
|
357
|
-
}
|
|
358
|
-
this.cursor--;
|
|
359
|
-
return true;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
out_range$esjava$2( min, max ) {
|
|
363
|
-
if ( this.cursor >= this.limit ) {
|
|
364
|
-
return false;
|
|
365
|
-
}
|
|
366
|
-
const ch = this.current.charAt( this.cursor );
|
|
367
|
-
if ( ! ( ch > max || ch < min ) ) {
|
|
368
|
-
return false;
|
|
369
|
-
}
|
|
370
|
-
this.cursor++;
|
|
371
|
-
return true;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
out_range_b$esjava$2( min, max ) {
|
|
375
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
376
|
-
return false;
|
|
377
|
-
}
|
|
378
|
-
const ch = this.current.charAt( this.cursor - 1 );
|
|
379
|
-
if ( ! ( ch > max || ch < min ) ) {
|
|
380
|
-
return false;
|
|
381
|
-
}
|
|
382
|
-
this.cursor--;
|
|
383
|
-
return true;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
eq_s$esjava$2( s_size, s ) {
|
|
387
|
-
if ( this.limit - this.cursor < s_size ) {
|
|
388
|
-
return false;
|
|
389
|
-
}
|
|
390
|
-
let i;
|
|
391
|
-
for ( i = 0; i !== s_size; i++ ) {
|
|
392
|
-
if ( this.current.charAt( this.cursor + i ) !== s.charCodeAt( i ) ) {
|
|
393
|
-
return false;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
this.cursor += s_size;
|
|
397
|
-
return true;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
eq_s_b$esjava$2( s_size, s ) {
|
|
401
|
-
if ( this.cursor - this.limit_backward < s_size ) {
|
|
402
|
-
return false;
|
|
403
|
-
}
|
|
404
|
-
let i;
|
|
405
|
-
for ( i = 0; i !== s_size; i++ ) {
|
|
406
|
-
if ( this.current.charAt( this.cursor - s_size + i ) !== s.charCodeAt( i ) ) {
|
|
407
|
-
return false;
|
|
408
|
-
}
|
|
409
|
-
}
|
|
410
|
-
this.cursor -= s_size;
|
|
411
|
-
return true;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
eq_v$esjava$1( s ) {
|
|
415
|
-
return this.eq_s$esjava$2( s.length(), s.toString() );
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
eq_v_b$esjava$1( s ) {
|
|
419
|
-
return this.eq_s_b$esjava$2( s.length(), s.toString() );
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
find_among$esjava$2( v, v_size ) {
|
|
423
|
-
let i = 0;
|
|
424
|
-
let j = v_size;
|
|
425
|
-
const c = this.cursor;
|
|
426
|
-
const l = this.limit;
|
|
427
|
-
let common_i = 0;
|
|
428
|
-
let common_j = 0;
|
|
429
|
-
let first_key_inspected = false;
|
|
430
|
-
while ( true ) {
|
|
431
|
-
const k = i + ( j - i >> 1 );
|
|
432
|
-
let diff = 0;
|
|
433
|
-
let common = common_i < common_j ? common_i : common_j;
|
|
434
|
-
const w = v[ k ];
|
|
435
|
-
let i2;
|
|
436
|
-
for ( i2 = common; i2 < w.s_size; i2++ ) {
|
|
437
|
-
if ( c + common === l ) {
|
|
438
|
-
diff = -1;
|
|
439
|
-
break;
|
|
440
|
-
}
|
|
441
|
-
diff = this.current.charAt( c + common ) - w.s[ i2 ];
|
|
442
|
-
if ( diff !== 0 ) {
|
|
443
|
-
break;
|
|
444
|
-
}
|
|
445
|
-
common++;
|
|
446
|
-
}
|
|
447
|
-
if ( diff < 0 ) {
|
|
448
|
-
j = k;
|
|
449
|
-
common_j = common;
|
|
450
|
-
} else {
|
|
451
|
-
i = k;
|
|
452
|
-
common_i = common;
|
|
453
|
-
}
|
|
454
|
-
if ( j - i <= 1 ) {
|
|
455
|
-
if ( i > 0 ) {
|
|
456
|
-
break;
|
|
457
|
-
}
|
|
458
|
-
if ( j === i ) {
|
|
459
|
-
break;
|
|
460
|
-
}
|
|
461
|
-
if ( first_key_inspected ) {
|
|
462
|
-
break;
|
|
463
|
-
}
|
|
464
|
-
first_key_inspected = true;
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
while ( true ) {
|
|
468
|
-
const w = v[ i ];
|
|
469
|
-
if ( common_i >= w.s_size ) {
|
|
470
|
-
this.cursor = c + w.s_size;
|
|
471
|
-
if ( w.method === null ) {
|
|
472
|
-
return w.result;
|
|
473
|
-
}
|
|
474
|
-
let res;
|
|
475
|
-
res = w.method.call( w.methodobject );
|
|
476
|
-
this.cursor = c + w.s_size;
|
|
477
|
-
if ( res ) {
|
|
478
|
-
return w.result;
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
i = w.substring_i;
|
|
482
|
-
if ( i < 0 ) {
|
|
483
|
-
return 0;
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
find_among_b$esjava$2( v, v_size ) {
|
|
489
|
-
let i = 0;
|
|
490
|
-
let j = v_size;
|
|
491
|
-
const c = this.cursor;
|
|
492
|
-
const lb = this.limit_backward;
|
|
493
|
-
let common_i = 0;
|
|
494
|
-
let common_j = 0;
|
|
495
|
-
let first_key_inspected = false;
|
|
496
|
-
while ( true ) {
|
|
497
|
-
const k = i + ( j - i >> 1 );
|
|
498
|
-
let diff = 0;
|
|
499
|
-
let common = common_i < common_j ? common_i : common_j;
|
|
500
|
-
const w = v[ k ];
|
|
501
|
-
let i2;
|
|
502
|
-
for ( i2 = w.s_size - 1 - common; i2 >= 0; i2-- ) {
|
|
503
|
-
if ( c - common === lb ) {
|
|
504
|
-
diff = -1;
|
|
505
|
-
break;
|
|
506
|
-
}
|
|
507
|
-
diff = this.current.charAt( c - 1 - common ) - w.s[ i2 ];
|
|
508
|
-
if ( diff !== 0 ) {
|
|
509
|
-
break;
|
|
510
|
-
}
|
|
511
|
-
common++;
|
|
512
|
-
}
|
|
513
|
-
if ( diff < 0 ) {
|
|
514
|
-
j = k;
|
|
515
|
-
common_j = common;
|
|
516
|
-
} else {
|
|
517
|
-
i = k;
|
|
518
|
-
common_i = common;
|
|
519
|
-
}
|
|
520
|
-
if ( j - i <= 1 ) {
|
|
521
|
-
if ( i > 0 ) {
|
|
522
|
-
break;
|
|
523
|
-
}
|
|
524
|
-
if ( j === i ) {
|
|
525
|
-
break;
|
|
526
|
-
}
|
|
527
|
-
if ( first_key_inspected ) {
|
|
528
|
-
break;
|
|
529
|
-
}
|
|
530
|
-
first_key_inspected = true;
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
while ( true ) {
|
|
534
|
-
const w = v[ i ];
|
|
535
|
-
if ( common_i >= w.s_size ) {
|
|
536
|
-
this.cursor = c - w.s_size;
|
|
537
|
-
if ( w.method === null ) {
|
|
538
|
-
return w.result;
|
|
539
|
-
}
|
|
540
|
-
let res;
|
|
541
|
-
res = w.method.call( w.methodobject );
|
|
542
|
-
this.cursor = c - w.s_size;
|
|
543
|
-
if ( res ) {
|
|
544
|
-
return w.result;
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
i = w.substring_i;
|
|
548
|
-
if ( i < 0 ) {
|
|
549
|
-
return 0;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
replace_s$esjava$3( c_bra, c_ket, s ) {
|
|
555
|
-
const adjustment = s.length - ( c_ket - c_bra );
|
|
556
|
-
this.current.replace( c_bra, c_ket, s );
|
|
557
|
-
this.limit += adjustment;
|
|
558
|
-
if ( this.cursor >= c_ket ) {
|
|
559
|
-
this.cursor += adjustment;
|
|
560
|
-
} else if ( this.cursor > c_bra ) {
|
|
561
|
-
this.cursor = c_bra;
|
|
562
|
-
}
|
|
563
|
-
return adjustment;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
slice_check$esjava$0() {
|
|
567
|
-
if ( this.bra < 0 || this.bra > this.ket || this.ket > this.limit || this.limit > this.current.length() ) {
|
|
568
|
-
throw new Error( "Snowball: faulty slice operation" );
|
|
569
|
-
}
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
slice_from$esjava$1( s ) {
|
|
573
|
-
this.slice_check$esjava$0();
|
|
574
|
-
this.replace_s$esjava$3( this.bra, this.ket, s );
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
slice_del$esjava$0() {
|
|
578
|
-
this.slice_from$esjava$1( "" );
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
insert$esjava$3( c_bra, c_ket, s ) {
|
|
582
|
-
const adjustment = this.replace_s$esjava$3( c_bra, c_ket, s );
|
|
583
|
-
if ( c_bra <= this.bra ) {
|
|
584
|
-
this.bra += adjustment;
|
|
585
|
-
}
|
|
586
|
-
if ( c_bra <= this.ket ) {
|
|
587
|
-
this.ket += adjustment;
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
slice_to$esjava$1( s ) {
|
|
592
|
-
this.slice_check$esjava$0();
|
|
593
|
-
s.replace( 0, s.length(), this.current.substring( this.bra, this.ket ) );
|
|
594
|
-
return s;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
setCurrent( ...args ) {
|
|
598
|
-
switch ( args.length ) {
|
|
599
|
-
case 1:
|
|
600
|
-
return this.setCurrent$esjava$1( ...args );
|
|
601
|
-
}
|
|
602
|
-
return super.setCurrent( ...args );
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
getCurrent( ...args ) {
|
|
606
|
-
switch ( args.length ) {
|
|
607
|
-
case 0:
|
|
608
|
-
return this.getCurrent$esjava$0( ...args );
|
|
609
|
-
}
|
|
610
|
-
return super.getCurrent( ...args );
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
copy_from( ...args ) {
|
|
614
|
-
switch ( args.length ) {
|
|
615
|
-
case 1:
|
|
616
|
-
return this.copy_from$esjava$1( ...args );
|
|
617
|
-
}
|
|
618
|
-
return super.copy_from( ...args );
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
in_grouping( ...args ) {
|
|
622
|
-
switch ( args.length ) {
|
|
623
|
-
case 3:
|
|
624
|
-
return this.in_grouping$esjava$3( ...args );
|
|
625
|
-
}
|
|
626
|
-
return super.in_grouping( ...args );
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
in_grouping_b( ...args ) {
|
|
630
|
-
switch ( args.length ) {
|
|
631
|
-
case 3:
|
|
632
|
-
return this.in_grouping_b$esjava$3( ...args );
|
|
633
|
-
}
|
|
634
|
-
return super.in_grouping_b( ...args );
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
out_grouping( ...args ) {
|
|
638
|
-
switch ( args.length ) {
|
|
639
|
-
case 3:
|
|
640
|
-
return this.out_grouping$esjava$3( ...args );
|
|
641
|
-
}
|
|
642
|
-
return super.out_grouping( ...args );
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
out_grouping_b( ...args ) {
|
|
646
|
-
switch ( args.length ) {
|
|
647
|
-
case 3:
|
|
648
|
-
return this.out_grouping_b$esjava$3( ...args );
|
|
649
|
-
}
|
|
650
|
-
return super.out_grouping_b( ...args );
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
in_range( ...args ) {
|
|
654
|
-
switch ( args.length ) {
|
|
655
|
-
case 2:
|
|
656
|
-
return this.in_range$esjava$2( ...args );
|
|
657
|
-
}
|
|
658
|
-
return super.in_range( ...args );
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
in_range_b( ...args ) {
|
|
662
|
-
switch ( args.length ) {
|
|
663
|
-
case 2:
|
|
664
|
-
return this.in_range_b$esjava$2( ...args );
|
|
665
|
-
}
|
|
666
|
-
return super.in_range_b( ...args );
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
out_range( ...args ) {
|
|
670
|
-
switch ( args.length ) {
|
|
671
|
-
case 2:
|
|
672
|
-
return this.out_range$esjava$2( ...args );
|
|
673
|
-
}
|
|
674
|
-
return super.out_range( ...args );
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
out_range_b( ...args ) {
|
|
678
|
-
switch ( args.length ) {
|
|
679
|
-
case 2:
|
|
680
|
-
return this.out_range_b$esjava$2( ...args );
|
|
681
|
-
}
|
|
682
|
-
return super.out_range_b( ...args );
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
eq_s( ...args ) {
|
|
686
|
-
switch ( args.length ) {
|
|
687
|
-
case 2:
|
|
688
|
-
return this.eq_s$esjava$2( ...args );
|
|
689
|
-
}
|
|
690
|
-
return super.eq_s( ...args );
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
eq_s_b( ...args ) {
|
|
694
|
-
switch ( args.length ) {
|
|
695
|
-
case 2:
|
|
696
|
-
return this.eq_s_b$esjava$2( ...args );
|
|
697
|
-
}
|
|
698
|
-
return super.eq_s_b( ...args );
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
eq_v( ...args ) {
|
|
702
|
-
switch ( args.length ) {
|
|
703
|
-
case 1:
|
|
704
|
-
return this.eq_v$esjava$1( ...args );
|
|
705
|
-
}
|
|
706
|
-
return super.eq_v( ...args );
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
eq_v_b( ...args ) {
|
|
710
|
-
switch ( args.length ) {
|
|
711
|
-
case 1:
|
|
712
|
-
return this.eq_v_b$esjava$1( ...args );
|
|
713
|
-
}
|
|
714
|
-
return super.eq_v_b( ...args );
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
find_among( ...args ) {
|
|
718
|
-
switch ( args.length ) {
|
|
719
|
-
case 2:
|
|
720
|
-
return this.find_among$esjava$2( ...args );
|
|
721
|
-
}
|
|
722
|
-
return super.find_among( ...args );
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
find_among_b( ...args ) {
|
|
726
|
-
switch ( args.length ) {
|
|
727
|
-
case 2:
|
|
728
|
-
return this.find_among_b$esjava$2( ...args );
|
|
729
|
-
}
|
|
730
|
-
return super.find_among_b( ...args );
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
replace_s( ...args ) {
|
|
734
|
-
switch ( args.length ) {
|
|
735
|
-
case 3:
|
|
736
|
-
return this.replace_s$esjava$3( ...args );
|
|
737
|
-
}
|
|
738
|
-
return super.replace_s( ...args );
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
slice_check( ...args ) {
|
|
742
|
-
switch ( args.length ) {
|
|
743
|
-
case 0:
|
|
744
|
-
return this.slice_check$esjava$0( ...args );
|
|
745
|
-
}
|
|
746
|
-
return super.slice_check( ...args );
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
slice_from( ...args ) {
|
|
750
|
-
switch ( args.length ) {
|
|
751
|
-
case 1:
|
|
752
|
-
return this.slice_from$esjava$1( ...args );
|
|
753
|
-
}
|
|
754
|
-
return super.slice_from( ...args );
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
slice_del( ...args ) {
|
|
758
|
-
switch ( args.length ) {
|
|
759
|
-
case 0:
|
|
760
|
-
return this.slice_del$esjava$0( ...args );
|
|
761
|
-
}
|
|
762
|
-
return super.slice_del( ...args );
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
insert( ...args ) {
|
|
766
|
-
switch ( args.length ) {
|
|
767
|
-
case 3:
|
|
768
|
-
return this.insert$esjava$3( ...args );
|
|
769
|
-
}
|
|
770
|
-
return super.insert( ...args );
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
slice_to( ...args ) {
|
|
774
|
-
switch ( args.length ) {
|
|
775
|
-
case 1:
|
|
776
|
-
return this.slice_to$esjava$1( ...args );
|
|
777
|
-
}
|
|
778
|
-
return super.slice_to( ...args );
|
|
779
|
-
}
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
class SnowballStemmer extends SnowballProgram {
|
|
783
|
-
stem$esjava$0() {
|
|
784
|
-
throw "NotImpl < stem$esjava$0 >";
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
stem( ...args ) {
|
|
788
|
-
switch ( args.length ) {
|
|
789
|
-
case 0:
|
|
790
|
-
return this.stem$esjava$0( ...args );
|
|
791
|
-
}
|
|
792
|
-
return super.stem( ...args );
|
|
793
|
-
}
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
class TurkishStemmer extends SnowballStemmer {
|
|
797
|
-
constructor( morphologyData ) {
|
|
798
|
-
super();
|
|
799
|
-
TurkishStemmer.morphologyData = morphologyData.externalStemmer;
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
static get methodObject() {
|
|
803
|
-
delete TurkishStemmer.methodObject;
|
|
804
|
-
return TurkishStemmer.methodObject = null;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
static get a_0() {
|
|
808
|
-
delete TurkishStemmer.a_0;
|
|
809
|
-
return TurkishStemmer.a_0 = [
|
|
810
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixM, -1, -1, "", TurkishStemmer.methodObject ),
|
|
811
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixN, -1, -1, "", TurkishStemmer.methodObject ),
|
|
812
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixMiz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
813
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixNiz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
814
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixMuz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
815
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixNuz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
816
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixMuzDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
817
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixNuzDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
818
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixMizUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
819
|
-
new Among( TurkishStemmer.morphologyData.a_0.SuffixNizUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
820
|
-
];
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
static get a_1() {
|
|
824
|
-
delete TurkishStemmer.a_1;
|
|
825
|
-
return TurkishStemmer.a_1 = [
|
|
826
|
-
new Among( TurkishStemmer.morphologyData.a_1.SuffixLeri, -1, -1, "", TurkishStemmer.methodObject ),
|
|
827
|
-
new Among( TurkishStemmer.morphologyData.a_1.SuffixLariUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
828
|
-
];
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
static get a_2() {
|
|
832
|
-
delete TurkishStemmer.a_2;
|
|
833
|
-
return TurkishStemmer.a_2 = [
|
|
834
|
-
new Among( TurkishStemmer.morphologyData.a_2.SuffixNi, -1, -1, "", TurkishStemmer.methodObject ),
|
|
835
|
-
new Among( TurkishStemmer.morphologyData.a_2.SuffixNu, -1, -1, "", TurkishStemmer.methodObject ),
|
|
836
|
-
new Among( TurkishStemmer.morphologyData.a_2.SuffixNuDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
837
|
-
new Among( TurkishStemmer.morphologyData.a_2.SuffixNiUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
838
|
-
];
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
static get a_3() {
|
|
842
|
-
delete TurkishStemmer.a_3;
|
|
843
|
-
return TurkishStemmer.a_3 = [
|
|
844
|
-
new Among( TurkishStemmer.morphologyData.a_3.SuffixInDotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
845
|
-
new Among( TurkishStemmer.morphologyData.a_3.SuffixUn, -1, -1, "", TurkishStemmer.methodObject ),
|
|
846
|
-
new Among( TurkishStemmer.morphologyData.a_3.SuffixUnDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
847
|
-
new Among( TurkishStemmer.morphologyData.a_3.SuffixInUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
848
|
-
];
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
static get a_4() {
|
|
852
|
-
delete TurkishStemmer.a_4;
|
|
853
|
-
return TurkishStemmer.a_4 = [
|
|
854
|
-
new Among( TurkishStemmer.morphologyData.a_4.SuffixA, -1, -1, "", TurkishStemmer.methodObject ),
|
|
855
|
-
new Among( TurkishStemmer.morphologyData.a_4.SuffixE, -1, -1, "", TurkishStemmer.methodObject ),
|
|
856
|
-
];
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
static get a_5() {
|
|
860
|
-
delete TurkishStemmer.a_5;
|
|
861
|
-
return TurkishStemmer.a_5 = [
|
|
862
|
-
new Among( TurkishStemmer.morphologyData.a_5.SuffixNa, -1, -1, "", TurkishStemmer.methodObject ),
|
|
863
|
-
new Among( TurkishStemmer.morphologyData.a_5.SuffixNe, -1, -1, "", TurkishStemmer.methodObject ),
|
|
864
|
-
];
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
static get a_6() {
|
|
868
|
-
delete TurkishStemmer.a_6;
|
|
869
|
-
return TurkishStemmer.a_6 = [
|
|
870
|
-
new Among( TurkishStemmer.morphologyData.a_6.SuffixDa, -1, -1, "", TurkishStemmer.methodObject ),
|
|
871
|
-
new Among( TurkishStemmer.morphologyData.a_6.SuffixTa, -1, -1, "", TurkishStemmer.methodObject ),
|
|
872
|
-
new Among( TurkishStemmer.morphologyData.a_6.SuffixDe, -1, -1, "", TurkishStemmer.methodObject ),
|
|
873
|
-
new Among( TurkishStemmer.morphologyData.a_6.SuffixTe, -1, -1, "", TurkishStemmer.methodObject ),
|
|
874
|
-
];
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
static get a_7() {
|
|
878
|
-
delete TurkishStemmer.a_7;
|
|
879
|
-
return TurkishStemmer.a_7 = [
|
|
880
|
-
new Among( TurkishStemmer.morphologyData.a_7.SuffixNda, -1, -1, "", TurkishStemmer.methodObject ),
|
|
881
|
-
new Among( TurkishStemmer.morphologyData.a_7.SuffixNde, -1, -1, "", TurkishStemmer.methodObject ),
|
|
882
|
-
];
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
static get a_8() {
|
|
886
|
-
delete TurkishStemmer.a_8;
|
|
887
|
-
return TurkishStemmer.a_8 = [
|
|
888
|
-
new Among( TurkishStemmer.morphologyData.a_8.SuffixDan, -1, -1, "", TurkishStemmer.methodObject ),
|
|
889
|
-
new Among( TurkishStemmer.morphologyData.a_8.SuffixTan, -1, -1, "", TurkishStemmer.methodObject ),
|
|
890
|
-
new Among( TurkishStemmer.morphologyData.a_8.SuffixDen, -1, -1, "", TurkishStemmer.methodObject ),
|
|
891
|
-
new Among( TurkishStemmer.morphologyData.a_8.SuffixTen, -1, -1, "", TurkishStemmer.methodObject ),
|
|
892
|
-
];
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
static get a_9() {
|
|
896
|
-
delete TurkishStemmer.a_9;
|
|
897
|
-
return TurkishStemmer.a_9 = [
|
|
898
|
-
new Among( TurkishStemmer.morphologyData.a_9.SuffixNdan, -1, -1, "", TurkishStemmer.methodObject ),
|
|
899
|
-
new Among( TurkishStemmer.morphologyData.a_9.SuffixNden, -1, -1, "", TurkishStemmer.methodObject ),
|
|
900
|
-
];
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
static get a_10() {
|
|
904
|
-
delete TurkishStemmer.a_10;
|
|
905
|
-
return TurkishStemmer.a_10 = [
|
|
906
|
-
new Among( TurkishStemmer.morphologyData.a_10.SuffixLa, -1, -1, "", TurkishStemmer.methodObject ),
|
|
907
|
-
new Among( TurkishStemmer.morphologyData.a_10.SuffixLe, -1, -1, "", TurkishStemmer.methodObject ),
|
|
908
|
-
];
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
static get a_11() {
|
|
912
|
-
delete TurkishStemmer.a_11;
|
|
913
|
-
return TurkishStemmer.a_11 = [
|
|
914
|
-
new Among( TurkishStemmer.morphologyData.a_11.SuffixCa, -1, -1, "", TurkishStemmer.methodObject ),
|
|
915
|
-
new Among( TurkishStemmer.morphologyData.a_11.SuffixCe, -1, -1, "", TurkishStemmer.methodObject ),
|
|
916
|
-
];
|
|
917
|
-
}
|
|
918
|
-
|
|
919
|
-
static get a_12() {
|
|
920
|
-
delete TurkishStemmer.a_12;
|
|
921
|
-
return TurkishStemmer.a_12 = [
|
|
922
|
-
new Among( TurkishStemmer.morphologyData.a_12.SuffixImDotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
923
|
-
new Among( TurkishStemmer.morphologyData.a_12.SuffixUm, -1, -1, "", TurkishStemmer.methodObject ),
|
|
924
|
-
new Among( TurkishStemmer.morphologyData.a_12.SuffixUmDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
925
|
-
new Among( TurkishStemmer.morphologyData.a_12.SuffixImUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
926
|
-
];
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
static get a_13() {
|
|
930
|
-
delete TurkishStemmer.a_13;
|
|
931
|
-
return TurkishStemmer.a_13 = [
|
|
932
|
-
new Among( TurkishStemmer.morphologyData.a_13.SuffixSin, -1, -1, "", TurkishStemmer.methodObject ),
|
|
933
|
-
new Among( TurkishStemmer.morphologyData.a_13.SuffixSun, -1, -1, "", TurkishStemmer.methodObject ),
|
|
934
|
-
new Among( TurkishStemmer.morphologyData.a_13.SuffixSunDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
935
|
-
new Among( TurkishStemmer.morphologyData.a_13.SuffixSinUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
936
|
-
];
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
static get a_14() {
|
|
940
|
-
delete TurkishStemmer.a_14;
|
|
941
|
-
return TurkishStemmer.a_14 = [
|
|
942
|
-
new Among( TurkishStemmer.morphologyData.a_14.SuffixIzDotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
943
|
-
new Among( TurkishStemmer.morphologyData.a_14.SuffixUz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
944
|
-
new Among( TurkishStemmer.morphologyData.a_14.SuffixUzDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
945
|
-
new Among( TurkishStemmer.morphologyData.a_14.SuffixIzUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
946
|
-
];
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
static get a_15() {
|
|
950
|
-
delete TurkishStemmer.a_15;
|
|
951
|
-
return TurkishStemmer.a_15 = [
|
|
952
|
-
new Among( TurkishStemmer.morphologyData.a_15.SuffixSiniz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
953
|
-
new Among( TurkishStemmer.morphologyData.a_15.SuffixSunuz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
954
|
-
new Among( TurkishStemmer.morphologyData.a_15.SuffixSunuzDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
955
|
-
new Among( TurkishStemmer.morphologyData.a_15.SuffixSinizUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
956
|
-
];
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
static get a_16() {
|
|
960
|
-
delete TurkishStemmer.a_16;
|
|
961
|
-
return TurkishStemmer.a_16 = [
|
|
962
|
-
new Among( TurkishStemmer.morphologyData.a_16.SuffixLar, -1, -1, "", TurkishStemmer.methodObject ),
|
|
963
|
-
new Among( TurkishStemmer.morphologyData.a_16.SuffixLer, -1, -1, "", TurkishStemmer.methodObject ),
|
|
964
|
-
];
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
static get a_17() {
|
|
968
|
-
delete TurkishStemmer.a_17;
|
|
969
|
-
return TurkishStemmer.a_17 = [
|
|
970
|
-
new Among( TurkishStemmer.morphologyData.a_17.SuffixNiz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
971
|
-
new Among( TurkishStemmer.morphologyData.a_17.SuffixNuz, -1, -1, "", TurkishStemmer.methodObject ),
|
|
972
|
-
new Among( TurkishStemmer.morphologyData.a_17.SuffixNuzDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
973
|
-
new Among( TurkishStemmer.morphologyData.a_17.SuffixNizUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
974
|
-
];
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
static get a_18() {
|
|
978
|
-
delete TurkishStemmer.a_18;
|
|
979
|
-
return TurkishStemmer.a_18 = [
|
|
980
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixDir, -1, -1, "", TurkishStemmer.methodObject ),
|
|
981
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixTir, -1, -1, "", TurkishStemmer.methodObject ),
|
|
982
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixDur, -1, -1, "", TurkishStemmer.methodObject ),
|
|
983
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixTur, -1, -1, "", TurkishStemmer.methodObject ),
|
|
984
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixDurDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
985
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixTurDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
986
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixDirUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
987
|
-
new Among( TurkishStemmer.morphologyData.a_18.SuffixTirUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
988
|
-
];
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
static get a_19() {
|
|
992
|
-
delete TurkishStemmer.a_19;
|
|
993
|
-
return TurkishStemmer.a_19 = [
|
|
994
|
-
new Among( TurkishStemmer.morphologyData.a_19.SuffixCasinaUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
995
|
-
new Among( TurkishStemmer.morphologyData.a_19.SuffixCesine, -1, -1, "", TurkishStemmer.methodObject ),
|
|
996
|
-
];
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
static get a_20() {
|
|
1000
|
-
delete TurkishStemmer.a_20;
|
|
1001
|
-
return TurkishStemmer.a_20 = [
|
|
1002
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDi, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1003
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTi, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1004
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDik, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1005
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTik, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1006
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDuk, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1007
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTuk, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1008
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDukDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1009
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTukDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1010
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDikUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1011
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTikUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1012
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDim, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1013
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTim, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1014
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDum, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1015
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTum, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1016
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDumDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1017
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTumDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1018
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDimUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1019
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTimUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1020
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDin, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1021
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTin, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1022
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDun, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1023
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTun, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1024
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDunDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1025
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTunDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1026
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDinUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1027
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTinUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1028
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDu, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1029
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTu, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1030
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDuDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1031
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTuDieresis, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1032
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixDiUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1033
|
-
new Among( TurkishStemmer.morphologyData.a_20.SuffixTiUndotted, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1034
|
-
];
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
static get a_21() {
|
|
1038
|
-
delete TurkishStemmer.a_21;
|
|
1039
|
-
return TurkishStemmer.a_21 = [
|
|
1040
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSa, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1041
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSe, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1042
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSak, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1043
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSek, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1044
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSam, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1045
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSem, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1046
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSan, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1047
|
-
new Among( TurkishStemmer.morphologyData.a_21.SuffixSen, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1048
|
-
];
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
static get a_22() {
|
|
1052
|
-
delete TurkishStemmer.a_22;
|
|
1053
|
-
return TurkishStemmer.a_22 = [
|
|
1054
|
-
new Among( TurkishStemmer.morphologyData.a_22.SuffixMisCedilla, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1055
|
-
new Among( TurkishStemmer.morphologyData.a_22.SuffixMusCedilla, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1056
|
-
new Among( TurkishStemmer.morphologyData.a_22.SuffixMusDieresisCedilla, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1057
|
-
new Among( TurkishStemmer.morphologyData.a_22.SuffixMisUndottedCedilla, -1, -1, "", TurkishStemmer.methodObject ),
|
|
1058
|
-
];
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
static get a_23() {
|
|
1062
|
-
delete TurkishStemmer.a_23;
|
|
1063
|
-
return TurkishStemmer.a_23 = [
|
|
1064
|
-
new Among( TurkishStemmer.morphologyData.a_23.SuffixB, -1, 1, "", TurkishStemmer.methodObject ),
|
|
1065
|
-
new Among( TurkishStemmer.morphologyData.a_23.SuffixC, -1, 2, "", TurkishStemmer.methodObject ),
|
|
1066
|
-
new Among( TurkishStemmer.morphologyData.a_23.SuffixD, -1, 3, "", TurkishStemmer.methodObject ),
|
|
1067
|
-
new Among( TurkishStemmer.morphologyData.a_23.SuffixGSoft, -1, 4, "", TurkishStemmer.methodObject ),
|
|
1068
|
-
];
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
static get g_vowel() {
|
|
1072
|
-
delete TurkishStemmer.g_vowel;
|
|
1073
|
-
return TurkishStemmer.g_vowel = [
|
|
1074
|
-
17,
|
|
1075
|
-
65,
|
|
1076
|
-
16,
|
|
1077
|
-
0,
|
|
1078
|
-
0,
|
|
1079
|
-
0,
|
|
1080
|
-
0,
|
|
1081
|
-
0,
|
|
1082
|
-
0,
|
|
1083
|
-
0,
|
|
1084
|
-
0,
|
|
1085
|
-
0,
|
|
1086
|
-
0,
|
|
1087
|
-
0,
|
|
1088
|
-
0,
|
|
1089
|
-
0,
|
|
1090
|
-
0,
|
|
1091
|
-
0,
|
|
1092
|
-
32,
|
|
1093
|
-
8,
|
|
1094
|
-
0,
|
|
1095
|
-
0,
|
|
1096
|
-
0,
|
|
1097
|
-
0,
|
|
1098
|
-
0,
|
|
1099
|
-
0,
|
|
1100
|
-
1,
|
|
1101
|
-
];
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
static get g_U() {
|
|
1105
|
-
delete TurkishStemmer.g_U;
|
|
1106
|
-
return TurkishStemmer.g_U = [
|
|
1107
|
-
1,
|
|
1108
|
-
16,
|
|
1109
|
-
0,
|
|
1110
|
-
0,
|
|
1111
|
-
0,
|
|
1112
|
-
0,
|
|
1113
|
-
0,
|
|
1114
|
-
0,
|
|
1115
|
-
0,
|
|
1116
|
-
0,
|
|
1117
|
-
0,
|
|
1118
|
-
0,
|
|
1119
|
-
0,
|
|
1120
|
-
0,
|
|
1121
|
-
0,
|
|
1122
|
-
0,
|
|
1123
|
-
0,
|
|
1124
|
-
0,
|
|
1125
|
-
8,
|
|
1126
|
-
0,
|
|
1127
|
-
0,
|
|
1128
|
-
0,
|
|
1129
|
-
0,
|
|
1130
|
-
0,
|
|
1131
|
-
0,
|
|
1132
|
-
1,
|
|
1133
|
-
];
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
static get g_vowel1() {
|
|
1137
|
-
delete TurkishStemmer.g_vowel1;
|
|
1138
|
-
return TurkishStemmer.g_vowel1 = [
|
|
1139
|
-
1,
|
|
1140
|
-
64,
|
|
1141
|
-
16,
|
|
1142
|
-
0,
|
|
1143
|
-
0,
|
|
1144
|
-
0,
|
|
1145
|
-
0,
|
|
1146
|
-
0,
|
|
1147
|
-
0,
|
|
1148
|
-
0,
|
|
1149
|
-
0,
|
|
1150
|
-
0,
|
|
1151
|
-
0,
|
|
1152
|
-
0,
|
|
1153
|
-
0,
|
|
1154
|
-
0,
|
|
1155
|
-
0,
|
|
1156
|
-
0,
|
|
1157
|
-
0,
|
|
1158
|
-
0,
|
|
1159
|
-
0,
|
|
1160
|
-
0,
|
|
1161
|
-
0,
|
|
1162
|
-
0,
|
|
1163
|
-
0,
|
|
1164
|
-
0,
|
|
1165
|
-
1,
|
|
1166
|
-
];
|
|
1167
|
-
}
|
|
1168
|
-
|
|
1169
|
-
static get g_vowel2() {
|
|
1170
|
-
delete TurkishStemmer.g_vowel2;
|
|
1171
|
-
return TurkishStemmer.g_vowel2 = [
|
|
1172
|
-
17,
|
|
1173
|
-
0,
|
|
1174
|
-
0,
|
|
1175
|
-
0,
|
|
1176
|
-
0,
|
|
1177
|
-
0,
|
|
1178
|
-
0,
|
|
1179
|
-
0,
|
|
1180
|
-
0,
|
|
1181
|
-
0,
|
|
1182
|
-
0,
|
|
1183
|
-
0,
|
|
1184
|
-
0,
|
|
1185
|
-
0,
|
|
1186
|
-
0,
|
|
1187
|
-
0,
|
|
1188
|
-
0,
|
|
1189
|
-
0,
|
|
1190
|
-
130,
|
|
1191
|
-
];
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
static get g_vowel3() {
|
|
1195
|
-
delete TurkishStemmer.g_vowel3;
|
|
1196
|
-
return TurkishStemmer.g_vowel3 = [
|
|
1197
|
-
1,
|
|
1198
|
-
0,
|
|
1199
|
-
0,
|
|
1200
|
-
0,
|
|
1201
|
-
0,
|
|
1202
|
-
0,
|
|
1203
|
-
0,
|
|
1204
|
-
0,
|
|
1205
|
-
0,
|
|
1206
|
-
0,
|
|
1207
|
-
0,
|
|
1208
|
-
0,
|
|
1209
|
-
0,
|
|
1210
|
-
0,
|
|
1211
|
-
0,
|
|
1212
|
-
0,
|
|
1213
|
-
0,
|
|
1214
|
-
0,
|
|
1215
|
-
0,
|
|
1216
|
-
0,
|
|
1217
|
-
0,
|
|
1218
|
-
0,
|
|
1219
|
-
0,
|
|
1220
|
-
0,
|
|
1221
|
-
0,
|
|
1222
|
-
0,
|
|
1223
|
-
1,
|
|
1224
|
-
];
|
|
1225
|
-
}
|
|
1226
|
-
|
|
1227
|
-
static get g_vowel4() {
|
|
1228
|
-
delete TurkishStemmer.g_vowel4;
|
|
1229
|
-
return TurkishStemmer.g_vowel4 = [ 17 ];
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
static get g_vowel5() {
|
|
1233
|
-
delete TurkishStemmer.g_vowel5;
|
|
1234
|
-
return TurkishStemmer.g_vowel5 = [ 65 ];
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
static get g_vowel6() {
|
|
1238
|
-
delete TurkishStemmer.g_vowel6;
|
|
1239
|
-
return TurkishStemmer.g_vowel6 = [ 65 ];
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
get B_continue_stemming_noun_suffixes() {
|
|
1243
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$B_continue_stemming_noun_suffixes" ) ? this._$esjava$B_continue_stemming_noun_suffixes : this._$esjava$B_continue_stemming_noun_suffixes = false;
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
set B_continue_stemming_noun_suffixes( v ) {
|
|
1247
|
-
this._$esjava$B_continue_stemming_noun_suffixes = v;
|
|
1248
|
-
}
|
|
1249
|
-
|
|
1250
|
-
get I_strlen() {
|
|
1251
|
-
return Object.prototype.hasOwnProperty.call( this, "_$esjava$I_strlen" ) ? this._$esjava$I_strlen : this._$esjava$I_strlen = 0;
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
|
-
set I_strlen( v ) {
|
|
1255
|
-
this._$esjava$I_strlen = v;
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
r_check_vowel_harmony$esjava$0() {
|
|
1259
|
-
let v_1;
|
|
1260
|
-
let v_2;
|
|
1261
|
-
let v_3;
|
|
1262
|
-
let v_4;
|
|
1263
|
-
let v_5;
|
|
1264
|
-
let v_6;
|
|
1265
|
-
let v_7;
|
|
1266
|
-
let v_8;
|
|
1267
|
-
let v_9;
|
|
1268
|
-
let v_10;
|
|
1269
|
-
let v_11;
|
|
1270
|
-
v_1 = this.limit - this.cursor;
|
|
1271
|
-
golab0:
|
|
1272
|
-
while ( true ) {
|
|
1273
|
-
v_2 = this.limit - this.cursor;
|
|
1274
|
-
lab1:
|
|
1275
|
-
do {
|
|
1276
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1277
|
-
break lab1;
|
|
1278
|
-
}
|
|
1279
|
-
this.cursor = this.limit - v_2;
|
|
1280
|
-
break golab0;
|
|
1281
|
-
} while ( false );
|
|
1282
|
-
this.cursor = this.limit - v_2;
|
|
1283
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1284
|
-
return false;
|
|
1285
|
-
}
|
|
1286
|
-
this.cursor--;
|
|
1287
|
-
}
|
|
1288
|
-
lab2:
|
|
1289
|
-
do {
|
|
1290
|
-
v_3 = this.limit - this.cursor;
|
|
1291
|
-
lab3:
|
|
1292
|
-
do {
|
|
1293
|
-
if ( ! this.eq_s_b$esjava$2( 1, "a" ) ) {
|
|
1294
|
-
break lab3;
|
|
1295
|
-
}
|
|
1296
|
-
golab4:
|
|
1297
|
-
while ( true ) {
|
|
1298
|
-
v_4 = this.limit - this.cursor;
|
|
1299
|
-
lab5:
|
|
1300
|
-
do {
|
|
1301
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel1, 97, 305 ) ) {
|
|
1302
|
-
break lab5;
|
|
1303
|
-
}
|
|
1304
|
-
this.cursor = this.limit - v_4;
|
|
1305
|
-
break golab4;
|
|
1306
|
-
} while ( false );
|
|
1307
|
-
this.cursor = this.limit - v_4;
|
|
1308
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1309
|
-
break lab3;
|
|
1310
|
-
}
|
|
1311
|
-
this.cursor--;
|
|
1312
|
-
}
|
|
1313
|
-
break lab2;
|
|
1314
|
-
} while ( false );
|
|
1315
|
-
this.cursor = this.limit - v_3;
|
|
1316
|
-
lab6:
|
|
1317
|
-
do {
|
|
1318
|
-
if ( ! this.eq_s_b$esjava$2( 1, "e" ) ) {
|
|
1319
|
-
break lab6;
|
|
1320
|
-
}
|
|
1321
|
-
golab7:
|
|
1322
|
-
while ( true ) {
|
|
1323
|
-
v_5 = this.limit - this.cursor;
|
|
1324
|
-
lab8:
|
|
1325
|
-
do {
|
|
1326
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel2, 101, 252 ) ) {
|
|
1327
|
-
break lab8;
|
|
1328
|
-
}
|
|
1329
|
-
this.cursor = this.limit - v_5;
|
|
1330
|
-
break golab7;
|
|
1331
|
-
} while ( false );
|
|
1332
|
-
this.cursor = this.limit - v_5;
|
|
1333
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1334
|
-
break lab6;
|
|
1335
|
-
}
|
|
1336
|
-
this.cursor--;
|
|
1337
|
-
}
|
|
1338
|
-
break lab2;
|
|
1339
|
-
} while ( false );
|
|
1340
|
-
this.cursor = this.limit - v_3;
|
|
1341
|
-
lab9:
|
|
1342
|
-
do {
|
|
1343
|
-
if ( ! this.eq_s_b$esjava$2( 1, "\u0131" ) ) {
|
|
1344
|
-
break lab9;
|
|
1345
|
-
}
|
|
1346
|
-
golab10:
|
|
1347
|
-
while ( true ) {
|
|
1348
|
-
v_6 = this.limit - this.cursor;
|
|
1349
|
-
lab11:
|
|
1350
|
-
do {
|
|
1351
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel3, 97, 305 ) ) {
|
|
1352
|
-
break lab11;
|
|
1353
|
-
}
|
|
1354
|
-
this.cursor = this.limit - v_6;
|
|
1355
|
-
break golab10;
|
|
1356
|
-
} while ( false );
|
|
1357
|
-
this.cursor = this.limit - v_6;
|
|
1358
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1359
|
-
break lab9;
|
|
1360
|
-
}
|
|
1361
|
-
this.cursor--;
|
|
1362
|
-
}
|
|
1363
|
-
break lab2;
|
|
1364
|
-
} while ( false );
|
|
1365
|
-
this.cursor = this.limit - v_3;
|
|
1366
|
-
lab12:
|
|
1367
|
-
do {
|
|
1368
|
-
if ( ! this.eq_s_b$esjava$2( 1, "i" ) ) {
|
|
1369
|
-
break lab12;
|
|
1370
|
-
}
|
|
1371
|
-
golab13:
|
|
1372
|
-
while ( true ) {
|
|
1373
|
-
v_7 = this.limit - this.cursor;
|
|
1374
|
-
lab14:
|
|
1375
|
-
do {
|
|
1376
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel4, 101, 105 ) ) {
|
|
1377
|
-
break lab14;
|
|
1378
|
-
}
|
|
1379
|
-
this.cursor = this.limit - v_7;
|
|
1380
|
-
break golab13;
|
|
1381
|
-
} while ( false );
|
|
1382
|
-
this.cursor = this.limit - v_7;
|
|
1383
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1384
|
-
break lab12;
|
|
1385
|
-
}
|
|
1386
|
-
this.cursor--;
|
|
1387
|
-
}
|
|
1388
|
-
break lab2;
|
|
1389
|
-
} while ( false );
|
|
1390
|
-
this.cursor = this.limit - v_3;
|
|
1391
|
-
lab15:
|
|
1392
|
-
do {
|
|
1393
|
-
if ( ! this.eq_s_b$esjava$2( 1, "o" ) ) {
|
|
1394
|
-
break lab15;
|
|
1395
|
-
}
|
|
1396
|
-
golab16:
|
|
1397
|
-
while ( true ) {
|
|
1398
|
-
v_8 = this.limit - this.cursor;
|
|
1399
|
-
lab17:
|
|
1400
|
-
do {
|
|
1401
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel5, 111, 117 ) ) {
|
|
1402
|
-
break lab17;
|
|
1403
|
-
}
|
|
1404
|
-
this.cursor = this.limit - v_8;
|
|
1405
|
-
break golab16;
|
|
1406
|
-
} while ( false );
|
|
1407
|
-
this.cursor = this.limit - v_8;
|
|
1408
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1409
|
-
break lab15;
|
|
1410
|
-
}
|
|
1411
|
-
this.cursor--;
|
|
1412
|
-
}
|
|
1413
|
-
break lab2;
|
|
1414
|
-
} while ( false );
|
|
1415
|
-
this.cursor = this.limit - v_3;
|
|
1416
|
-
lab18:
|
|
1417
|
-
do {
|
|
1418
|
-
if ( ! this.eq_s_b$esjava$2( 1, "\u00F6" ) ) {
|
|
1419
|
-
break lab18;
|
|
1420
|
-
}
|
|
1421
|
-
golab19:
|
|
1422
|
-
while ( true ) {
|
|
1423
|
-
v_9 = this.limit - this.cursor;
|
|
1424
|
-
lab20:
|
|
1425
|
-
do {
|
|
1426
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel6, 246, 252 ) ) {
|
|
1427
|
-
break lab20;
|
|
1428
|
-
}
|
|
1429
|
-
this.cursor = this.limit - v_9;
|
|
1430
|
-
break golab19;
|
|
1431
|
-
} while ( false );
|
|
1432
|
-
this.cursor = this.limit - v_9;
|
|
1433
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1434
|
-
break lab18;
|
|
1435
|
-
}
|
|
1436
|
-
this.cursor--;
|
|
1437
|
-
}
|
|
1438
|
-
break lab2;
|
|
1439
|
-
} while ( false );
|
|
1440
|
-
this.cursor = this.limit - v_3;
|
|
1441
|
-
lab21:
|
|
1442
|
-
do {
|
|
1443
|
-
if ( ! this.eq_s_b$esjava$2( 1, "u" ) ) {
|
|
1444
|
-
break lab21;
|
|
1445
|
-
}
|
|
1446
|
-
golab22:
|
|
1447
|
-
while ( true ) {
|
|
1448
|
-
v_10 = this.limit - this.cursor;
|
|
1449
|
-
lab23:
|
|
1450
|
-
do {
|
|
1451
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel5, 111, 117 ) ) {
|
|
1452
|
-
break lab23;
|
|
1453
|
-
}
|
|
1454
|
-
this.cursor = this.limit - v_10;
|
|
1455
|
-
break golab22;
|
|
1456
|
-
} while ( false );
|
|
1457
|
-
this.cursor = this.limit - v_10;
|
|
1458
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1459
|
-
break lab21;
|
|
1460
|
-
}
|
|
1461
|
-
this.cursor--;
|
|
1462
|
-
}
|
|
1463
|
-
break lab2;
|
|
1464
|
-
} while ( false );
|
|
1465
|
-
this.cursor = this.limit - v_3;
|
|
1466
|
-
if ( ! this.eq_s_b$esjava$2( 1, "\u00FC" ) ) {
|
|
1467
|
-
return false;
|
|
1468
|
-
}
|
|
1469
|
-
golab24:
|
|
1470
|
-
while ( true ) {
|
|
1471
|
-
v_11 = this.limit - this.cursor;
|
|
1472
|
-
lab25:
|
|
1473
|
-
do {
|
|
1474
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel6, 246, 252 ) ) {
|
|
1475
|
-
break lab25;
|
|
1476
|
-
}
|
|
1477
|
-
this.cursor = this.limit - v_11;
|
|
1478
|
-
break golab24;
|
|
1479
|
-
} while ( false );
|
|
1480
|
-
this.cursor = this.limit - v_11;
|
|
1481
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1482
|
-
return false;
|
|
1483
|
-
}
|
|
1484
|
-
this.cursor--;
|
|
1485
|
-
}
|
|
1486
|
-
} while ( false );
|
|
1487
|
-
this.cursor = this.limit - v_1;
|
|
1488
|
-
return true;
|
|
1489
|
-
}
|
|
1490
|
-
|
|
1491
|
-
r_mark_suffix_with_optional_n_consonant$esjava$0() {
|
|
1492
|
-
let v_1;
|
|
1493
|
-
let v_2;
|
|
1494
|
-
let v_3;
|
|
1495
|
-
let v_4;
|
|
1496
|
-
let v_5;
|
|
1497
|
-
let v_6;
|
|
1498
|
-
let v_7;
|
|
1499
|
-
lab0:
|
|
1500
|
-
do {
|
|
1501
|
-
v_1 = this.limit - this.cursor;
|
|
1502
|
-
lab1:
|
|
1503
|
-
do {
|
|
1504
|
-
v_2 = this.limit - this.cursor;
|
|
1505
|
-
if ( ! this.eq_s_b$esjava$2( 1, "n" ) ) {
|
|
1506
|
-
break lab1;
|
|
1507
|
-
}
|
|
1508
|
-
this.cursor = this.limit - v_2;
|
|
1509
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1510
|
-
break lab1;
|
|
1511
|
-
}
|
|
1512
|
-
this.cursor--;
|
|
1513
|
-
v_3 = this.limit - this.cursor;
|
|
1514
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1515
|
-
break lab1;
|
|
1516
|
-
}
|
|
1517
|
-
this.cursor = this.limit - v_3;
|
|
1518
|
-
break lab0;
|
|
1519
|
-
} while ( false );
|
|
1520
|
-
this.cursor = this.limit - v_1;
|
|
1521
|
-
{
|
|
1522
|
-
v_4 = this.limit - this.cursor;
|
|
1523
|
-
lab2:
|
|
1524
|
-
do {
|
|
1525
|
-
v_5 = this.limit - this.cursor;
|
|
1526
|
-
if ( ! this.eq_s_b$esjava$2( 1, "n" ) ) {
|
|
1527
|
-
break lab2;
|
|
1528
|
-
}
|
|
1529
|
-
this.cursor = this.limit - v_5;
|
|
1530
|
-
return false;
|
|
1531
|
-
} while ( false );
|
|
1532
|
-
this.cursor = this.limit - v_4;
|
|
1533
|
-
}
|
|
1534
|
-
v_6 = this.limit - this.cursor;
|
|
1535
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1536
|
-
return false;
|
|
1537
|
-
}
|
|
1538
|
-
this.cursor--;
|
|
1539
|
-
v_7 = this.limit - this.cursor;
|
|
1540
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1541
|
-
return false;
|
|
1542
|
-
}
|
|
1543
|
-
this.cursor = this.limit - v_7;
|
|
1544
|
-
this.cursor = this.limit - v_6;
|
|
1545
|
-
} while ( false );
|
|
1546
|
-
return true;
|
|
1547
|
-
}
|
|
1548
|
-
|
|
1549
|
-
r_mark_suffix_with_optional_s_consonant$esjava$0() {
|
|
1550
|
-
let v_1;
|
|
1551
|
-
let v_2;
|
|
1552
|
-
let v_3;
|
|
1553
|
-
let v_4;
|
|
1554
|
-
let v_5;
|
|
1555
|
-
let v_6;
|
|
1556
|
-
let v_7;
|
|
1557
|
-
lab0:
|
|
1558
|
-
do {
|
|
1559
|
-
v_1 = this.limit - this.cursor;
|
|
1560
|
-
lab1:
|
|
1561
|
-
do {
|
|
1562
|
-
v_2 = this.limit - this.cursor;
|
|
1563
|
-
if ( ! this.eq_s_b$esjava$2( 1, "s" ) ) {
|
|
1564
|
-
break lab1;
|
|
1565
|
-
}
|
|
1566
|
-
this.cursor = this.limit - v_2;
|
|
1567
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1568
|
-
break lab1;
|
|
1569
|
-
}
|
|
1570
|
-
this.cursor--;
|
|
1571
|
-
v_3 = this.limit - this.cursor;
|
|
1572
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1573
|
-
break lab1;
|
|
1574
|
-
}
|
|
1575
|
-
this.cursor = this.limit - v_3;
|
|
1576
|
-
break lab0;
|
|
1577
|
-
} while ( false );
|
|
1578
|
-
this.cursor = this.limit - v_1;
|
|
1579
|
-
{
|
|
1580
|
-
v_4 = this.limit - this.cursor;
|
|
1581
|
-
lab2:
|
|
1582
|
-
do {
|
|
1583
|
-
v_5 = this.limit - this.cursor;
|
|
1584
|
-
if ( ! this.eq_s_b$esjava$2( 1, "s" ) ) {
|
|
1585
|
-
break lab2;
|
|
1586
|
-
}
|
|
1587
|
-
this.cursor = this.limit - v_5;
|
|
1588
|
-
return false;
|
|
1589
|
-
} while ( false );
|
|
1590
|
-
this.cursor = this.limit - v_4;
|
|
1591
|
-
}
|
|
1592
|
-
v_6 = this.limit - this.cursor;
|
|
1593
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1594
|
-
return false;
|
|
1595
|
-
}
|
|
1596
|
-
this.cursor--;
|
|
1597
|
-
v_7 = this.limit - this.cursor;
|
|
1598
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1599
|
-
return false;
|
|
1600
|
-
}
|
|
1601
|
-
this.cursor = this.limit - v_7;
|
|
1602
|
-
this.cursor = this.limit - v_6;
|
|
1603
|
-
} while ( false );
|
|
1604
|
-
return true;
|
|
1605
|
-
}
|
|
1606
|
-
|
|
1607
|
-
r_mark_suffix_with_optional_y_consonant$esjava$0() {
|
|
1608
|
-
let v_1;
|
|
1609
|
-
let v_2;
|
|
1610
|
-
let v_3;
|
|
1611
|
-
let v_4;
|
|
1612
|
-
let v_5;
|
|
1613
|
-
let v_6;
|
|
1614
|
-
let v_7;
|
|
1615
|
-
lab0:
|
|
1616
|
-
do {
|
|
1617
|
-
v_1 = this.limit - this.cursor;
|
|
1618
|
-
lab1:
|
|
1619
|
-
do {
|
|
1620
|
-
v_2 = this.limit - this.cursor;
|
|
1621
|
-
if ( ! this.eq_s_b$esjava$2( 1, "y" ) ) {
|
|
1622
|
-
break lab1;
|
|
1623
|
-
}
|
|
1624
|
-
this.cursor = this.limit - v_2;
|
|
1625
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1626
|
-
break lab1;
|
|
1627
|
-
}
|
|
1628
|
-
this.cursor--;
|
|
1629
|
-
v_3 = this.limit - this.cursor;
|
|
1630
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1631
|
-
break lab1;
|
|
1632
|
-
}
|
|
1633
|
-
this.cursor = this.limit - v_3;
|
|
1634
|
-
break lab0;
|
|
1635
|
-
} while ( false );
|
|
1636
|
-
this.cursor = this.limit - v_1;
|
|
1637
|
-
{
|
|
1638
|
-
v_4 = this.limit - this.cursor;
|
|
1639
|
-
lab2:
|
|
1640
|
-
do {
|
|
1641
|
-
v_5 = this.limit - this.cursor;
|
|
1642
|
-
if ( ! this.eq_s_b$esjava$2( 1, "y" ) ) {
|
|
1643
|
-
break lab2;
|
|
1644
|
-
}
|
|
1645
|
-
this.cursor = this.limit - v_5;
|
|
1646
|
-
return false;
|
|
1647
|
-
} while ( false );
|
|
1648
|
-
this.cursor = this.limit - v_4;
|
|
1649
|
-
}
|
|
1650
|
-
v_6 = this.limit - this.cursor;
|
|
1651
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1652
|
-
return false;
|
|
1653
|
-
}
|
|
1654
|
-
this.cursor--;
|
|
1655
|
-
v_7 = this.limit - this.cursor;
|
|
1656
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1657
|
-
return false;
|
|
1658
|
-
}
|
|
1659
|
-
this.cursor = this.limit - v_7;
|
|
1660
|
-
this.cursor = this.limit - v_6;
|
|
1661
|
-
} while ( false );
|
|
1662
|
-
return true;
|
|
1663
|
-
}
|
|
1664
|
-
|
|
1665
|
-
r_mark_suffix_with_optional_U_vowel$esjava$0() {
|
|
1666
|
-
let v_1;
|
|
1667
|
-
let v_2;
|
|
1668
|
-
let v_3;
|
|
1669
|
-
let v_4;
|
|
1670
|
-
let v_5;
|
|
1671
|
-
let v_6;
|
|
1672
|
-
let v_7;
|
|
1673
|
-
lab0:
|
|
1674
|
-
do {
|
|
1675
|
-
v_1 = this.limit - this.cursor;
|
|
1676
|
-
lab1:
|
|
1677
|
-
do {
|
|
1678
|
-
v_2 = this.limit - this.cursor;
|
|
1679
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_U, 105, 305 ) ) {
|
|
1680
|
-
break lab1;
|
|
1681
|
-
}
|
|
1682
|
-
this.cursor = this.limit - v_2;
|
|
1683
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1684
|
-
break lab1;
|
|
1685
|
-
}
|
|
1686
|
-
this.cursor--;
|
|
1687
|
-
v_3 = this.limit - this.cursor;
|
|
1688
|
-
if ( ! this.out_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1689
|
-
break lab1;
|
|
1690
|
-
}
|
|
1691
|
-
this.cursor = this.limit - v_3;
|
|
1692
|
-
break lab0;
|
|
1693
|
-
} while ( false );
|
|
1694
|
-
this.cursor = this.limit - v_1;
|
|
1695
|
-
{
|
|
1696
|
-
v_4 = this.limit - this.cursor;
|
|
1697
|
-
lab2:
|
|
1698
|
-
do {
|
|
1699
|
-
v_5 = this.limit - this.cursor;
|
|
1700
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_U, 105, 305 ) ) {
|
|
1701
|
-
break lab2;
|
|
1702
|
-
}
|
|
1703
|
-
this.cursor = this.limit - v_5;
|
|
1704
|
-
return false;
|
|
1705
|
-
} while ( false );
|
|
1706
|
-
this.cursor = this.limit - v_4;
|
|
1707
|
-
}
|
|
1708
|
-
v_6 = this.limit - this.cursor;
|
|
1709
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
1710
|
-
return false;
|
|
1711
|
-
}
|
|
1712
|
-
this.cursor--;
|
|
1713
|
-
v_7 = this.limit - this.cursor;
|
|
1714
|
-
if ( ! this.out_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
1715
|
-
return false;
|
|
1716
|
-
}
|
|
1717
|
-
this.cursor = this.limit - v_7;
|
|
1718
|
-
this.cursor = this.limit - v_6;
|
|
1719
|
-
} while ( false );
|
|
1720
|
-
return true;
|
|
1721
|
-
}
|
|
1722
|
-
|
|
1723
|
-
r_mark_possessives$esjava$0() {
|
|
1724
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_0, 10 ) === 0 ) {
|
|
1725
|
-
return false;
|
|
1726
|
-
}
|
|
1727
|
-
if ( ! this.r_mark_suffix_with_optional_U_vowel$esjava$0() ) {
|
|
1728
|
-
return false;
|
|
1729
|
-
}
|
|
1730
|
-
return true;
|
|
1731
|
-
}
|
|
1732
|
-
|
|
1733
|
-
r_mark_sU$esjava$0() {
|
|
1734
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1735
|
-
return false;
|
|
1736
|
-
}
|
|
1737
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_U, 105, 305 ) ) {
|
|
1738
|
-
return false;
|
|
1739
|
-
}
|
|
1740
|
-
if ( ! this.r_mark_suffix_with_optional_s_consonant$esjava$0() ) {
|
|
1741
|
-
return false;
|
|
1742
|
-
}
|
|
1743
|
-
return true;
|
|
1744
|
-
}
|
|
1745
|
-
|
|
1746
|
-
r_mark_lArI$esjava$0() {
|
|
1747
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_1, 2 ) === 0 ) {
|
|
1748
|
-
return false;
|
|
1749
|
-
}
|
|
1750
|
-
return true;
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
|
-
r_mark_yU$esjava$0() {
|
|
1754
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1755
|
-
return false;
|
|
1756
|
-
}
|
|
1757
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_U, 105, 305 ) ) {
|
|
1758
|
-
return false;
|
|
1759
|
-
}
|
|
1760
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1761
|
-
return false;
|
|
1762
|
-
}
|
|
1763
|
-
return true;
|
|
1764
|
-
}
|
|
1765
|
-
|
|
1766
|
-
r_mark_nU$esjava$0() {
|
|
1767
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1768
|
-
return false;
|
|
1769
|
-
}
|
|
1770
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_2, 4 ) === 0 ) {
|
|
1771
|
-
return false;
|
|
1772
|
-
}
|
|
1773
|
-
return true;
|
|
1774
|
-
}
|
|
1775
|
-
|
|
1776
|
-
r_mark_nUn$esjava$0() {
|
|
1777
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1778
|
-
return false;
|
|
1779
|
-
}
|
|
1780
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_3, 4 ) === 0 ) {
|
|
1781
|
-
return false;
|
|
1782
|
-
}
|
|
1783
|
-
if ( ! this.r_mark_suffix_with_optional_n_consonant$esjava$0() ) {
|
|
1784
|
-
return false;
|
|
1785
|
-
}
|
|
1786
|
-
return true;
|
|
1787
|
-
}
|
|
1788
|
-
|
|
1789
|
-
r_mark_yA$esjava$0() {
|
|
1790
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1791
|
-
return false;
|
|
1792
|
-
}
|
|
1793
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_4, 2 ) === 0 ) {
|
|
1794
|
-
return false;
|
|
1795
|
-
}
|
|
1796
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1797
|
-
return false;
|
|
1798
|
-
}
|
|
1799
|
-
return true;
|
|
1800
|
-
}
|
|
1801
|
-
|
|
1802
|
-
r_mark_nA$esjava$0() {
|
|
1803
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1804
|
-
return false;
|
|
1805
|
-
}
|
|
1806
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_5, 2 ) === 0 ) {
|
|
1807
|
-
return false;
|
|
1808
|
-
}
|
|
1809
|
-
return true;
|
|
1810
|
-
}
|
|
1811
|
-
|
|
1812
|
-
r_mark_DA$esjava$0() {
|
|
1813
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1814
|
-
return false;
|
|
1815
|
-
}
|
|
1816
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_6, 4 ) === 0 ) {
|
|
1817
|
-
return false;
|
|
1818
|
-
}
|
|
1819
|
-
return true;
|
|
1820
|
-
}
|
|
1821
|
-
|
|
1822
|
-
r_mark_ndA$esjava$0() {
|
|
1823
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1824
|
-
return false;
|
|
1825
|
-
}
|
|
1826
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_7, 2 ) === 0 ) {
|
|
1827
|
-
return false;
|
|
1828
|
-
}
|
|
1829
|
-
return true;
|
|
1830
|
-
}
|
|
1831
|
-
|
|
1832
|
-
r_mark_DAn$esjava$0() {
|
|
1833
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1834
|
-
return false;
|
|
1835
|
-
}
|
|
1836
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_8, 4 ) === 0 ) {
|
|
1837
|
-
return false;
|
|
1838
|
-
}
|
|
1839
|
-
return true;
|
|
1840
|
-
}
|
|
1841
|
-
|
|
1842
|
-
r_mark_ndAn$esjava$0() {
|
|
1843
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1844
|
-
return false;
|
|
1845
|
-
}
|
|
1846
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_9, 2 ) === 0 ) {
|
|
1847
|
-
return false;
|
|
1848
|
-
}
|
|
1849
|
-
return true;
|
|
1850
|
-
}
|
|
1851
|
-
|
|
1852
|
-
r_mark_ylA$esjava$0() {
|
|
1853
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1854
|
-
return false;
|
|
1855
|
-
}
|
|
1856
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_10, 2 ) === 0 ) {
|
|
1857
|
-
return false;
|
|
1858
|
-
}
|
|
1859
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1860
|
-
return false;
|
|
1861
|
-
}
|
|
1862
|
-
return true;
|
|
1863
|
-
}
|
|
1864
|
-
|
|
1865
|
-
r_mark_ki$esjava$0() {
|
|
1866
|
-
if ( ! this.eq_s_b$esjava$2( 2, "ki" ) ) {
|
|
1867
|
-
return false;
|
|
1868
|
-
}
|
|
1869
|
-
return true;
|
|
1870
|
-
}
|
|
1871
|
-
|
|
1872
|
-
r_mark_ncA$esjava$0() {
|
|
1873
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1874
|
-
return false;
|
|
1875
|
-
}
|
|
1876
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_11, 2 ) === 0 ) {
|
|
1877
|
-
return false;
|
|
1878
|
-
}
|
|
1879
|
-
if ( ! this.r_mark_suffix_with_optional_n_consonant$esjava$0() ) {
|
|
1880
|
-
return false;
|
|
1881
|
-
}
|
|
1882
|
-
return true;
|
|
1883
|
-
}
|
|
1884
|
-
|
|
1885
|
-
r_mark_yUm$esjava$0() {
|
|
1886
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1887
|
-
return false;
|
|
1888
|
-
}
|
|
1889
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_12, 4 ) === 0 ) {
|
|
1890
|
-
return false;
|
|
1891
|
-
}
|
|
1892
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1893
|
-
return false;
|
|
1894
|
-
}
|
|
1895
|
-
return true;
|
|
1896
|
-
}
|
|
1897
|
-
|
|
1898
|
-
r_mark_sUn$esjava$0() {
|
|
1899
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1900
|
-
return false;
|
|
1901
|
-
}
|
|
1902
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_13, 4 ) === 0 ) {
|
|
1903
|
-
return false;
|
|
1904
|
-
}
|
|
1905
|
-
return true;
|
|
1906
|
-
}
|
|
1907
|
-
|
|
1908
|
-
r_mark_yUz$esjava$0() {
|
|
1909
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1910
|
-
return false;
|
|
1911
|
-
}
|
|
1912
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_14, 4 ) === 0 ) {
|
|
1913
|
-
return false;
|
|
1914
|
-
}
|
|
1915
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1916
|
-
return false;
|
|
1917
|
-
}
|
|
1918
|
-
return true;
|
|
1919
|
-
}
|
|
1920
|
-
|
|
1921
|
-
r_mark_sUnUz$esjava$0() {
|
|
1922
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_15, 4 ) === 0 ) {
|
|
1923
|
-
return false;
|
|
1924
|
-
}
|
|
1925
|
-
return true;
|
|
1926
|
-
}
|
|
1927
|
-
|
|
1928
|
-
r_mark_lAr$esjava$0() {
|
|
1929
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1930
|
-
return false;
|
|
1931
|
-
}
|
|
1932
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_16, 2 ) === 0 ) {
|
|
1933
|
-
return false;
|
|
1934
|
-
}
|
|
1935
|
-
return true;
|
|
1936
|
-
}
|
|
1937
|
-
|
|
1938
|
-
r_mark_nUz$esjava$0() {
|
|
1939
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1940
|
-
return false;
|
|
1941
|
-
}
|
|
1942
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_17, 4 ) === 0 ) {
|
|
1943
|
-
return false;
|
|
1944
|
-
}
|
|
1945
|
-
return true;
|
|
1946
|
-
}
|
|
1947
|
-
|
|
1948
|
-
r_mark_DUr$esjava$0() {
|
|
1949
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1950
|
-
return false;
|
|
1951
|
-
}
|
|
1952
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_18, 8 ) === 0 ) {
|
|
1953
|
-
return false;
|
|
1954
|
-
}
|
|
1955
|
-
return true;
|
|
1956
|
-
}
|
|
1957
|
-
|
|
1958
|
-
r_mark_cAsInA$esjava$0() {
|
|
1959
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_19, 2 ) === 0 ) {
|
|
1960
|
-
return false;
|
|
1961
|
-
}
|
|
1962
|
-
return true;
|
|
1963
|
-
}
|
|
1964
|
-
|
|
1965
|
-
r_mark_yDU$esjava$0() {
|
|
1966
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1967
|
-
return false;
|
|
1968
|
-
}
|
|
1969
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_20, 32 ) === 0 ) {
|
|
1970
|
-
return false;
|
|
1971
|
-
}
|
|
1972
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1973
|
-
return false;
|
|
1974
|
-
}
|
|
1975
|
-
return true;
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
r_mark_ysA$esjava$0() {
|
|
1979
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_21, 8 ) === 0 ) {
|
|
1980
|
-
return false;
|
|
1981
|
-
}
|
|
1982
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1983
|
-
return false;
|
|
1984
|
-
}
|
|
1985
|
-
return true;
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
r_mark_ymUs_$esjava$0() {
|
|
1989
|
-
if ( ! this.r_check_vowel_harmony$esjava$0() ) {
|
|
1990
|
-
return false;
|
|
1991
|
-
}
|
|
1992
|
-
if ( this.find_among_b$esjava$2( TurkishStemmer.a_22, 4 ) === 0 ) {
|
|
1993
|
-
return false;
|
|
1994
|
-
}
|
|
1995
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
1996
|
-
return false;
|
|
1997
|
-
}
|
|
1998
|
-
return true;
|
|
1999
|
-
}
|
|
2000
|
-
|
|
2001
|
-
r_mark_yken$esjava$0() {
|
|
2002
|
-
if ( ! this.eq_s_b$esjava$2( 3, "ken" ) ) {
|
|
2003
|
-
return false;
|
|
2004
|
-
}
|
|
2005
|
-
if ( ! this.r_mark_suffix_with_optional_y_consonant$esjava$0() ) {
|
|
2006
|
-
return false;
|
|
2007
|
-
}
|
|
2008
|
-
return true;
|
|
2009
|
-
}
|
|
2010
|
-
|
|
2011
|
-
r_stem_nominal_verb_suffixes$esjava$0() {
|
|
2012
|
-
let v_1;
|
|
2013
|
-
let v_2;
|
|
2014
|
-
let v_3;
|
|
2015
|
-
let v_4;
|
|
2016
|
-
let v_5;
|
|
2017
|
-
let v_6;
|
|
2018
|
-
let v_7;
|
|
2019
|
-
let v_8;
|
|
2020
|
-
let v_9;
|
|
2021
|
-
let v_10;
|
|
2022
|
-
this.ket = this.cursor;
|
|
2023
|
-
this.B_continue_stemming_noun_suffixes = true;
|
|
2024
|
-
lab0:
|
|
2025
|
-
do {
|
|
2026
|
-
v_1 = this.limit - this.cursor;
|
|
2027
|
-
lab1:
|
|
2028
|
-
do {
|
|
2029
|
-
lab2:
|
|
2030
|
-
do {
|
|
2031
|
-
v_2 = this.limit - this.cursor;
|
|
2032
|
-
lab3:
|
|
2033
|
-
do {
|
|
2034
|
-
if ( ! this.r_mark_ymUs_$esjava$0() ) {
|
|
2035
|
-
break lab3;
|
|
2036
|
-
}
|
|
2037
|
-
break lab2;
|
|
2038
|
-
} while ( false );
|
|
2039
|
-
this.cursor = this.limit - v_2;
|
|
2040
|
-
lab4:
|
|
2041
|
-
do {
|
|
2042
|
-
if ( ! this.r_mark_yDU$esjava$0() ) {
|
|
2043
|
-
break lab4;
|
|
2044
|
-
}
|
|
2045
|
-
break lab2;
|
|
2046
|
-
} while ( false );
|
|
2047
|
-
this.cursor = this.limit - v_2;
|
|
2048
|
-
lab5:
|
|
2049
|
-
do {
|
|
2050
|
-
if ( ! this.r_mark_ysA$esjava$0() ) {
|
|
2051
|
-
break lab5;
|
|
2052
|
-
}
|
|
2053
|
-
break lab2;
|
|
2054
|
-
} while ( false );
|
|
2055
|
-
this.cursor = this.limit - v_2;
|
|
2056
|
-
if ( ! this.r_mark_yken$esjava$0() ) {
|
|
2057
|
-
break lab1;
|
|
2058
|
-
}
|
|
2059
|
-
} while ( false );
|
|
2060
|
-
break lab0;
|
|
2061
|
-
} while ( false );
|
|
2062
|
-
this.cursor = this.limit - v_1;
|
|
2063
|
-
lab6:
|
|
2064
|
-
do {
|
|
2065
|
-
if ( ! this.r_mark_cAsInA$esjava$0() ) {
|
|
2066
|
-
break lab6;
|
|
2067
|
-
}
|
|
2068
|
-
lab7:
|
|
2069
|
-
do {
|
|
2070
|
-
v_3 = this.limit - this.cursor;
|
|
2071
|
-
lab8:
|
|
2072
|
-
do {
|
|
2073
|
-
if ( ! this.r_mark_sUnUz$esjava$0() ) {
|
|
2074
|
-
break lab8;
|
|
2075
|
-
}
|
|
2076
|
-
break lab7;
|
|
2077
|
-
} while ( false );
|
|
2078
|
-
this.cursor = this.limit - v_3;
|
|
2079
|
-
lab9:
|
|
2080
|
-
do {
|
|
2081
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2082
|
-
break lab9;
|
|
2083
|
-
}
|
|
2084
|
-
break lab7;
|
|
2085
|
-
} while ( false );
|
|
2086
|
-
this.cursor = this.limit - v_3;
|
|
2087
|
-
lab10:
|
|
2088
|
-
do {
|
|
2089
|
-
if ( ! this.r_mark_yUm$esjava$0() ) {
|
|
2090
|
-
break lab10;
|
|
2091
|
-
}
|
|
2092
|
-
break lab7;
|
|
2093
|
-
} while ( false );
|
|
2094
|
-
this.cursor = this.limit - v_3;
|
|
2095
|
-
lab11:
|
|
2096
|
-
do {
|
|
2097
|
-
if ( ! this.r_mark_sUn$esjava$0() ) {
|
|
2098
|
-
break lab11;
|
|
2099
|
-
}
|
|
2100
|
-
break lab7;
|
|
2101
|
-
} while ( false );
|
|
2102
|
-
this.cursor = this.limit - v_3;
|
|
2103
|
-
lab12:
|
|
2104
|
-
do {
|
|
2105
|
-
if ( ! this.r_mark_yUz$esjava$0() ) {
|
|
2106
|
-
break lab12;
|
|
2107
|
-
}
|
|
2108
|
-
break lab7;
|
|
2109
|
-
} while ( false );
|
|
2110
|
-
this.cursor = this.limit - v_3;
|
|
2111
|
-
} while ( false );
|
|
2112
|
-
if ( ! this.r_mark_ymUs_$esjava$0() ) {
|
|
2113
|
-
break lab6;
|
|
2114
|
-
}
|
|
2115
|
-
break lab0;
|
|
2116
|
-
} while ( false );
|
|
2117
|
-
this.cursor = this.limit - v_1;
|
|
2118
|
-
lab13:
|
|
2119
|
-
do {
|
|
2120
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2121
|
-
break lab13;
|
|
2122
|
-
}
|
|
2123
|
-
this.bra = this.cursor;
|
|
2124
|
-
this.slice_del$esjava$0();
|
|
2125
|
-
v_4 = this.limit - this.cursor;
|
|
2126
|
-
lab14:
|
|
2127
|
-
do {
|
|
2128
|
-
this.ket = this.cursor;
|
|
2129
|
-
lab15:
|
|
2130
|
-
do {
|
|
2131
|
-
v_5 = this.limit - this.cursor;
|
|
2132
|
-
lab16:
|
|
2133
|
-
do {
|
|
2134
|
-
if ( ! this.r_mark_DUr$esjava$0() ) {
|
|
2135
|
-
break lab16;
|
|
2136
|
-
}
|
|
2137
|
-
break lab15;
|
|
2138
|
-
} while ( false );
|
|
2139
|
-
this.cursor = this.limit - v_5;
|
|
2140
|
-
lab17:
|
|
2141
|
-
do {
|
|
2142
|
-
if ( ! this.r_mark_yDU$esjava$0() ) {
|
|
2143
|
-
break lab17;
|
|
2144
|
-
}
|
|
2145
|
-
break lab15;
|
|
2146
|
-
} while ( false );
|
|
2147
|
-
this.cursor = this.limit - v_5;
|
|
2148
|
-
lab18:
|
|
2149
|
-
do {
|
|
2150
|
-
if ( ! this.r_mark_ysA$esjava$0() ) {
|
|
2151
|
-
break lab18;
|
|
2152
|
-
}
|
|
2153
|
-
break lab15;
|
|
2154
|
-
} while ( false );
|
|
2155
|
-
this.cursor = this.limit - v_5;
|
|
2156
|
-
if ( ! this.r_mark_ymUs_$esjava$0() ) {
|
|
2157
|
-
this.cursor = this.limit - v_4;
|
|
2158
|
-
break lab14;
|
|
2159
|
-
}
|
|
2160
|
-
} while ( false );
|
|
2161
|
-
} while ( false );
|
|
2162
|
-
this.B_continue_stemming_noun_suffixes = false;
|
|
2163
|
-
break lab0;
|
|
2164
|
-
} while ( false );
|
|
2165
|
-
this.cursor = this.limit - v_1;
|
|
2166
|
-
lab19:
|
|
2167
|
-
do {
|
|
2168
|
-
if ( ! this.r_mark_nUz$esjava$0() ) {
|
|
2169
|
-
break lab19;
|
|
2170
|
-
}
|
|
2171
|
-
lab20:
|
|
2172
|
-
do {
|
|
2173
|
-
v_6 = this.limit - this.cursor;
|
|
2174
|
-
lab21:
|
|
2175
|
-
do {
|
|
2176
|
-
if ( ! this.r_mark_yDU$esjava$0() ) {
|
|
2177
|
-
break lab21;
|
|
2178
|
-
}
|
|
2179
|
-
break lab20;
|
|
2180
|
-
} while ( false );
|
|
2181
|
-
this.cursor = this.limit - v_6;
|
|
2182
|
-
if ( ! this.r_mark_ysA$esjava$0() ) {
|
|
2183
|
-
break lab19;
|
|
2184
|
-
}
|
|
2185
|
-
} while ( false );
|
|
2186
|
-
break lab0;
|
|
2187
|
-
} while ( false );
|
|
2188
|
-
this.cursor = this.limit - v_1;
|
|
2189
|
-
lab22:
|
|
2190
|
-
do {
|
|
2191
|
-
lab23:
|
|
2192
|
-
do {
|
|
2193
|
-
v_7 = this.limit - this.cursor;
|
|
2194
|
-
lab24:
|
|
2195
|
-
do {
|
|
2196
|
-
if ( ! this.r_mark_sUnUz$esjava$0() ) {
|
|
2197
|
-
break lab24;
|
|
2198
|
-
}
|
|
2199
|
-
break lab23;
|
|
2200
|
-
} while ( false );
|
|
2201
|
-
this.cursor = this.limit - v_7;
|
|
2202
|
-
lab25:
|
|
2203
|
-
do {
|
|
2204
|
-
if ( ! this.r_mark_yUz$esjava$0() ) {
|
|
2205
|
-
break lab25;
|
|
2206
|
-
}
|
|
2207
|
-
break lab23;
|
|
2208
|
-
} while ( false );
|
|
2209
|
-
this.cursor = this.limit - v_7;
|
|
2210
|
-
lab26:
|
|
2211
|
-
do {
|
|
2212
|
-
if ( ! this.r_mark_sUn$esjava$0() ) {
|
|
2213
|
-
break lab26;
|
|
2214
|
-
}
|
|
2215
|
-
break lab23;
|
|
2216
|
-
} while ( false );
|
|
2217
|
-
this.cursor = this.limit - v_7;
|
|
2218
|
-
if ( ! this.r_mark_yUm$esjava$0() ) {
|
|
2219
|
-
break lab22;
|
|
2220
|
-
}
|
|
2221
|
-
} while ( false );
|
|
2222
|
-
this.bra = this.cursor;
|
|
2223
|
-
this.slice_del$esjava$0();
|
|
2224
|
-
v_8 = this.limit - this.cursor;
|
|
2225
|
-
lab27:
|
|
2226
|
-
do {
|
|
2227
|
-
this.ket = this.cursor;
|
|
2228
|
-
if ( ! this.r_mark_ymUs_$esjava$0() ) {
|
|
2229
|
-
this.cursor = this.limit - v_8;
|
|
2230
|
-
break lab27;
|
|
2231
|
-
}
|
|
2232
|
-
} while ( false );
|
|
2233
|
-
break lab0;
|
|
2234
|
-
} while ( false );
|
|
2235
|
-
this.cursor = this.limit - v_1;
|
|
2236
|
-
if ( ! this.r_mark_DUr$esjava$0() ) {
|
|
2237
|
-
return false;
|
|
2238
|
-
}
|
|
2239
|
-
this.bra = this.cursor;
|
|
2240
|
-
this.slice_del$esjava$0();
|
|
2241
|
-
v_9 = this.limit - this.cursor;
|
|
2242
|
-
lab28:
|
|
2243
|
-
do {
|
|
2244
|
-
this.ket = this.cursor;
|
|
2245
|
-
lab29:
|
|
2246
|
-
do {
|
|
2247
|
-
v_10 = this.limit - this.cursor;
|
|
2248
|
-
lab30:
|
|
2249
|
-
do {
|
|
2250
|
-
if ( ! this.r_mark_sUnUz$esjava$0() ) {
|
|
2251
|
-
break lab30;
|
|
2252
|
-
}
|
|
2253
|
-
break lab29;
|
|
2254
|
-
} while ( false );
|
|
2255
|
-
this.cursor = this.limit - v_10;
|
|
2256
|
-
lab31:
|
|
2257
|
-
do {
|
|
2258
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2259
|
-
break lab31;
|
|
2260
|
-
}
|
|
2261
|
-
break lab29;
|
|
2262
|
-
} while ( false );
|
|
2263
|
-
this.cursor = this.limit - v_10;
|
|
2264
|
-
lab32:
|
|
2265
|
-
do {
|
|
2266
|
-
if ( ! this.r_mark_yUm$esjava$0() ) {
|
|
2267
|
-
break lab32;
|
|
2268
|
-
}
|
|
2269
|
-
break lab29;
|
|
2270
|
-
} while ( false );
|
|
2271
|
-
this.cursor = this.limit - v_10;
|
|
2272
|
-
lab33:
|
|
2273
|
-
do {
|
|
2274
|
-
if ( ! this.r_mark_sUn$esjava$0() ) {
|
|
2275
|
-
break lab33;
|
|
2276
|
-
}
|
|
2277
|
-
break lab29;
|
|
2278
|
-
} while ( false );
|
|
2279
|
-
this.cursor = this.limit - v_10;
|
|
2280
|
-
lab34:
|
|
2281
|
-
do {
|
|
2282
|
-
if ( ! this.r_mark_yUz$esjava$0() ) {
|
|
2283
|
-
break lab34;
|
|
2284
|
-
}
|
|
2285
|
-
break lab29;
|
|
2286
|
-
} while ( false );
|
|
2287
|
-
this.cursor = this.limit - v_10;
|
|
2288
|
-
} while ( false );
|
|
2289
|
-
if ( ! this.r_mark_ymUs_$esjava$0() ) {
|
|
2290
|
-
this.cursor = this.limit - v_9;
|
|
2291
|
-
break lab28;
|
|
2292
|
-
}
|
|
2293
|
-
} while ( false );
|
|
2294
|
-
} while ( false );
|
|
2295
|
-
this.bra = this.cursor;
|
|
2296
|
-
this.slice_del$esjava$0();
|
|
2297
|
-
return true;
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
r_stem_suffix_chain_before_ki$esjava$0() {
|
|
2301
|
-
let v_1;
|
|
2302
|
-
let v_2;
|
|
2303
|
-
let v_3;
|
|
2304
|
-
let v_4;
|
|
2305
|
-
let v_5;
|
|
2306
|
-
let v_6;
|
|
2307
|
-
let v_7;
|
|
2308
|
-
let v_8;
|
|
2309
|
-
let v_9;
|
|
2310
|
-
let v_10;
|
|
2311
|
-
let v_11;
|
|
2312
|
-
this.ket = this.cursor;
|
|
2313
|
-
if ( ! this.r_mark_ki$esjava$0() ) {
|
|
2314
|
-
return false;
|
|
2315
|
-
}
|
|
2316
|
-
lab0:
|
|
2317
|
-
do {
|
|
2318
|
-
v_1 = this.limit - this.cursor;
|
|
2319
|
-
lab1:
|
|
2320
|
-
do {
|
|
2321
|
-
if ( ! this.r_mark_DA$esjava$0() ) {
|
|
2322
|
-
break lab1;
|
|
2323
|
-
}
|
|
2324
|
-
this.bra = this.cursor;
|
|
2325
|
-
this.slice_del$esjava$0();
|
|
2326
|
-
v_2 = this.limit - this.cursor;
|
|
2327
|
-
lab2:
|
|
2328
|
-
do {
|
|
2329
|
-
this.ket = this.cursor;
|
|
2330
|
-
lab3:
|
|
2331
|
-
do {
|
|
2332
|
-
v_3 = this.limit - this.cursor;
|
|
2333
|
-
lab4:
|
|
2334
|
-
do {
|
|
2335
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2336
|
-
break lab4;
|
|
2337
|
-
}
|
|
2338
|
-
this.bra = this.cursor;
|
|
2339
|
-
this.slice_del$esjava$0();
|
|
2340
|
-
v_4 = this.limit - this.cursor;
|
|
2341
|
-
lab5:
|
|
2342
|
-
do {
|
|
2343
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2344
|
-
this.cursor = this.limit - v_4;
|
|
2345
|
-
break lab5;
|
|
2346
|
-
}
|
|
2347
|
-
} while ( false );
|
|
2348
|
-
break lab3;
|
|
2349
|
-
} while ( false );
|
|
2350
|
-
this.cursor = this.limit - v_3;
|
|
2351
|
-
if ( ! this.r_mark_possessives$esjava$0() ) {
|
|
2352
|
-
this.cursor = this.limit - v_2;
|
|
2353
|
-
break lab2;
|
|
2354
|
-
}
|
|
2355
|
-
this.bra = this.cursor;
|
|
2356
|
-
this.slice_del$esjava$0();
|
|
2357
|
-
v_5 = this.limit - this.cursor;
|
|
2358
|
-
lab6:
|
|
2359
|
-
do {
|
|
2360
|
-
this.ket = this.cursor;
|
|
2361
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2362
|
-
this.cursor = this.limit - v_5;
|
|
2363
|
-
break lab6;
|
|
2364
|
-
}
|
|
2365
|
-
this.bra = this.cursor;
|
|
2366
|
-
this.slice_del$esjava$0();
|
|
2367
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2368
|
-
this.cursor = this.limit - v_5;
|
|
2369
|
-
break lab6;
|
|
2370
|
-
}
|
|
2371
|
-
} while ( false );
|
|
2372
|
-
} while ( false );
|
|
2373
|
-
} while ( false );
|
|
2374
|
-
break lab0;
|
|
2375
|
-
} while ( false );
|
|
2376
|
-
this.cursor = this.limit - v_1;
|
|
2377
|
-
lab7:
|
|
2378
|
-
do {
|
|
2379
|
-
if ( ! this.r_mark_nUn$esjava$0() ) {
|
|
2380
|
-
break lab7;
|
|
2381
|
-
}
|
|
2382
|
-
this.bra = this.cursor;
|
|
2383
|
-
this.slice_del$esjava$0();
|
|
2384
|
-
v_6 = this.limit - this.cursor;
|
|
2385
|
-
lab8:
|
|
2386
|
-
do {
|
|
2387
|
-
this.ket = this.cursor;
|
|
2388
|
-
lab9:
|
|
2389
|
-
do {
|
|
2390
|
-
v_7 = this.limit - this.cursor;
|
|
2391
|
-
lab10:
|
|
2392
|
-
do {
|
|
2393
|
-
if ( ! this.r_mark_lArI$esjava$0() ) {
|
|
2394
|
-
break lab10;
|
|
2395
|
-
}
|
|
2396
|
-
this.bra = this.cursor;
|
|
2397
|
-
this.slice_del$esjava$0();
|
|
2398
|
-
break lab9;
|
|
2399
|
-
} while ( false );
|
|
2400
|
-
this.cursor = this.limit - v_7;
|
|
2401
|
-
lab11:
|
|
2402
|
-
do {
|
|
2403
|
-
this.ket = this.cursor;
|
|
2404
|
-
lab12:
|
|
2405
|
-
do {
|
|
2406
|
-
v_8 = this.limit - this.cursor;
|
|
2407
|
-
lab13:
|
|
2408
|
-
do {
|
|
2409
|
-
if ( ! this.r_mark_possessives$esjava$0() ) {
|
|
2410
|
-
break lab13;
|
|
2411
|
-
}
|
|
2412
|
-
break lab12;
|
|
2413
|
-
} while ( false );
|
|
2414
|
-
this.cursor = this.limit - v_8;
|
|
2415
|
-
if ( ! this.r_mark_sU$esjava$0() ) {
|
|
2416
|
-
break lab11;
|
|
2417
|
-
}
|
|
2418
|
-
} while ( false );
|
|
2419
|
-
this.bra = this.cursor;
|
|
2420
|
-
this.slice_del$esjava$0();
|
|
2421
|
-
v_9 = this.limit - this.cursor;
|
|
2422
|
-
lab14:
|
|
2423
|
-
do {
|
|
2424
|
-
this.ket = this.cursor;
|
|
2425
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2426
|
-
this.cursor = this.limit - v_9;
|
|
2427
|
-
break lab14;
|
|
2428
|
-
}
|
|
2429
|
-
this.bra = this.cursor;
|
|
2430
|
-
this.slice_del$esjava$0();
|
|
2431
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2432
|
-
this.cursor = this.limit - v_9;
|
|
2433
|
-
break lab14;
|
|
2434
|
-
}
|
|
2435
|
-
} while ( false );
|
|
2436
|
-
break lab9;
|
|
2437
|
-
} while ( false );
|
|
2438
|
-
this.cursor = this.limit - v_7;
|
|
2439
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2440
|
-
this.cursor = this.limit - v_6;
|
|
2441
|
-
break lab8;
|
|
2442
|
-
}
|
|
2443
|
-
} while ( false );
|
|
2444
|
-
} while ( false );
|
|
2445
|
-
break lab0;
|
|
2446
|
-
} while ( false );
|
|
2447
|
-
this.cursor = this.limit - v_1;
|
|
2448
|
-
if ( ! this.r_mark_ndA$esjava$0() ) {
|
|
2449
|
-
return false;
|
|
2450
|
-
}
|
|
2451
|
-
lab15:
|
|
2452
|
-
do {
|
|
2453
|
-
v_10 = this.limit - this.cursor;
|
|
2454
|
-
lab16:
|
|
2455
|
-
do {
|
|
2456
|
-
if ( ! this.r_mark_lArI$esjava$0() ) {
|
|
2457
|
-
break lab16;
|
|
2458
|
-
}
|
|
2459
|
-
this.bra = this.cursor;
|
|
2460
|
-
this.slice_del$esjava$0();
|
|
2461
|
-
break lab15;
|
|
2462
|
-
} while ( false );
|
|
2463
|
-
this.cursor = this.limit - v_10;
|
|
2464
|
-
lab17:
|
|
2465
|
-
do {
|
|
2466
|
-
if ( ! this.r_mark_sU$esjava$0() ) {
|
|
2467
|
-
break lab17;
|
|
2468
|
-
}
|
|
2469
|
-
this.bra = this.cursor;
|
|
2470
|
-
this.slice_del$esjava$0();
|
|
2471
|
-
v_11 = this.limit - this.cursor;
|
|
2472
|
-
lab18:
|
|
2473
|
-
do {
|
|
2474
|
-
this.ket = this.cursor;
|
|
2475
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2476
|
-
this.cursor = this.limit - v_11;
|
|
2477
|
-
break lab18;
|
|
2478
|
-
}
|
|
2479
|
-
this.bra = this.cursor;
|
|
2480
|
-
this.slice_del$esjava$0();
|
|
2481
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2482
|
-
this.cursor = this.limit - v_11;
|
|
2483
|
-
break lab18;
|
|
2484
|
-
}
|
|
2485
|
-
} while ( false );
|
|
2486
|
-
break lab15;
|
|
2487
|
-
} while ( false );
|
|
2488
|
-
this.cursor = this.limit - v_10;
|
|
2489
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2490
|
-
return false;
|
|
2491
|
-
}
|
|
2492
|
-
} while ( false );
|
|
2493
|
-
} while ( false );
|
|
2494
|
-
return true;
|
|
2495
|
-
}
|
|
2496
|
-
|
|
2497
|
-
r_stem_noun_suffixes$esjava$0() {
|
|
2498
|
-
let v_1;
|
|
2499
|
-
let v_2;
|
|
2500
|
-
let v_3;
|
|
2501
|
-
let v_4;
|
|
2502
|
-
let v_5;
|
|
2503
|
-
let v_6;
|
|
2504
|
-
let v_7;
|
|
2505
|
-
let v_8;
|
|
2506
|
-
let v_9;
|
|
2507
|
-
let v_10;
|
|
2508
|
-
let v_11;
|
|
2509
|
-
let v_12;
|
|
2510
|
-
let v_13;
|
|
2511
|
-
let v_14;
|
|
2512
|
-
let v_15;
|
|
2513
|
-
let v_16;
|
|
2514
|
-
let v_17;
|
|
2515
|
-
let v_18;
|
|
2516
|
-
let v_19;
|
|
2517
|
-
let v_20;
|
|
2518
|
-
let v_21;
|
|
2519
|
-
let v_22;
|
|
2520
|
-
let v_23;
|
|
2521
|
-
let v_24;
|
|
2522
|
-
let v_25;
|
|
2523
|
-
let v_26;
|
|
2524
|
-
let v_27;
|
|
2525
|
-
lab0:
|
|
2526
|
-
do {
|
|
2527
|
-
v_1 = this.limit - this.cursor;
|
|
2528
|
-
lab1:
|
|
2529
|
-
do {
|
|
2530
|
-
this.ket = this.cursor;
|
|
2531
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2532
|
-
break lab1;
|
|
2533
|
-
}
|
|
2534
|
-
this.bra = this.cursor;
|
|
2535
|
-
this.slice_del$esjava$0();
|
|
2536
|
-
v_2 = this.limit - this.cursor;
|
|
2537
|
-
lab2:
|
|
2538
|
-
do {
|
|
2539
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2540
|
-
this.cursor = this.limit - v_2;
|
|
2541
|
-
break lab2;
|
|
2542
|
-
}
|
|
2543
|
-
} while ( false );
|
|
2544
|
-
break lab0;
|
|
2545
|
-
} while ( false );
|
|
2546
|
-
this.cursor = this.limit - v_1;
|
|
2547
|
-
lab3:
|
|
2548
|
-
do {
|
|
2549
|
-
this.ket = this.cursor;
|
|
2550
|
-
if ( ! this.r_mark_ncA$esjava$0() ) {
|
|
2551
|
-
break lab3;
|
|
2552
|
-
}
|
|
2553
|
-
this.bra = this.cursor;
|
|
2554
|
-
this.slice_del$esjava$0();
|
|
2555
|
-
v_3 = this.limit - this.cursor;
|
|
2556
|
-
lab4:
|
|
2557
|
-
do {
|
|
2558
|
-
lab5:
|
|
2559
|
-
do {
|
|
2560
|
-
v_4 = this.limit - this.cursor;
|
|
2561
|
-
lab6:
|
|
2562
|
-
do {
|
|
2563
|
-
this.ket = this.cursor;
|
|
2564
|
-
if ( ! this.r_mark_lArI$esjava$0() ) {
|
|
2565
|
-
break lab6;
|
|
2566
|
-
}
|
|
2567
|
-
this.bra = this.cursor;
|
|
2568
|
-
this.slice_del$esjava$0();
|
|
2569
|
-
break lab5;
|
|
2570
|
-
} while ( false );
|
|
2571
|
-
this.cursor = this.limit - v_4;
|
|
2572
|
-
lab7:
|
|
2573
|
-
do {
|
|
2574
|
-
this.ket = this.cursor;
|
|
2575
|
-
lab8:
|
|
2576
|
-
do {
|
|
2577
|
-
v_5 = this.limit - this.cursor;
|
|
2578
|
-
lab9:
|
|
2579
|
-
do {
|
|
2580
|
-
if ( ! this.r_mark_possessives$esjava$0() ) {
|
|
2581
|
-
break lab9;
|
|
2582
|
-
}
|
|
2583
|
-
break lab8;
|
|
2584
|
-
} while ( false );
|
|
2585
|
-
this.cursor = this.limit - v_5;
|
|
2586
|
-
if ( ! this.r_mark_sU$esjava$0() ) {
|
|
2587
|
-
break lab7;
|
|
2588
|
-
}
|
|
2589
|
-
} while ( false );
|
|
2590
|
-
this.bra = this.cursor;
|
|
2591
|
-
this.slice_del$esjava$0();
|
|
2592
|
-
v_6 = this.limit - this.cursor;
|
|
2593
|
-
lab10:
|
|
2594
|
-
do {
|
|
2595
|
-
this.ket = this.cursor;
|
|
2596
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2597
|
-
this.cursor = this.limit - v_6;
|
|
2598
|
-
break lab10;
|
|
2599
|
-
}
|
|
2600
|
-
this.bra = this.cursor;
|
|
2601
|
-
this.slice_del$esjava$0();
|
|
2602
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2603
|
-
this.cursor = this.limit - v_6;
|
|
2604
|
-
break lab10;
|
|
2605
|
-
}
|
|
2606
|
-
} while ( false );
|
|
2607
|
-
break lab5;
|
|
2608
|
-
} while ( false );
|
|
2609
|
-
this.cursor = this.limit - v_4;
|
|
2610
|
-
this.ket = this.cursor;
|
|
2611
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2612
|
-
this.cursor = this.limit - v_3;
|
|
2613
|
-
break lab4;
|
|
2614
|
-
}
|
|
2615
|
-
this.bra = this.cursor;
|
|
2616
|
-
this.slice_del$esjava$0();
|
|
2617
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2618
|
-
this.cursor = this.limit - v_3;
|
|
2619
|
-
break lab4;
|
|
2620
|
-
}
|
|
2621
|
-
} while ( false );
|
|
2622
|
-
} while ( false );
|
|
2623
|
-
break lab0;
|
|
2624
|
-
} while ( false );
|
|
2625
|
-
this.cursor = this.limit - v_1;
|
|
2626
|
-
lab11:
|
|
2627
|
-
do {
|
|
2628
|
-
this.ket = this.cursor;
|
|
2629
|
-
lab12:
|
|
2630
|
-
do {
|
|
2631
|
-
v_7 = this.limit - this.cursor;
|
|
2632
|
-
lab13:
|
|
2633
|
-
do {
|
|
2634
|
-
if ( ! this.r_mark_ndA$esjava$0() ) {
|
|
2635
|
-
break lab13;
|
|
2636
|
-
}
|
|
2637
|
-
break lab12;
|
|
2638
|
-
} while ( false );
|
|
2639
|
-
this.cursor = this.limit - v_7;
|
|
2640
|
-
if ( ! this.r_mark_nA$esjava$0() ) {
|
|
2641
|
-
break lab11;
|
|
2642
|
-
}
|
|
2643
|
-
} while ( false );
|
|
2644
|
-
lab14:
|
|
2645
|
-
do {
|
|
2646
|
-
v_8 = this.limit - this.cursor;
|
|
2647
|
-
lab15:
|
|
2648
|
-
do {
|
|
2649
|
-
if ( ! this.r_mark_lArI$esjava$0() ) {
|
|
2650
|
-
break lab15;
|
|
2651
|
-
}
|
|
2652
|
-
this.bra = this.cursor;
|
|
2653
|
-
this.slice_del$esjava$0();
|
|
2654
|
-
break lab14;
|
|
2655
|
-
} while ( false );
|
|
2656
|
-
this.cursor = this.limit - v_8;
|
|
2657
|
-
lab16:
|
|
2658
|
-
do {
|
|
2659
|
-
if ( ! this.r_mark_sU$esjava$0() ) {
|
|
2660
|
-
break lab16;
|
|
2661
|
-
}
|
|
2662
|
-
this.bra = this.cursor;
|
|
2663
|
-
this.slice_del$esjava$0();
|
|
2664
|
-
v_9 = this.limit - this.cursor;
|
|
2665
|
-
lab17:
|
|
2666
|
-
do {
|
|
2667
|
-
this.ket = this.cursor;
|
|
2668
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2669
|
-
this.cursor = this.limit - v_9;
|
|
2670
|
-
break lab17;
|
|
2671
|
-
}
|
|
2672
|
-
this.bra = this.cursor;
|
|
2673
|
-
this.slice_del$esjava$0();
|
|
2674
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2675
|
-
this.cursor = this.limit - v_9;
|
|
2676
|
-
break lab17;
|
|
2677
|
-
}
|
|
2678
|
-
} while ( false );
|
|
2679
|
-
break lab14;
|
|
2680
|
-
} while ( false );
|
|
2681
|
-
this.cursor = this.limit - v_8;
|
|
2682
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2683
|
-
break lab11;
|
|
2684
|
-
}
|
|
2685
|
-
} while ( false );
|
|
2686
|
-
break lab0;
|
|
2687
|
-
} while ( false );
|
|
2688
|
-
this.cursor = this.limit - v_1;
|
|
2689
|
-
lab18:
|
|
2690
|
-
do {
|
|
2691
|
-
this.ket = this.cursor;
|
|
2692
|
-
lab19:
|
|
2693
|
-
do {
|
|
2694
|
-
v_10 = this.limit - this.cursor;
|
|
2695
|
-
lab20:
|
|
2696
|
-
do {
|
|
2697
|
-
if ( ! this.r_mark_ndAn$esjava$0() ) {
|
|
2698
|
-
break lab20;
|
|
2699
|
-
}
|
|
2700
|
-
break lab19;
|
|
2701
|
-
} while ( false );
|
|
2702
|
-
this.cursor = this.limit - v_10;
|
|
2703
|
-
if ( ! this.r_mark_nU$esjava$0() ) {
|
|
2704
|
-
break lab18;
|
|
2705
|
-
}
|
|
2706
|
-
} while ( false );
|
|
2707
|
-
lab21:
|
|
2708
|
-
do {
|
|
2709
|
-
v_11 = this.limit - this.cursor;
|
|
2710
|
-
lab22:
|
|
2711
|
-
do {
|
|
2712
|
-
if ( ! this.r_mark_sU$esjava$0() ) {
|
|
2713
|
-
break lab22;
|
|
2714
|
-
}
|
|
2715
|
-
this.bra = this.cursor;
|
|
2716
|
-
this.slice_del$esjava$0();
|
|
2717
|
-
v_12 = this.limit - this.cursor;
|
|
2718
|
-
lab23:
|
|
2719
|
-
do {
|
|
2720
|
-
this.ket = this.cursor;
|
|
2721
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2722
|
-
this.cursor = this.limit - v_12;
|
|
2723
|
-
break lab23;
|
|
2724
|
-
}
|
|
2725
|
-
this.bra = this.cursor;
|
|
2726
|
-
this.slice_del$esjava$0();
|
|
2727
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2728
|
-
this.cursor = this.limit - v_12;
|
|
2729
|
-
break lab23;
|
|
2730
|
-
}
|
|
2731
|
-
} while ( false );
|
|
2732
|
-
break lab21;
|
|
2733
|
-
} while ( false );
|
|
2734
|
-
this.cursor = this.limit - v_11;
|
|
2735
|
-
if ( ! this.r_mark_lArI$esjava$0() ) {
|
|
2736
|
-
break lab18;
|
|
2737
|
-
}
|
|
2738
|
-
} while ( false );
|
|
2739
|
-
break lab0;
|
|
2740
|
-
} while ( false );
|
|
2741
|
-
this.cursor = this.limit - v_1;
|
|
2742
|
-
lab24:
|
|
2743
|
-
do {
|
|
2744
|
-
this.ket = this.cursor;
|
|
2745
|
-
if ( ! this.r_mark_DAn$esjava$0() ) {
|
|
2746
|
-
break lab24;
|
|
2747
|
-
}
|
|
2748
|
-
this.bra = this.cursor;
|
|
2749
|
-
this.slice_del$esjava$0();
|
|
2750
|
-
v_13 = this.limit - this.cursor;
|
|
2751
|
-
lab25:
|
|
2752
|
-
do {
|
|
2753
|
-
this.ket = this.cursor;
|
|
2754
|
-
lab26:
|
|
2755
|
-
do {
|
|
2756
|
-
v_14 = this.limit - this.cursor;
|
|
2757
|
-
lab27:
|
|
2758
|
-
do {
|
|
2759
|
-
if ( ! this.r_mark_possessives$esjava$0() ) {
|
|
2760
|
-
break lab27;
|
|
2761
|
-
}
|
|
2762
|
-
this.bra = this.cursor;
|
|
2763
|
-
this.slice_del$esjava$0();
|
|
2764
|
-
v_15 = this.limit - this.cursor;
|
|
2765
|
-
lab28:
|
|
2766
|
-
do {
|
|
2767
|
-
this.ket = this.cursor;
|
|
2768
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2769
|
-
this.cursor = this.limit - v_15;
|
|
2770
|
-
break lab28;
|
|
2771
|
-
}
|
|
2772
|
-
this.bra = this.cursor;
|
|
2773
|
-
this.slice_del$esjava$0();
|
|
2774
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2775
|
-
this.cursor = this.limit - v_15;
|
|
2776
|
-
break lab28;
|
|
2777
|
-
}
|
|
2778
|
-
} while ( false );
|
|
2779
|
-
break lab26;
|
|
2780
|
-
} while ( false );
|
|
2781
|
-
this.cursor = this.limit - v_14;
|
|
2782
|
-
lab29:
|
|
2783
|
-
do {
|
|
2784
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2785
|
-
break lab29;
|
|
2786
|
-
}
|
|
2787
|
-
this.bra = this.cursor;
|
|
2788
|
-
this.slice_del$esjava$0();
|
|
2789
|
-
v_16 = this.limit - this.cursor;
|
|
2790
|
-
lab30:
|
|
2791
|
-
do {
|
|
2792
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2793
|
-
this.cursor = this.limit - v_16;
|
|
2794
|
-
break lab30;
|
|
2795
|
-
}
|
|
2796
|
-
} while ( false );
|
|
2797
|
-
break lab26;
|
|
2798
|
-
} while ( false );
|
|
2799
|
-
this.cursor = this.limit - v_14;
|
|
2800
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2801
|
-
this.cursor = this.limit - v_13;
|
|
2802
|
-
break lab25;
|
|
2803
|
-
}
|
|
2804
|
-
} while ( false );
|
|
2805
|
-
} while ( false );
|
|
2806
|
-
break lab0;
|
|
2807
|
-
} while ( false );
|
|
2808
|
-
this.cursor = this.limit - v_1;
|
|
2809
|
-
lab31:
|
|
2810
|
-
do {
|
|
2811
|
-
this.ket = this.cursor;
|
|
2812
|
-
lab32:
|
|
2813
|
-
do {
|
|
2814
|
-
v_17 = this.limit - this.cursor;
|
|
2815
|
-
lab33:
|
|
2816
|
-
do {
|
|
2817
|
-
if ( ! this.r_mark_nUn$esjava$0() ) {
|
|
2818
|
-
break lab33;
|
|
2819
|
-
}
|
|
2820
|
-
break lab32;
|
|
2821
|
-
} while ( false );
|
|
2822
|
-
this.cursor = this.limit - v_17;
|
|
2823
|
-
if ( ! this.r_mark_ylA$esjava$0() ) {
|
|
2824
|
-
break lab31;
|
|
2825
|
-
}
|
|
2826
|
-
} while ( false );
|
|
2827
|
-
this.bra = this.cursor;
|
|
2828
|
-
this.slice_del$esjava$0();
|
|
2829
|
-
v_18 = this.limit - this.cursor;
|
|
2830
|
-
lab34:
|
|
2831
|
-
do {
|
|
2832
|
-
lab35:
|
|
2833
|
-
do {
|
|
2834
|
-
v_19 = this.limit - this.cursor;
|
|
2835
|
-
lab36:
|
|
2836
|
-
do {
|
|
2837
|
-
this.ket = this.cursor;
|
|
2838
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2839
|
-
break lab36;
|
|
2840
|
-
}
|
|
2841
|
-
this.bra = this.cursor;
|
|
2842
|
-
this.slice_del$esjava$0();
|
|
2843
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2844
|
-
break lab36;
|
|
2845
|
-
}
|
|
2846
|
-
break lab35;
|
|
2847
|
-
} while ( false );
|
|
2848
|
-
this.cursor = this.limit - v_19;
|
|
2849
|
-
lab37:
|
|
2850
|
-
do {
|
|
2851
|
-
this.ket = this.cursor;
|
|
2852
|
-
lab38:
|
|
2853
|
-
do {
|
|
2854
|
-
v_20 = this.limit - this.cursor;
|
|
2855
|
-
lab39:
|
|
2856
|
-
do {
|
|
2857
|
-
if ( ! this.r_mark_possessives$esjava$0() ) {
|
|
2858
|
-
break lab39;
|
|
2859
|
-
}
|
|
2860
|
-
break lab38;
|
|
2861
|
-
} while ( false );
|
|
2862
|
-
this.cursor = this.limit - v_20;
|
|
2863
|
-
if ( ! this.r_mark_sU$esjava$0() ) {
|
|
2864
|
-
break lab37;
|
|
2865
|
-
}
|
|
2866
|
-
} while ( false );
|
|
2867
|
-
this.bra = this.cursor;
|
|
2868
|
-
this.slice_del$esjava$0();
|
|
2869
|
-
v_21 = this.limit - this.cursor;
|
|
2870
|
-
lab40:
|
|
2871
|
-
do {
|
|
2872
|
-
this.ket = this.cursor;
|
|
2873
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2874
|
-
this.cursor = this.limit - v_21;
|
|
2875
|
-
break lab40;
|
|
2876
|
-
}
|
|
2877
|
-
this.bra = this.cursor;
|
|
2878
|
-
this.slice_del$esjava$0();
|
|
2879
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2880
|
-
this.cursor = this.limit - v_21;
|
|
2881
|
-
break lab40;
|
|
2882
|
-
}
|
|
2883
|
-
} while ( false );
|
|
2884
|
-
break lab35;
|
|
2885
|
-
} while ( false );
|
|
2886
|
-
this.cursor = this.limit - v_19;
|
|
2887
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2888
|
-
this.cursor = this.limit - v_18;
|
|
2889
|
-
break lab34;
|
|
2890
|
-
}
|
|
2891
|
-
} while ( false );
|
|
2892
|
-
} while ( false );
|
|
2893
|
-
break lab0;
|
|
2894
|
-
} while ( false );
|
|
2895
|
-
this.cursor = this.limit - v_1;
|
|
2896
|
-
lab41:
|
|
2897
|
-
do {
|
|
2898
|
-
this.ket = this.cursor;
|
|
2899
|
-
if ( ! this.r_mark_lArI$esjava$0() ) {
|
|
2900
|
-
break lab41;
|
|
2901
|
-
}
|
|
2902
|
-
this.bra = this.cursor;
|
|
2903
|
-
this.slice_del$esjava$0();
|
|
2904
|
-
break lab0;
|
|
2905
|
-
} while ( false );
|
|
2906
|
-
this.cursor = this.limit - v_1;
|
|
2907
|
-
lab42:
|
|
2908
|
-
do {
|
|
2909
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2910
|
-
break lab42;
|
|
2911
|
-
}
|
|
2912
|
-
break lab0;
|
|
2913
|
-
} while ( false );
|
|
2914
|
-
this.cursor = this.limit - v_1;
|
|
2915
|
-
lab43:
|
|
2916
|
-
do {
|
|
2917
|
-
this.ket = this.cursor;
|
|
2918
|
-
lab44:
|
|
2919
|
-
do {
|
|
2920
|
-
v_22 = this.limit - this.cursor;
|
|
2921
|
-
lab45:
|
|
2922
|
-
do {
|
|
2923
|
-
if ( ! this.r_mark_DA$esjava$0() ) {
|
|
2924
|
-
break lab45;
|
|
2925
|
-
}
|
|
2926
|
-
break lab44;
|
|
2927
|
-
} while ( false );
|
|
2928
|
-
this.cursor = this.limit - v_22;
|
|
2929
|
-
lab46:
|
|
2930
|
-
do {
|
|
2931
|
-
if ( ! this.r_mark_yU$esjava$0() ) {
|
|
2932
|
-
break lab46;
|
|
2933
|
-
}
|
|
2934
|
-
break lab44;
|
|
2935
|
-
} while ( false );
|
|
2936
|
-
this.cursor = this.limit - v_22;
|
|
2937
|
-
if ( ! this.r_mark_yA$esjava$0() ) {
|
|
2938
|
-
break lab43;
|
|
2939
|
-
}
|
|
2940
|
-
} while ( false );
|
|
2941
|
-
this.bra = this.cursor;
|
|
2942
|
-
this.slice_del$esjava$0();
|
|
2943
|
-
v_23 = this.limit - this.cursor;
|
|
2944
|
-
lab47:
|
|
2945
|
-
do {
|
|
2946
|
-
this.ket = this.cursor;
|
|
2947
|
-
lab48:
|
|
2948
|
-
do {
|
|
2949
|
-
v_24 = this.limit - this.cursor;
|
|
2950
|
-
lab49:
|
|
2951
|
-
do {
|
|
2952
|
-
if ( ! this.r_mark_possessives$esjava$0() ) {
|
|
2953
|
-
break lab49;
|
|
2954
|
-
}
|
|
2955
|
-
this.bra = this.cursor;
|
|
2956
|
-
this.slice_del$esjava$0();
|
|
2957
|
-
v_25 = this.limit - this.cursor;
|
|
2958
|
-
lab50:
|
|
2959
|
-
do {
|
|
2960
|
-
this.ket = this.cursor;
|
|
2961
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2962
|
-
this.cursor = this.limit - v_25;
|
|
2963
|
-
break lab50;
|
|
2964
|
-
}
|
|
2965
|
-
} while ( false );
|
|
2966
|
-
break lab48;
|
|
2967
|
-
} while ( false );
|
|
2968
|
-
this.cursor = this.limit - v_24;
|
|
2969
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
2970
|
-
this.cursor = this.limit - v_23;
|
|
2971
|
-
break lab47;
|
|
2972
|
-
}
|
|
2973
|
-
} while ( false );
|
|
2974
|
-
this.bra = this.cursor;
|
|
2975
|
-
this.slice_del$esjava$0();
|
|
2976
|
-
this.ket = this.cursor;
|
|
2977
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
2978
|
-
this.cursor = this.limit - v_23;
|
|
2979
|
-
break lab47;
|
|
2980
|
-
}
|
|
2981
|
-
} while ( false );
|
|
2982
|
-
break lab0;
|
|
2983
|
-
} while ( false );
|
|
2984
|
-
this.cursor = this.limit - v_1;
|
|
2985
|
-
this.ket = this.cursor;
|
|
2986
|
-
lab51:
|
|
2987
|
-
do {
|
|
2988
|
-
v_26 = this.limit - this.cursor;
|
|
2989
|
-
lab52:
|
|
2990
|
-
do {
|
|
2991
|
-
if ( ! this.r_mark_possessives$esjava$0() ) {
|
|
2992
|
-
break lab52;
|
|
2993
|
-
}
|
|
2994
|
-
break lab51;
|
|
2995
|
-
} while ( false );
|
|
2996
|
-
this.cursor = this.limit - v_26;
|
|
2997
|
-
if ( ! this.r_mark_sU$esjava$0() ) {
|
|
2998
|
-
return false;
|
|
2999
|
-
}
|
|
3000
|
-
} while ( false );
|
|
3001
|
-
this.bra = this.cursor;
|
|
3002
|
-
this.slice_del$esjava$0();
|
|
3003
|
-
v_27 = this.limit - this.cursor;
|
|
3004
|
-
lab53:
|
|
3005
|
-
do {
|
|
3006
|
-
this.ket = this.cursor;
|
|
3007
|
-
if ( ! this.r_mark_lAr$esjava$0() ) {
|
|
3008
|
-
this.cursor = this.limit - v_27;
|
|
3009
|
-
break lab53;
|
|
3010
|
-
}
|
|
3011
|
-
this.bra = this.cursor;
|
|
3012
|
-
this.slice_del$esjava$0();
|
|
3013
|
-
if ( ! this.r_stem_suffix_chain_before_ki$esjava$0() ) {
|
|
3014
|
-
this.cursor = this.limit - v_27;
|
|
3015
|
-
break lab53;
|
|
3016
|
-
}
|
|
3017
|
-
} while ( false );
|
|
3018
|
-
} while ( false );
|
|
3019
|
-
return true;
|
|
3020
|
-
}
|
|
3021
|
-
|
|
3022
|
-
r_post_process_last_consonants$esjava$0() {
|
|
3023
|
-
let among_var;
|
|
3024
|
-
this.ket = this.cursor;
|
|
3025
|
-
among_var = this.find_among_b$esjava$2( TurkishStemmer.a_23, 4 );
|
|
3026
|
-
if ( among_var === 0 ) {
|
|
3027
|
-
return false;
|
|
3028
|
-
}
|
|
3029
|
-
this.bra = this.cursor;
|
|
3030
|
-
switch ( among_var ) {
|
|
3031
|
-
case 0:
|
|
3032
|
-
return false;
|
|
3033
|
-
case 1:
|
|
3034
|
-
this.slice_from$esjava$1( "p" );
|
|
3035
|
-
break;
|
|
3036
|
-
case 2:
|
|
3037
|
-
this.slice_from$esjava$1( "\u00E7" );
|
|
3038
|
-
break;
|
|
3039
|
-
case 3:
|
|
3040
|
-
this.slice_from$esjava$1( "t" );
|
|
3041
|
-
break;
|
|
3042
|
-
case 4:
|
|
3043
|
-
this.slice_from$esjava$1( "k" );
|
|
3044
|
-
break;
|
|
3045
|
-
}
|
|
3046
|
-
return true;
|
|
3047
|
-
}
|
|
3048
|
-
|
|
3049
|
-
r_append_U_to_stems_ending_with_d_or_g$esjava$0() {
|
|
3050
|
-
let v_1;
|
|
3051
|
-
let v_2;
|
|
3052
|
-
let v_3;
|
|
3053
|
-
let v_4;
|
|
3054
|
-
let v_5;
|
|
3055
|
-
let v_6;
|
|
3056
|
-
let v_7;
|
|
3057
|
-
let v_8;
|
|
3058
|
-
let v_9;
|
|
3059
|
-
let v_10;
|
|
3060
|
-
let v_11;
|
|
3061
|
-
let v_12;
|
|
3062
|
-
let v_13;
|
|
3063
|
-
let v_14;
|
|
3064
|
-
let v_15;
|
|
3065
|
-
v_1 = this.limit - this.cursor;
|
|
3066
|
-
lab0:
|
|
3067
|
-
do {
|
|
3068
|
-
v_2 = this.limit - this.cursor;
|
|
3069
|
-
lab1:
|
|
3070
|
-
do {
|
|
3071
|
-
if ( ! this.eq_s_b$esjava$2( 1, "d" ) ) {
|
|
3072
|
-
break lab1;
|
|
3073
|
-
}
|
|
3074
|
-
break lab0;
|
|
3075
|
-
} while ( false );
|
|
3076
|
-
this.cursor = this.limit - v_2;
|
|
3077
|
-
if ( ! this.eq_s_b$esjava$2( 1, "g" ) ) {
|
|
3078
|
-
return false;
|
|
3079
|
-
}
|
|
3080
|
-
} while ( false );
|
|
3081
|
-
this.cursor = this.limit - v_1;
|
|
3082
|
-
lab2:
|
|
3083
|
-
do {
|
|
3084
|
-
v_3 = this.limit - this.cursor;
|
|
3085
|
-
lab3:
|
|
3086
|
-
do {
|
|
3087
|
-
v_4 = this.limit - this.cursor;
|
|
3088
|
-
golab4:
|
|
3089
|
-
while ( true ) {
|
|
3090
|
-
v_5 = this.limit - this.cursor;
|
|
3091
|
-
lab5:
|
|
3092
|
-
do {
|
|
3093
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
3094
|
-
break lab5;
|
|
3095
|
-
}
|
|
3096
|
-
this.cursor = this.limit - v_5;
|
|
3097
|
-
break golab4;
|
|
3098
|
-
} while ( false );
|
|
3099
|
-
this.cursor = this.limit - v_5;
|
|
3100
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
3101
|
-
break lab3;
|
|
3102
|
-
}
|
|
3103
|
-
this.cursor--;
|
|
3104
|
-
}
|
|
3105
|
-
lab6:
|
|
3106
|
-
do {
|
|
3107
|
-
v_6 = this.limit - this.cursor;
|
|
3108
|
-
lab7:
|
|
3109
|
-
do {
|
|
3110
|
-
if ( ! this.eq_s_b$esjava$2( 1, "a" ) ) {
|
|
3111
|
-
break lab7;
|
|
3112
|
-
}
|
|
3113
|
-
break lab6;
|
|
3114
|
-
} while ( false );
|
|
3115
|
-
this.cursor = this.limit - v_6;
|
|
3116
|
-
if ( ! this.eq_s_b$esjava$2( 1, "\u0131" ) ) {
|
|
3117
|
-
break lab3;
|
|
3118
|
-
}
|
|
3119
|
-
} while ( false );
|
|
3120
|
-
this.cursor = this.limit - v_4;
|
|
3121
|
-
{
|
|
3122
|
-
const c = this.cursor;
|
|
3123
|
-
this.insert$esjava$3( this.cursor, this.cursor, "\u0131" );
|
|
3124
|
-
this.cursor = c;
|
|
3125
|
-
}
|
|
3126
|
-
break lab2;
|
|
3127
|
-
} while ( false );
|
|
3128
|
-
this.cursor = this.limit - v_3;
|
|
3129
|
-
lab8:
|
|
3130
|
-
do {
|
|
3131
|
-
v_7 = this.limit - this.cursor;
|
|
3132
|
-
golab9:
|
|
3133
|
-
while ( true ) {
|
|
3134
|
-
v_8 = this.limit - this.cursor;
|
|
3135
|
-
lab10:
|
|
3136
|
-
do {
|
|
3137
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
3138
|
-
break lab10;
|
|
3139
|
-
}
|
|
3140
|
-
this.cursor = this.limit - v_8;
|
|
3141
|
-
break golab9;
|
|
3142
|
-
} while ( false );
|
|
3143
|
-
this.cursor = this.limit - v_8;
|
|
3144
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
3145
|
-
break lab8;
|
|
3146
|
-
}
|
|
3147
|
-
this.cursor--;
|
|
3148
|
-
}
|
|
3149
|
-
lab11:
|
|
3150
|
-
do {
|
|
3151
|
-
v_9 = this.limit - this.cursor;
|
|
3152
|
-
lab12:
|
|
3153
|
-
do {
|
|
3154
|
-
if ( ! this.eq_s_b$esjava$2( 1, "e" ) ) {
|
|
3155
|
-
break lab12;
|
|
3156
|
-
}
|
|
3157
|
-
break lab11;
|
|
3158
|
-
} while ( false );
|
|
3159
|
-
this.cursor = this.limit - v_9;
|
|
3160
|
-
if ( ! this.eq_s_b$esjava$2( 1, "i" ) ) {
|
|
3161
|
-
break lab8;
|
|
3162
|
-
}
|
|
3163
|
-
} while ( false );
|
|
3164
|
-
this.cursor = this.limit - v_7;
|
|
3165
|
-
{
|
|
3166
|
-
const c = this.cursor;
|
|
3167
|
-
this.insert$esjava$3( this.cursor, this.cursor, "i" );
|
|
3168
|
-
this.cursor = c;
|
|
3169
|
-
}
|
|
3170
|
-
break lab2;
|
|
3171
|
-
} while ( false );
|
|
3172
|
-
this.cursor = this.limit - v_3;
|
|
3173
|
-
lab13:
|
|
3174
|
-
do {
|
|
3175
|
-
v_10 = this.limit - this.cursor;
|
|
3176
|
-
golab14:
|
|
3177
|
-
while ( true ) {
|
|
3178
|
-
v_11 = this.limit - this.cursor;
|
|
3179
|
-
lab15:
|
|
3180
|
-
do {
|
|
3181
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
3182
|
-
break lab15;
|
|
3183
|
-
}
|
|
3184
|
-
this.cursor = this.limit - v_11;
|
|
3185
|
-
break golab14;
|
|
3186
|
-
} while ( false );
|
|
3187
|
-
this.cursor = this.limit - v_11;
|
|
3188
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
3189
|
-
break lab13;
|
|
3190
|
-
}
|
|
3191
|
-
this.cursor--;
|
|
3192
|
-
}
|
|
3193
|
-
lab16:
|
|
3194
|
-
do {
|
|
3195
|
-
v_12 = this.limit - this.cursor;
|
|
3196
|
-
lab17:
|
|
3197
|
-
do {
|
|
3198
|
-
if ( ! this.eq_s_b$esjava$2( 1, "o" ) ) {
|
|
3199
|
-
break lab17;
|
|
3200
|
-
}
|
|
3201
|
-
break lab16;
|
|
3202
|
-
} while ( false );
|
|
3203
|
-
this.cursor = this.limit - v_12;
|
|
3204
|
-
if ( ! this.eq_s_b$esjava$2( 1, "u" ) ) {
|
|
3205
|
-
break lab13;
|
|
3206
|
-
}
|
|
3207
|
-
} while ( false );
|
|
3208
|
-
this.cursor = this.limit - v_10;
|
|
3209
|
-
{
|
|
3210
|
-
const c = this.cursor;
|
|
3211
|
-
this.insert$esjava$3( this.cursor, this.cursor, "u" );
|
|
3212
|
-
this.cursor = c;
|
|
3213
|
-
}
|
|
3214
|
-
break lab2;
|
|
3215
|
-
} while ( false );
|
|
3216
|
-
this.cursor = this.limit - v_3;
|
|
3217
|
-
v_13 = this.limit - this.cursor;
|
|
3218
|
-
golab18:
|
|
3219
|
-
while ( true ) {
|
|
3220
|
-
v_14 = this.limit - this.cursor;
|
|
3221
|
-
lab19:
|
|
3222
|
-
do {
|
|
3223
|
-
if ( ! this.in_grouping_b$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
3224
|
-
break lab19;
|
|
3225
|
-
}
|
|
3226
|
-
this.cursor = this.limit - v_14;
|
|
3227
|
-
break golab18;
|
|
3228
|
-
} while ( false );
|
|
3229
|
-
this.cursor = this.limit - v_14;
|
|
3230
|
-
if ( this.cursor <= this.limit_backward ) {
|
|
3231
|
-
return false;
|
|
3232
|
-
}
|
|
3233
|
-
this.cursor--;
|
|
3234
|
-
}
|
|
3235
|
-
lab20:
|
|
3236
|
-
do {
|
|
3237
|
-
v_15 = this.limit - this.cursor;
|
|
3238
|
-
lab21:
|
|
3239
|
-
do {
|
|
3240
|
-
if ( ! this.eq_s_b$esjava$2( 1, "\u00F6" ) ) {
|
|
3241
|
-
break lab21;
|
|
3242
|
-
}
|
|
3243
|
-
break lab20;
|
|
3244
|
-
} while ( false );
|
|
3245
|
-
this.cursor = this.limit - v_15;
|
|
3246
|
-
if ( ! this.eq_s_b$esjava$2( 1, "\u00FC" ) ) {
|
|
3247
|
-
return false;
|
|
3248
|
-
}
|
|
3249
|
-
} while ( false );
|
|
3250
|
-
this.cursor = this.limit - v_13;
|
|
3251
|
-
{
|
|
3252
|
-
const c = this.cursor;
|
|
3253
|
-
this.insert$esjava$3( this.cursor, this.cursor, "\u00FC" );
|
|
3254
|
-
this.cursor = c;
|
|
3255
|
-
}
|
|
3256
|
-
} while ( false );
|
|
3257
|
-
return true;
|
|
3258
|
-
}
|
|
3259
|
-
|
|
3260
|
-
r_more_than_one_syllable_word$esjava$0() {
|
|
3261
|
-
let v_1;
|
|
3262
|
-
let v_3;
|
|
3263
|
-
v_1 = this.cursor;
|
|
3264
|
-
{
|
|
3265
|
-
let v_2 = 2;
|
|
3266
|
-
replab0:
|
|
3267
|
-
while ( true ) {
|
|
3268
|
-
v_3 = this.cursor;
|
|
3269
|
-
lab1:
|
|
3270
|
-
do {
|
|
3271
|
-
golab2:
|
|
3272
|
-
while ( true ) {
|
|
3273
|
-
lab3:
|
|
3274
|
-
do {
|
|
3275
|
-
if ( ! this.in_grouping$esjava$3( TurkishStemmer.g_vowel, 97, 305 ) ) {
|
|
3276
|
-
break lab3;
|
|
3277
|
-
}
|
|
3278
|
-
break golab2;
|
|
3279
|
-
} while ( false );
|
|
3280
|
-
if ( this.cursor >= this.limit ) {
|
|
3281
|
-
break lab1;
|
|
3282
|
-
}
|
|
3283
|
-
this.cursor++;
|
|
3284
|
-
}
|
|
3285
|
-
v_2--;
|
|
3286
|
-
continue replab0;
|
|
3287
|
-
} while ( false );
|
|
3288
|
-
this.cursor = v_3;
|
|
3289
|
-
break replab0;
|
|
3290
|
-
}
|
|
3291
|
-
if ( v_2 > 0 ) {
|
|
3292
|
-
return false;
|
|
3293
|
-
}
|
|
3294
|
-
}
|
|
3295
|
-
this.cursor = v_1;
|
|
3296
|
-
return true;
|
|
3297
|
-
}
|
|
3298
|
-
|
|
3299
|
-
r_is_reserved_word$esjava$0() {
|
|
3300
|
-
let v_1;
|
|
3301
|
-
let v_2;
|
|
3302
|
-
let v_4;
|
|
3303
|
-
lab0:
|
|
3304
|
-
do {
|
|
3305
|
-
v_1 = this.cursor;
|
|
3306
|
-
lab1:
|
|
3307
|
-
do {
|
|
3308
|
-
v_2 = this.cursor;
|
|
3309
|
-
golab2:
|
|
3310
|
-
while ( true ) {
|
|
3311
|
-
lab3:
|
|
3312
|
-
do {
|
|
3313
|
-
if ( ! this.eq_s$esjava$2( 2, "ad" ) ) {
|
|
3314
|
-
break lab3;
|
|
3315
|
-
}
|
|
3316
|
-
break golab2;
|
|
3317
|
-
} while ( false );
|
|
3318
|
-
if ( this.cursor >= this.limit ) {
|
|
3319
|
-
break lab1;
|
|
3320
|
-
}
|
|
3321
|
-
this.cursor++;
|
|
3322
|
-
}
|
|
3323
|
-
this.I_strlen = 2;
|
|
3324
|
-
if ( ! ( this.I_strlen === this.limit ) ) {
|
|
3325
|
-
break lab1;
|
|
3326
|
-
}
|
|
3327
|
-
this.cursor = v_2;
|
|
3328
|
-
break lab0;
|
|
3329
|
-
} while ( false );
|
|
3330
|
-
this.cursor = v_1;
|
|
3331
|
-
v_4 = this.cursor;
|
|
3332
|
-
golab4:
|
|
3333
|
-
while ( true ) {
|
|
3334
|
-
lab5:
|
|
3335
|
-
do {
|
|
3336
|
-
if ( ! this.eq_s$esjava$2( 5, "soyad" ) ) {
|
|
3337
|
-
break lab5;
|
|
3338
|
-
}
|
|
3339
|
-
break golab4;
|
|
3340
|
-
} while ( false );
|
|
3341
|
-
if ( this.cursor >= this.limit ) {
|
|
3342
|
-
return false;
|
|
3343
|
-
}
|
|
3344
|
-
this.cursor++;
|
|
3345
|
-
}
|
|
3346
|
-
this.I_strlen = 5;
|
|
3347
|
-
if ( ! ( this.I_strlen === this.limit ) ) {
|
|
3348
|
-
return false;
|
|
3349
|
-
}
|
|
3350
|
-
this.cursor = v_4;
|
|
3351
|
-
} while ( false );
|
|
3352
|
-
return true;
|
|
3353
|
-
}
|
|
3354
|
-
|
|
3355
|
-
r_postlude$esjava$0() {
|
|
3356
|
-
let v_1;
|
|
3357
|
-
let v_2;
|
|
3358
|
-
let v_3;
|
|
3359
|
-
{
|
|
3360
|
-
v_1 = this.cursor;
|
|
3361
|
-
lab0:
|
|
3362
|
-
do {
|
|
3363
|
-
if ( ! this.r_is_reserved_word$esjava$0() ) {
|
|
3364
|
-
break lab0;
|
|
3365
|
-
}
|
|
3366
|
-
return false;
|
|
3367
|
-
} while ( false );
|
|
3368
|
-
this.cursor = v_1;
|
|
3369
|
-
}
|
|
3370
|
-
this.limit_backward = this.cursor;
|
|
3371
|
-
this.cursor = this.limit;
|
|
3372
|
-
v_2 = this.limit - this.cursor;
|
|
3373
|
-
lab1:
|
|
3374
|
-
do {
|
|
3375
|
-
if ( ! this.r_append_U_to_stems_ending_with_d_or_g$esjava$0() ) {
|
|
3376
|
-
break lab1;
|
|
3377
|
-
}
|
|
3378
|
-
} while ( false );
|
|
3379
|
-
this.cursor = this.limit - v_2;
|
|
3380
|
-
v_3 = this.limit - this.cursor;
|
|
3381
|
-
lab2:
|
|
3382
|
-
do {
|
|
3383
|
-
if ( ! this.r_post_process_last_consonants$esjava$0() ) {
|
|
3384
|
-
break lab2;
|
|
3385
|
-
}
|
|
3386
|
-
} while ( false );
|
|
3387
|
-
this.cursor = this.limit - v_3;
|
|
3388
|
-
this.cursor = this.limit_backward;
|
|
3389
|
-
return true;
|
|
3390
|
-
}
|
|
3391
|
-
|
|
3392
|
-
stem$esjava$0() {
|
|
3393
|
-
let v_1;
|
|
3394
|
-
let v_2;
|
|
3395
|
-
if ( ! this.r_more_than_one_syllable_word$esjava$0() ) {
|
|
3396
|
-
return false;
|
|
3397
|
-
}
|
|
3398
|
-
this.limit_backward = this.cursor;
|
|
3399
|
-
this.cursor = this.limit;
|
|
3400
|
-
v_1 = this.limit - this.cursor;
|
|
3401
|
-
lab0:
|
|
3402
|
-
do {
|
|
3403
|
-
if ( ! this.r_stem_nominal_verb_suffixes$esjava$0() ) {
|
|
3404
|
-
break lab0;
|
|
3405
|
-
}
|
|
3406
|
-
} while ( false );
|
|
3407
|
-
this.cursor = this.limit - v_1;
|
|
3408
|
-
if ( ! this.B_continue_stemming_noun_suffixes ) {
|
|
3409
|
-
return false;
|
|
3410
|
-
}
|
|
3411
|
-
v_2 = this.limit - this.cursor;
|
|
3412
|
-
lab1:
|
|
3413
|
-
do {
|
|
3414
|
-
if ( ! this.r_stem_noun_suffixes$esjava$0() ) {
|
|
3415
|
-
break lab1;
|
|
3416
|
-
}
|
|
3417
|
-
} while ( false );
|
|
3418
|
-
this.cursor = this.limit - v_2;
|
|
3419
|
-
this.cursor = this.limit_backward;
|
|
3420
|
-
if ( ! this.r_postlude$esjava$0() ) {
|
|
3421
|
-
return false;
|
|
3422
|
-
}
|
|
3423
|
-
return true;
|
|
3424
|
-
}
|
|
3425
|
-
|
|
3426
|
-
stem( ...args ) {
|
|
3427
|
-
switch ( args.length ) {
|
|
3428
|
-
case 0:
|
|
3429
|
-
return this.stem$esjava$0( ...args );
|
|
3430
|
-
}
|
|
3431
|
-
return super.stem( ...args );
|
|
3432
|
-
}
|
|
3433
|
-
}
|
|
3434
|
-
|
|
3435
|
-
export default TurkishStemmer;
|