scope dm_gazelle_appliedRulesForLearning. please include function javaTokNPunctuationWithBrackets. please include function javaTokNoQuotes. please include function javaTokNoQuotesWithBrackets. sclass #Entry { S ruleID; SS varMap; S judgement; } static L dm_gazelle_appliedRulesForLearning() { L concepts = cloneList((L) dm_requireAndCall("#1021413/AppliedRules", 'concepts)); new L out; for (O c : concepts) pcall { S judgement = getString judgement(c); S struct = getString matchedRuleStruct(c); O matchedRule = safeUnstruct(struct); // RuleEngine2_MatchedRule O rule = getOpt rule(matchedRule); S ruleID = getString globalID(rule); SS varMap = getOpt map(matchedRule); out.add(nu(Entry, +ruleID, +varMap, +judgement)); } ret out; } end scope