From a6e211c20a44ac7549a1066438890e855255ac2e Mon Sep 17 00:00:00 2001 From: hillelcoren Date: Sun, 13 Feb 2022 08:59:00 +0000 Subject: [PATCH] Admin Portal - Profile --- public/main.profile.dart.js | 90 +++++++++++++++++++------------------ 1 file changed, 46 insertions(+), 44 deletions(-) diff --git a/public/main.profile.dart.js b/public/main.profile.dart.js index bbf7d511ab65..944e2f54cda3 100644 --- a/public/main.profile.dart.js +++ b/public/main.profile.dart.js @@ -1,4 +1,4 @@ -// Generated by dart2js (NullSafetyMode.unsound, trust primitives, omit checks, lax runtime type, no-legacy-javascript, csp), the Dart to JavaScript compiler version: 2.16.0-134.5.beta. +// Generated by dart2js (NullSafetyMode.unsound, trust primitives, omit checks, lax runtime type, no-legacy-javascript, csp), the Dart to JavaScript compiler version: 2.16.1. // The code supports the following hooks: // dartPrint(message): // if this function is defined it is called instead of the Dart [print] @@ -4646,7 +4646,7 @@ _._bytes = t1; _._frameCount = 0; _._repetitionCount = -1; - _._nextFrameIndex = 0; + _._currentFrameIndex = 0; _._disposed = false; _.rawSkiaObject = null; }, @@ -111113,9 +111113,6 @@ createElement$1$x(receiver, a0) { return J.getInterceptor$x(receiver).createElement$1(receiver, a0); }, - decodeNextFrame$0$x(receiver) { - return J.getInterceptor$x(receiver).decodeNextFrame$0(receiver); - }, delete$0$x(receiver) { return J.getInterceptor$x(receiver).delete$0(receiver); }, @@ -111323,9 +111320,6 @@ listener$1$z(receiver, a0) { return J.getInterceptor$z(receiver).listener$1(receiver, a0); }, - makeImageAtCurrentFrame$0$x(receiver) { - return J.getInterceptor$x(receiver).makeImageAtCurrentFrame$0(receiver); - }, map$1$ax(receiver, a0) { return J.getInterceptor$ax(receiver).map$1(receiver, a0); }, @@ -114852,7 +114846,7 @@ t1 = J.getInterceptor$x(animatedImage); _this._frameCount = t1.getFrameCount$0(animatedImage); _this._repetitionCount = t1.getRepetitionCount$0(animatedImage); - for (i = 0; i < _this._nextFrameIndex; ++i) + for (i = 0; i < _this._currentFrameIndex; ++i) t1.decodeNextFrame$0(animatedImage); return animatedImage; }, @@ -114879,10 +114873,13 @@ }, getNextFrame$0() { var _this = this, - duration = A.Duration$(0, 0, 0, J.decodeNextFrame$0$x(_this.get$skiaObject()), 0, 0), - image = A.CkImage$(J.makeImageAtCurrentFrame$0$x(_this.get$skiaObject()), null); - _this._nextFrameIndex = B.JSInt_methods.$mod(_this._nextFrameIndex + 1, _this._frameCount); - return A.Future_Future$value(new A.AnimatedImageFrameInfo(duration, image), type$.FrameInfo); + animatedImage = _this.get$skiaObject(), + t1 = J.getInterceptor$x(animatedImage), + t2 = A.Duration$(0, 0, 0, t1.currentFrameDuration$0(animatedImage), 0, 0), + t3 = A.CkImage$(t1.makeImageAtCurrentFrame$0(animatedImage), null); + t1.decodeNextFrame$0(animatedImage); + _this._currentFrameIndex = B.JSInt_methods.$mod(_this._currentFrameIndex + 1, _this._frameCount); + return A.Future_Future$value(new A.AnimatedImageFrameInfo(t2, t3), type$.FrameInfo); }, $isCodec: 1 }; @@ -116917,7 +116914,7 @@ get$canvasKitBaseUrl(_) { var t1 = this._js; t1 = t1 == null ? null : J.get$canvasKitBaseUrl$x(t1); - return t1 == null ? "https://unpkg.com/canvaskit-wasm@0.31.0/bin/" : t1; + return t1 == null ? "https://unpkg.com/canvaskit-wasm@0.33.0/bin/" : t1; }, get$canvasKitForceCpuOnly(_) { var t1 = this._js; @@ -129580,6 +129577,8 @@ } }, initializeElementPlacement$0() { + if (this.geometry != null) + this.placeElement$0(); this.domElement.focus(); } }; @@ -131826,6 +131825,9 @@ getRepetitionCount$0(receiver) { return receiver.getRepetitionCount(); }, + currentFrameDuration$0(receiver) { + return receiver.currentFrameDuration(); + }, decodeNextFrame$0(receiver) { return receiver.decodeNextFrame(); }, @@ -225815,48 +225817,47 @@ t1 = t1 == null ? null : $.$get$TextInput__instance()._currentConnection === t1; return t1 === true; }, - get$_needsAutofill() { - var t1 = this._widget.autofillHints == null && null; - return t1 !== false; - }, _openInputConnection$0() { - var t1, t2, t3, connection, style, _this = this, + var t1, t2, t3, connection, style, t4, _this = this, _s8_ = "_channel", _s14_ = "TextInput.show"; if (!_this.get$_hasInputConnection()) { - t1 = _this._widget.controller._change_notifier$_value; - t2 = _this.get$_needsAutofill() && _this._currentAutofillScope != null; + t1 = _this._widget; + t2 = t1.controller._change_notifier$_value; + t1 = t1.autofillClient; + t1 = (t1 == null ? _this : t1).get$textInputConfiguration().autofillConfiguration.enabled && _this._currentAutofillScope != null; t3 = _this._widget; - if (t2) { - t2 = _this._currentAutofillScope; - t2.toString; + if (t1) { + t1 = _this._currentAutofillScope; + t1.toString; t3 = t3.autofillClient; - t2 = t2.attach$2(_this, (t3 == null ? _this : t3).get$textInputConfiguration()); + t1 = t1.attach$2(_this, (t3 == null ? _this : t3).get$textInputConfiguration()); } else { - t2 = t3.autofillClient; - t2 = (t2 == null ? _this : t2).get$textInputConfiguration(); + t1 = t3.autofillClient; + t1 = (t1 == null ? _this : t1).get$textInputConfiguration(); connection = A.TextInputConnection$_(_this); - $.$get$TextInput__instance()._attach$2(connection, t2); - t2 = connection; + $.$get$TextInput__instance()._attach$2(connection, t1); + t1 = connection; } - _this._textInputConnection = t2; + _this._textInputConnection = t1; _this._updateSizeAndTransform$0(); _this._updateComposingRectIfNeeded$0(); _this._updateCaretRectIfNeeded$0(); style = _this._widget.style; - t2 = _this._textInputConnection; - t2.toString; + t1 = _this._textInputConnection; + t1.toString; t3 = _this.get$_editable_text$_textDirection(); - t2.setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(0, style.fontFamily, style.fontSize, style.fontWeight, _this._widget.textAlign, t3); + t1.setStyle$5$fontFamily$fontSize$fontWeight$textAlign$textDirection(0, style.fontFamily, style.fontSize, style.fontWeight, _this._widget.textAlign, t3); t3 = $.$get$TextInput__instance(); - t2 = type$.void; - A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$2("TextInput.setEditingState", t1.toJSON$0(), t2); - A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$1(_s14_, t2); - if (_this.get$_needsAutofill()) { + t1 = type$.void; + A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$2("TextInput.setEditingState", t2.toJSON$0(), t1); + A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$1(_s14_, t1); + t4 = _this._widget.autofillClient; + if ((t4 == null ? _this : t4).get$textInputConfiguration().autofillConfiguration.enabled) { _this._textInputConnection.toString; - A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$1("TextInput.requestAutofill", t2); + A._lateReadCheck(t3.__TextInput__channel, _s8_).invokeMethod$1$1("TextInput.requestAutofill", t1); } - _this._lastKnownRemoteTextEditingValue = t1; + _this._lastKnownRemoteTextEditingValue = t2; } else { _this._textInputConnection.toString; A._lateReadCheck($.$get$TextInput__instance().__TextInput__channel, _s8_).invokeMethod$1$1(_s14_, type$.void); @@ -225894,7 +225895,8 @@ if (t2._currentConnection === t1) t2._clearClient$0(); _this._lastKnownRemoteTextEditingValue = _this._textInputConnection = null; - currentAutofillScope = _this.get$_needsAutofill() ? _this._currentAutofillScope : null; + t1 = _this._widget.autofillClient; + currentAutofillScope = (t1 == null ? _this : t1).get$textInputConfiguration().autofillConfiguration.enabled ? _this._currentAutofillScope : null; newConnection = currentAutofillScope == null ? null : currentAutofillScope.attach$2(_this, _this.get$textInputConfiguration()); if (newConnection == null) { t1 = _this._widget.autofillClient; @@ -359538,7 +359540,7 @@ } B.JSArray_methods.addAll$1(t5, t6); } - if (A.getLayout(context) === B.AppLayout_mobile) { + if (A.getLayout(context) === B.AppLayout_mobile || t2._widget.entityType === B.EntityType_companyGateway) { t6 = t1.get$filter(t1); t7 = A.Icon$(B.IconData_57984_MaterialIcons_null_false, _null, _null); t8 = A._lateReadCheck(store.__Store__state, _s6_).getUIState$1(t2._widget.entityType).get$listUIState().stateFilters._list; @@ -367305,7 +367307,7 @@ A._showAbout__closure1.prototype = { call$0() { var _null = null; - A.showMessageDialog(this.context, B.JSString_methods.$add(B.Map_eBQAb.$index(0, "channel").toUpperCase() + " \u2022 ", B.Map_eBQAb.$index(0, "frameworkVersion")), _null, A._setArrayType([A.TextButton$(false, A.Text$(this.localization.get$logout().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout___closure1(this.store), _null)], type$.JSArray_legacy_TextButton)); + A.showMessageDialog(this.context, B.JSString_methods.$add(B.Map_eBaZO.$index(0, "channel").toUpperCase() + " \u2022 ", B.Map_eBaZO.$index(0, "frameworkVersion")), _null, A._setArrayType([A.TextButton$(false, A.Text$(this.localization.get$logout().toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, new A._showAbout___closure1(this.store), _null)], type$.JSArray_legacy_TextButton)); }, $signature: 1 }; @@ -370352,7 +370354,7 @@ }; A._LoginState_build_closure16.prototype = { call$0() { - A.launch("https://status.invoiceninja.com/", null, false); + A.launch("https://status.invoiceninja.com", null, false); }, $signature: 1 }; @@ -443495,7 +443497,7 @@ B.Map_cW2No = new A.GeneralConstantMap([B.SingleActivator_j8H10, B.C_AutocompletePreviousOptionIntent, B.SingleActivator_j8H7, B.C_AutocompleteNextOptionIntent], type$.GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent); B.Map_cW2nU = new A.GeneralConstantMap([B.SingleActivator_j8H7, B.DirectionalFocusIntent_TraversalDirection_2, B.SingleActivator_j8H10, B.DirectionalFocusIntent_TraversalDirection_0], type$.GeneralConstantMap_of_legacy_ShortcutActivator_and_legacy_Intent); B.List_eBn = A._setArrayType(makeConstList(["frameworkVersion", "channel", "repositoryUrl", "frameworkRevision", "frameworkCommitDate", "engineRevision", "dartSdkVersion", "devToolsVersion", "flutterRoot"]), type$.JSArray_legacy_String); - B.Map_eBQAb = new A.ConstantStringMap(9, {frameworkVersion: "2.10.0-0.3.pre", channel: "beta", repositoryUrl: "https://github.com/flutter/flutter.git", frameworkRevision: "fdd0af78bbda27e1084ec859b27765d927cbe27e", frameworkCommitDate: "2022-01-25 22:01:33 -0600", engineRevision: "5ac30ef0c70b76c5d5b5465b0ad4f08d5433684f", dartSdkVersion: "2.16.0 (build 2.16.0-134.5.beta)", devToolsVersion: "2.9.2", flutterRoot: "/opt/hostedtoolcache/flutter/2.10.0-0.3.pre-beta/x64"}, B.List_eBn, type$.ConstantStringMap_of_legacy_String_and_legacy_String); + B.Map_eBaZO = new A.ConstantStringMap(9, {frameworkVersion: "2.10.1", channel: "stable", repositoryUrl: "https://github.com/flutter/flutter.git", frameworkRevision: "db747aa1331bd95bc9b3874c842261ca2d302cd5", frameworkCommitDate: "2022-02-09 13:57:35 -0600", engineRevision: "ab46186b246f5a36bd1f3f295d14a43abb1e2f38", dartSdkVersion: "2.16.1", devToolsVersion: "2.9.2", flutterRoot: "/opt/hostedtoolcache/flutter/2.10.1-stable/x64"}, B.List_eBn, type$.ConstantStringMap_of_legacy_String_and_legacy_String); B.Map_eRea7 = new A.GeneralConstantMap([9, B.PhysicalKeyboardKey_458793, 10, B.PhysicalKeyboardKey_458782, 11, B.PhysicalKeyboardKey_458783, 12, B.PhysicalKeyboardKey_458784, 13, B.PhysicalKeyboardKey_458785, 14, B.PhysicalKeyboardKey_458786, 15, B.PhysicalKeyboardKey_458787, 16, B.PhysicalKeyboardKey_458788, 17, B.PhysicalKeyboardKey_458789, 18, B.PhysicalKeyboardKey_458790, 19, B.PhysicalKeyboardKey_458791, 20, B.PhysicalKeyboardKey_458797, 21, B.PhysicalKeyboardKey_458798, 22, B.PhysicalKeyboardKey_458794, 23, B.PhysicalKeyboardKey_458795, 24, B.PhysicalKeyboardKey_458772, 25, B.PhysicalKeyboardKey_458778, 26, B.PhysicalKeyboardKey_458760, 27, B.PhysicalKeyboardKey_458773, 28, B.PhysicalKeyboardKey_458775, 29, B.PhysicalKeyboardKey_458780, 30, B.PhysicalKeyboardKey_458776, 31, B.PhysicalKeyboardKey_458764, 32, B.PhysicalKeyboardKey_458770, 33, B.PhysicalKeyboardKey_458771, 34, B.PhysicalKeyboardKey_458799, 35, B.PhysicalKeyboardKey_458800, 36, B.PhysicalKeyboardKey_458792, 37, B.PhysicalKeyboardKey_458976, 38, B.PhysicalKeyboardKey_458756, 39, B.PhysicalKeyboardKey_458774, 40, B.PhysicalKeyboardKey_458759, 41, B.PhysicalKeyboardKey_458761, 42, B.PhysicalKeyboardKey_458762, 43, B.PhysicalKeyboardKey_458763, 44, B.PhysicalKeyboardKey_458765, 45, B.PhysicalKeyboardKey_458766, 46, B.PhysicalKeyboardKey_458767, 47, B.PhysicalKeyboardKey_458803, 48, B.PhysicalKeyboardKey_458804, 49, B.PhysicalKeyboardKey_458805, 50, B.PhysicalKeyboardKey_458977, 51, B.PhysicalKeyboardKey_458801, 52, B.PhysicalKeyboardKey_458781, 53, B.PhysicalKeyboardKey_458779, 54, B.PhysicalKeyboardKey_458758, 55, B.PhysicalKeyboardKey_458777, 56, B.PhysicalKeyboardKey_458757, 57, B.PhysicalKeyboardKey_458769, 58, B.PhysicalKeyboardKey_458768, 59, B.PhysicalKeyboardKey_458806, 60, B.PhysicalKeyboardKey_458807, 61, B.PhysicalKeyboardKey_458808, 62, B.PhysicalKeyboardKey_458981, 63, B.PhysicalKeyboardKey_458837, 64, B.PhysicalKeyboardKey_458978, 65, B.PhysicalKeyboardKey_458796, 66, B.PhysicalKeyboardKey_458809, 67, B.PhysicalKeyboardKey_458810, 68, B.PhysicalKeyboardKey_458811, 69, B.PhysicalKeyboardKey_458812, 70, B.PhysicalKeyboardKey_458813, 71, B.PhysicalKeyboardKey_458814, 72, B.PhysicalKeyboardKey_458815, 73, B.PhysicalKeyboardKey_458816, 74, B.PhysicalKeyboardKey_458817, 75, B.PhysicalKeyboardKey_458818, 76, B.PhysicalKeyboardKey_458819, 77, B.PhysicalKeyboardKey_458835, 78, B.PhysicalKeyboardKey_458823, 79, B.PhysicalKeyboardKey_458847, 80, B.PhysicalKeyboardKey_458848, 81, B.PhysicalKeyboardKey_458849, 82, B.PhysicalKeyboardKey_458838, 83, B.PhysicalKeyboardKey_458844, 84, B.PhysicalKeyboardKey_458845, 85, B.PhysicalKeyboardKey_458846, 86, B.PhysicalKeyboardKey_458839, 87, B.PhysicalKeyboardKey_458841, 88, B.PhysicalKeyboardKey_458842, 89, B.PhysicalKeyboardKey_458843, 90, B.PhysicalKeyboardKey_458850, 91, B.PhysicalKeyboardKey_458851, 93, B.PhysicalKeyboardKey_458900, 94, B.PhysicalKeyboardKey_458852, 95, B.PhysicalKeyboardKey_458820, 96, B.PhysicalKeyboardKey_458821, 97, B.PhysicalKeyboardKey_458887, 98, B.PhysicalKeyboardKey_458898, 99, B.PhysicalKeyboardKey_458899, 100, B.PhysicalKeyboardKey_458890, 101, B.PhysicalKeyboardKey_458888, 102, B.PhysicalKeyboardKey_458891, 104, B.PhysicalKeyboardKey_458840, 105, B.PhysicalKeyboardKey_458980, 106, B.PhysicalKeyboardKey_458836, 107, B.PhysicalKeyboardKey_458822, 108, B.PhysicalKeyboardKey_458982, 110, B.PhysicalKeyboardKey_458826, 111, B.PhysicalKeyboardKey_458834, 112, B.PhysicalKeyboardKey_458827, 113, B.PhysicalKeyboardKey_458832, 114, B.PhysicalKeyboardKey_458831, 115, B.PhysicalKeyboardKey_458829, 116, B.PhysicalKeyboardKey_458833, 117, B.PhysicalKeyboardKey_458830, 118, B.PhysicalKeyboardKey_458825, 119, B.PhysicalKeyboardKey_458828, 121, B.PhysicalKeyboardKey_458879, 122, B.PhysicalKeyboardKey_458881, 123, B.PhysicalKeyboardKey_458880, 124, B.PhysicalKeyboardKey_458854, 125, B.PhysicalKeyboardKey_458855, 126, B.PhysicalKeyboardKey_458967, 127, B.PhysicalKeyboardKey_458824, 128, B.PhysicalKeyboardKey_787103, 129, B.PhysicalKeyboardKey_458885, 130, B.PhysicalKeyboardKey_458896, 131, B.PhysicalKeyboardKey_458897, 132, B.PhysicalKeyboardKey_458889, 133, B.PhysicalKeyboardKey_458979, 134, B.PhysicalKeyboardKey_458983, 135, B.PhysicalKeyboardKey_458853, 136, B.PhysicalKeyboardKey_786982, 137, B.PhysicalKeyboardKey_458873, 139, B.PhysicalKeyboardKey_458874, 140, B.PhysicalKeyboardKey_458871, 141, B.PhysicalKeyboardKey_458876, 142, B.PhysicalKeyboardKey_458868, 143, B.PhysicalKeyboardKey_458877, 144, B.PhysicalKeyboardKey_458878, 145, B.PhysicalKeyboardKey_458875, 146, B.PhysicalKeyboardKey_458869, 148, B.PhysicalKeyboardKey_786834, 150, B.PhysicalKeyboardKey_65666, 151, B.PhysicalKeyboardKey_65667, 152, B.PhysicalKeyboardKey_786836, 158, B.PhysicalKeyboardKey_786838, 160, B.PhysicalKeyboardKey_786846, 163, B.PhysicalKeyboardKey_786826, 164, B.PhysicalKeyboardKey_786986, 166, B.PhysicalKeyboardKey_786980, 167, B.PhysicalKeyboardKey_786981, 169, B.PhysicalKeyboardKey_786616, 171, B.PhysicalKeyboardKey_786613, 172, B.PhysicalKeyboardKey_786637, 173, B.PhysicalKeyboardKey_786614, 174, B.PhysicalKeyboardKey_786615, 175, B.PhysicalKeyboardKey_786610, 176, B.PhysicalKeyboardKey_786612, 177, B.PhysicalKeyboardKey_786572, 179, B.PhysicalKeyboardKey_786819, 180, B.PhysicalKeyboardKey_786979, 181, B.PhysicalKeyboardKey_786983, 182, B.PhysicalKeyboardKey_786580, 187, B.PhysicalKeyboardKey_458934, 188, B.PhysicalKeyboardKey_458935, 189, B.PhysicalKeyboardKey_786945, 190, B.PhysicalKeyboardKey_787065, 191, B.PhysicalKeyboardKey_458856, 192, B.PhysicalKeyboardKey_458857, 193, B.PhysicalKeyboardKey_458858, 194, B.PhysicalKeyboardKey_458859, 195, B.PhysicalKeyboardKey_458860, 196, B.PhysicalKeyboardKey_458861, 197, B.PhysicalKeyboardKey_458862, 198, B.PhysicalKeyboardKey_458863, 199, B.PhysicalKeyboardKey_458864, 200, B.PhysicalKeyboardKey_458865, 201, B.PhysicalKeyboardKey_458866, 202, B.PhysicalKeyboardKey_458867, 209, B.PhysicalKeyboardKey_786609, 214, B.PhysicalKeyboardKey_786947, 215, B.PhysicalKeyboardKey_786608, 216, B.PhysicalKeyboardKey_786611, 217, B.PhysicalKeyboardKey_786661, 218, B.PhysicalKeyboardKey_786952, 225, B.PhysicalKeyboardKey_786977, 232, B.PhysicalKeyboardKey_786544, 233, B.PhysicalKeyboardKey_786543, 235, B.PhysicalKeyboardKey_65717, 237, B.PhysicalKeyboardKey_786554, 238, B.PhysicalKeyboardKey_786553, 239, B.PhysicalKeyboardKey_787084, 240, B.PhysicalKeyboardKey_787081, 241, B.PhysicalKeyboardKey_787083, 242, B.PhysicalKeyboardKey_786951, 243, B.PhysicalKeyboardKey_786855, 252, B.PhysicalKeyboardKey_786549, 256, B.PhysicalKeyboardKey_24, 366, B.PhysicalKeyboardKey_786528, 370, B.PhysicalKeyboardKey_786573, 378, B.PhysicalKeyboardKey_786529, 380, B.PhysicalKeyboardKey_786994, 382, B.PhysicalKeyboardKey_786862, 400, B.PhysicalKeyboardKey_786871, 405, B.PhysicalKeyboardKey_786830, 413, B.PhysicalKeyboardKey_786563, 418, B.PhysicalKeyboardKey_786588, 419, B.PhysicalKeyboardKey_786589, 426, B.PhysicalKeyboardKey_786989, 427, B.PhysicalKeyboardKey_786990, 429, B.PhysicalKeyboardKey_786820, 431, B.PhysicalKeyboardKey_786822, 437, B.PhysicalKeyboardKey_786829, 439, B.PhysicalKeyboardKey_786546, 440, B.PhysicalKeyboardKey_786859, 441, B.PhysicalKeyboardKey_786844, 587, B.PhysicalKeyboardKey_786847, 588, B.PhysicalKeyboardKey_786850, 589, B.PhysicalKeyboardKey_786865, 590, B.PhysicalKeyboardKey_786639, 591, B.PhysicalKeyboardKey_786891, 592, B.PhysicalKeyboardKey_787101, 600, B.PhysicalKeyboardKey_786547, 601, B.PhysicalKeyboardKey_786548, 641, B.PhysicalKeyboardKey_23], type$.GeneralConstantMap_of_legacy_int_and_legacy_PhysicalKeyboardKey); B.Map_empty0 = new A.ConstantStringMap(0, {}, B.List_empty, A.findType("ConstantStringMap<@,@>")); B.Map_empty2 = new A.ConstantStringMap(0, {}, B.List_empty, A.findType("ConstantStringMap"));