Compare commits

..

No commits in common. "3372a41c3c044b0e3f2edaf1f26494bbc7e596bf" and "b27e60eb495362a6065eaea7225ea9cb0e0c32d0" have entirely different histories.

View File

@ -14,14 +14,49 @@
if (!b.hasOwnProperty(q)) b[q] = a[q] if (!b.hasOwnProperty(q)) b[q] = a[q]
} }
} }
var z = function () {
var s = function () {}
s.prototype = {
p: {}
}
var r = new s()
if (!(r.__proto__ && r.__proto__.p === s.prototype.p)) return false
try {
if (typeof navigator != "undefined" && typeof navigator.userAgent == "string" && navigator.userAgent.indexOf("Chrome/") >= 0) return true
if (typeof version == "function" && version.length == 0) {
var q = version()
if (/^\d+\.\d+\.\d+\.\d+$/.test(q)) return true
}
} catch (p) {}
return false
}()
function setFunctionNamesIfNecessary(a) {
function t() {};
if (typeof t.name == "string") return
for (var s = 0; s < a.length; s++) {
var r = a[s]
var q = Object.keys(r)
for (var p = 0; p < q.length; p++) {
var o = q[p]
var n = r[o]
if (typeof n == "function") n.name = o
}
}
}
function inherit(a, b) { function inherit(a, b) {
a.prototype.constructor = a a.prototype.constructor = a
a.prototype["$i" + a.name] = a a.prototype["$i" + a.name] = a
if (b != null) { if (b != null) {
if (z) {
a.prototype.__proto__ = b.prototype a.prototype.__proto__ = b.prototype
return return
} }
var s = Object.create(b.prototype)
copyProperties(a.prototype, s)
a.prototype = s
}
} }
function inheritMany(a, b) { function inheritMany(a, b) {
@ -91,7 +126,17 @@
return a return a
} }
let y = 0; function convertToFastObject(a) {
function t() {}
t.prototype = a
new t()
return a
}
function convertAllToFastObject(a) {
for (var s = 0; s < a.length; ++s) convertToFastObject(a[s])
}
var y = 0
function instanceTearOffGetter(a, b) { function instanceTearOffGetter(a, b) {
var s = b.fs[0] var s = b.fs[0]
@ -197,6 +242,8 @@
lazyFinal: lazyFinal, lazyFinal: lazyFinal,
lazyOld: lazyOld, lazyOld: lazyOld,
updateHolder: updateHolder, updateHolder: updateHolder,
convertToFastObject: convertToFastObject,
setFunctionNamesIfNecessary: setFunctionNamesIfNecessary,
updateTypes: updateTypes, updateTypes: updateTypes,
setOrUpdateInterceptorsByTag: setOrUpdateInterceptorsByTag, setOrUpdateInterceptorsByTag: setOrUpdateInterceptorsByTag,
setOrUpdateLeafTags: setOrUpdateLeafTags setOrUpdateLeafTags: setOrUpdateLeafTags
@ -3836,10 +3883,7 @@
return P.au(H.a([r, q, p, o < 26 ? o + 65 : o + 71], t.i), 0, null) return P.au(H.a([r, q, p, o < 26 ? o + 65 : o + 71], t.i), 0, null)
}, },
w(a, b) { w(a, b) {
let result = C.f.w(0, X.iJ(a, b)) return C.f.w(0, X.iJ(a, b))
console.log(a, b, result)
// return C.f.w(0, X.iJ(a, b))
return result
}, },
J(a) { J(a) {
var s = $.jp.i(0, a) var s = $.jp.i(0, a)
@ -5618,7 +5662,8 @@
this.b = b this.b = b
} }
} }
var w = [B, C, D, F, G, H, J, K, M, N, O, P, Q, S, T, V, W, X, Y]; var w = [B, C, D, E, F, G, H, J, K, M, N, O, P, Q, S, T, V, W, X, Y]
hunkHelpers.setFunctionNamesIfNecessary(w)
var $ = {} var $ = {}
H.hN.prototype = {} H.hN.prototype = {}
J.I.prototype = { J.I.prototype = {
@ -11593,14 +11638,19 @@
})(); })();
(function nativeSupport() { (function nativeSupport() {
! function () { ! function () {
var s = function (a) {
var m = {}
m[a] = 1
return Object.keys(hunkHelpers.convertToFastObject(m))[0]
}
v.getIsolateTag = function (a) { v.getIsolateTag = function (a) {
return "___dart_" + a + v.isolateTag return s("___dart_" + a + v.isolateTag)
} }
var r = "___dart_isolate_tags_" var r = "___dart_isolate_tags_"
var q = Object[r] || (Object[r] = Object.create(null)) var q = Object[r] || (Object[r] = Object.create(null))
var p = "_ZxYxX" var p = "_ZxYxX"
for (var o = 0;; o++) { for (var o = 0;; o++) {
let n = p + "_" + o + "_"; var n = s(p + "_" + o + "_")
if (!(n in q)) { if (!(n in q)) {
q[n] = 1 q[n] = 1
v.isolateTag = n v.isolateTag = n
@ -12221,6 +12271,30 @@
Function.prototype.$4 = function (a, b, c, d) { Function.prototype.$4 = function (a, b, c, d) {
return this(a, b, c, d) return this(a, b, c, d)
}; };
// convertAllToFastObject(w)
// convertToFastObject($);
// (function (a) {
// if (typeof document === "undefined") {
// a(null)
// return
// }
// if (typeof document.currentScript != "undefined") {
// a(document.currentScript)
// return
// }
// var s = document.scripts
// function onLoad(b) {
// for (var q = 0; q < s.length; ++q) s[q].removeEventListener("load", onLoad, false)
// a(b.target)
// }
// for (var r = 0; r < s.length; ++r) s[r].addEventListener("load", onLoad, false)
// })(function (a) {
// v.currentScript = a
// var s = E.nu
// if (typeof dartMainRunner === "function") dartMainRunner(s, [])
// else s([])
// })
G.main_func() G.main_func()
})() })()
//# sourceMappingURL=index.dart.js.map //# sourceMappingURL=index.dart.js.map