@@ -2039,7 +2039,7 @@ pub fn facts(a: Expression, i: int, value: string) -> bool {
2039
2039
}
2040
2040
}
2041
2041
}
2042
- pub fn connectStrBase(ID: Expression, index: int, result : string) -> bool {
2042
+ pub fn connectStrBase(ID: Expression, index: int, res : string) -> bool {
2043
2043
let (java_db = default_java_db()) {
2044
2044
let (xml_db = default_xml_db()) {
2045
2045
for (total in int::__undetermined_all__(),
@@ -2048,7 +2048,7 @@ pub fn connectStrBase(ID: Expression, index: int, result: string) -> bool {
2048
2048
if (total = tmp_22(ID).len()) {
2049
2049
if (tmp_24(index)) {
2050
2050
if (facts(Expression(java_db).find(ID), index, currStr)) {
2051
- if (result = currStr) {
2051
+ if (res = currStr) {
2052
2052
return true
2053
2053
}
2054
2054
}
@@ -2057,7 +2057,7 @@ pub fn connectStrBase(ID: Expression, index: int, result: string) -> bool {
2057
2057
if (index > 0) {
2058
2058
if (connectStrBase(ID, index - 1, reStr)) {
2059
2059
if (facts(Expression(java_db).find(ID), index, currStr)) {
2060
- if (result = reStr + currStr) {
2060
+ if (res = reStr + currStr) {
2061
2061
return true
2062
2062
}
2063
2063
}
@@ -2072,11 +2072,10 @@ pub fn connectStrBase(ID: Expression, index: int, result: string) -> bool {
2072
2072
pub fn connectStr(ID: Expression) -> string {
2073
2073
let (java_db = default_java_db()) {
2074
2074
let (xml_db = default_xml_db()) {
2075
- for (c in int::__undetermined_all__(),
2076
- result in string::__undetermined_all__()) {
2075
+ for (c in int::__undetermined_all__(), res in string::__undetermined_all__()) {
2077
2076
if (c = tmp_25(ID).len()) {
2078
- if (connectStrBase(ID, c - 1, result )) {
2079
- return result
2077
+ if (connectStrBase(ID, c - 1, res )) {
2078
+ return res
2080
2079
}
2081
2080
}
2082
2081
}
0 commit comments