Compare commits
5 Commits
00dd8ab0c5
...
e3f47d6301
Author | SHA1 | Date | |
---|---|---|---|
e3f47d6301 | |||
18a6ff1fcd | |||
2fda2e2e8d | |||
4ec2cd72ea | |||
daf3458840 |
@ -1199,7 +1199,7 @@ var A = {
|
||||
a0 = i[b],
|
||||
a1 = a2.fT
|
||||
a1.toString
|
||||
s = h ? Object.create(new H.kc().constructor.prototype) : Object.create(new H.dg(null, null).constructor.prototype)
|
||||
s = h ? Object.create(new H.StaticClosure().constructor.prototype) : Object.create(new H.BoundClosure(null, null).constructor.prototype)
|
||||
s.$initialize = s.constructor
|
||||
if (h) r = function static_tear_off() {
|
||||
this.$initialize()
|
||||
@ -1327,7 +1327,7 @@ var A = {
|
||||
get_receiver = H.BoundClosure_receiverOf
|
||||
switch (is_super_call ? -1 : arity) {
|
||||
case 0:
|
||||
throw H.wrap_expression(new H.h3("Intercepted function with no arguments."))
|
||||
throw H.wrap_expression(new H.RuntimeError("Intercepted function with no arguments."))
|
||||
case 1:
|
||||
return function (e, f, g) {
|
||||
return function () {
|
||||
@ -1412,7 +1412,7 @@ var A = {
|
||||
return a.b
|
||||
},
|
||||
BoundClosure_selfFieldName(a) {
|
||||
var s, r, q, p = new H.dg("receiver", "interceptor"),
|
||||
var s, r, q, p = new H.BoundClosure("receiver", "interceptor"),
|
||||
o = J.nL(Object.getOwnPropertyNames(p))
|
||||
for (s = o.length, r = 0; r < s; ++r) {
|
||||
q = o[r]
|
||||
@ -1749,22 +1749,22 @@ var A = {
|
||||
j5: function j5() { },
|
||||
j6: function j6() { },
|
||||
kg: function kg() { },
|
||||
kc: function kc() { },
|
||||
dg: function dg(a, b) {
|
||||
StaticClosure: function kc() { },
|
||||
BoundClosure: function dg(a, b) {
|
||||
this.a = a
|
||||
this.b = b
|
||||
},
|
||||
h3: function h3(a) {
|
||||
RuntimeError: function h3(a) {
|
||||
this.a = a
|
||||
},
|
||||
aT: function aT(a) {
|
||||
JsLinkedHashMap: function aT(a) {
|
||||
var _ = this
|
||||
_.a = 0
|
||||
_.f = _.e = _.d = _.c = _.b = null
|
||||
_.r = 0
|
||||
_.$ti = a
|
||||
},
|
||||
jH: function jH(a) {
|
||||
JsLinkedHashMap_values_closure: function jH(a) {
|
||||
this.a = a
|
||||
},
|
||||
jK: function jK(a, b) {
|
||||
@ -4046,14 +4046,14 @@ var A = {
|
||||
this.c = c
|
||||
},
|
||||
a0(a, b) {
|
||||
return new H.aT(a.i("@<0>").aL(b).i("aT<1,2>"))
|
||||
return new H.JsLinkedHashMap(a.i("@<0>").aL(b).i("aT<1,2>"))
|
||||
},
|
||||
dD(a, b, c) {
|
||||
// Map<String, int>
|
||||
return H.uQ(a, new H.aT(b.i("@<0>").aL(c).i("aT<1,2>")))
|
||||
return H.uQ(a, new H.JsLinkedHashMap(b.i("@<0>").aL(c).i("aT<1,2>")))
|
||||
},
|
||||
cu(a, b) {
|
||||
return new H.aT(a.i("@<0>").aL(b).i("aT<1,2>"))
|
||||
return new H.JsLinkedHashMap(a.i("@<0>").aL(b).i("aT<1,2>"))
|
||||
},
|
||||
c5(a) {
|
||||
return new P.eu(a.i("eu<0>"))
|
||||
@ -5848,7 +5848,7 @@ var A = {
|
||||
n = $.i()
|
||||
m = -n
|
||||
// run here?
|
||||
runner = new T.Engine(j, h, k, i, new H.aT(t.d5), target, p, o, m, m, new Float64Array(n))
|
||||
runner = new T.Engine(j, h, k, i, new H.JsLinkedHashMap(t.d5), target, p, o, m, m, new Float64Array(n))
|
||||
async_goto = 3
|
||||
return P._asyncAwait(runner.bD(), $async$c2)
|
||||
case 3:
|
||||
@ -9146,18 +9146,18 @@ H.j6.prototype = {
|
||||
$R: 2
|
||||
}
|
||||
H.kg.prototype = {}
|
||||
H.kc.prototype = {
|
||||
H.StaticClosure.prototype = {
|
||||
k(a) {
|
||||
var s = this.$static_name
|
||||
if (s == null) return "Closure of unknown static method"
|
||||
return "Closure '" + H.oP(s) + "'"
|
||||
}
|
||||
}
|
||||
H.dg.prototype = {
|
||||
H.BoundClosure.prototype = {
|
||||
aW(a, b) {
|
||||
if (b == null) return false
|
||||
if (this === b) return true
|
||||
if (!(b instanceof H.dg)) return false
|
||||
if (!(b instanceof H.BoundClosure)) return false
|
||||
return this.$_target === b.$_target && this.a === b.a
|
||||
},
|
||||
gak(a) {
|
||||
@ -9167,12 +9167,12 @@ H.dg.prototype = {
|
||||
return "Closure '" + H.as_string(this.$_name) + "' of " + ("Instance of '" + H.as_string(H.jZ(this.a)) + "'")
|
||||
}
|
||||
}
|
||||
H.h3.prototype = {
|
||||
H.RuntimeError.prototype = {
|
||||
k(a) {
|
||||
return "RuntimeError: " + this.a
|
||||
}
|
||||
}
|
||||
H.aT.prototype = {
|
||||
H.JsLinkedHashMap.prototype = {
|
||||
gp(a) {
|
||||
return this.a
|
||||
},
|
||||
@ -9185,7 +9185,7 @@ H.aT.prototype = {
|
||||
gfP(a) {
|
||||
var s = this,
|
||||
r = H._instanceType(s)
|
||||
return H.t5(s.gad(s), new H.jH(s), r.c, r.Q[1])
|
||||
return H.t5(s.gad(s), new H.JsLinkedHashMap_values_closure(s), r.c, r.Q[1])
|
||||
},
|
||||
J(a, b) {
|
||||
var s, r
|
||||
@ -9373,7 +9373,7 @@ H.aT.prototype = {
|
||||
return r
|
||||
}
|
||||
}
|
||||
H.jH.prototype = {
|
||||
H.JsLinkedHashMap_values_closure.prototype = {
|
||||
$1(a) {
|
||||
return this.a.h(0, a)
|
||||
},
|
||||
@ -19252,7 +19252,7 @@ LangData.k_.prototype = {
|
||||
inherit_many(J.bE, [J.PlainJavaScriptObject, J.UnknownJavaScriptObject, J.JavaScriptFunction])
|
||||
inherit(J.JsUnmodifiableArray, J.JsArray)
|
||||
inherit_many(J.JsNumber, [J.JsInt, J.jF])
|
||||
inherit_many(P.O, [H.fz, H.dO, P.bc, H.JsNoSuchMethodError, H.hU, H.h3, H.i9, P.f2, P.fL, P.aS, P.hW, P.hS, P.bJ, P.fh, P.CyclicInitializationError])
|
||||
inherit_many(P.O, [H.fz, H.dO, P.bc, H.JsNoSuchMethodError, H.hU, H.RuntimeError, H.i9, P.f2, P.fL, P.aS, P.hW, P.hS, P.bJ, P.fh, P.CyclicInitializationError])
|
||||
inherit(P.dE, P.ev)
|
||||
inherit_many(P.dE, [H.cJ, W.az])
|
||||
inherit(H.ff, H.cJ)
|
||||
@ -19263,7 +19263,7 @@ LangData.k_.prototype = {
|
||||
inherit_many(H.M, [H.y, H.a9, P.id])
|
||||
inherit(H.NullError, P.bc)
|
||||
inherit_many(H.c_,
|
||||
[H.j5, H.j6, H.kg, H.jH, H.lv, H.lx,
|
||||
[H.j5, H.j6, H.kg, H.JsLinkedHashMap_values_closure, H.lv, H.lx,
|
||||
P.kB, P.kA, P._awaitOnObject_closure, P.kK, P.kS, P.ke, P.kZ, P.Duration_toString_sixDigits, P.Duration_toString_twoDigits,
|
||||
W.jf, W.kF, W.jP, W.jO, W.l0, W.l1, W.l7,
|
||||
P.lE, P.lF,
|
||||
@ -19276,9 +19276,9 @@ LangData.k_.prototype = {
|
||||
T.SklCloneCallback, T.jk, T.jj, T.jl, T.ji, T.lD, T.BoostPassive, T.k3, T.kb, T.ko, T.kp,
|
||||
LangData.k_]
|
||||
)
|
||||
inherit_many(H.kg, [H.kc, H.dg])
|
||||
inherit_many(H.kg, [H.StaticClosure, H.BoundClosure])
|
||||
inherit(P.dG, P.aU)
|
||||
inherit_many(P.dG, [H.aT, P.ic, W.i2])
|
||||
inherit_many(P.dG, [H.JsLinkedHashMap, P.ic, W.i2])
|
||||
inherit_many(H.j6,
|
||||
[H.lw, P._awaitOnObject_closure0, P._wrapJsFunctionForAsync_closure, P.kL, P.jM,
|
||||
W.kd, W.le, P.l5, P.l6, P.ky,
|
||||
|
Loading…
Reference in New Issue
Block a user