Refactor printString function and update function names
This commit is contained in:
parent
c56b952d79
commit
23dab262a3
12
md5.js
12
md5.js
@ -2893,21 +2893,21 @@
|
||||
eI: function eI(a) {
|
||||
this.a = a
|
||||
},
|
||||
ve(a) {
|
||||
printString(string) {
|
||||
if (typeof dartPrint == "function") {
|
||||
dartPrint(a)
|
||||
dartPrint(string)
|
||||
return
|
||||
}
|
||||
if (typeof console == "object" && typeof console.log != "undefined") {
|
||||
console.log(a)
|
||||
console.log(string)
|
||||
return
|
||||
}
|
||||
if (typeof window == "object") return
|
||||
if (typeof print == "function") {
|
||||
print(a)
|
||||
print(string)
|
||||
return
|
||||
}
|
||||
throw "Unable to print message: " + String(a)
|
||||
throw "Unable to print message: " + String(string)
|
||||
},
|
||||
vm(a) {
|
||||
return H.G(new H.fz("Field '" + H.e(a) + "' has been assigned during initialization."))
|
||||
@ -17876,7 +17876,7 @@
|
||||
if (q.f == $.a()) {
|
||||
q.f = $.av()
|
||||
q.W()
|
||||
} else H.ve(J.b4(o))
|
||||
} else H.printString(J.b4(o))
|
||||
}
|
||||
for (s = l.k2, p = s.length, r = 0; r < s.length; s.length === p || (0, H.F)(s), ++r) {
|
||||
q = s[r]
|
||||
|
Loading…
Reference in New Issue
Block a user