sass 1.54.5 → 1.54.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sass.dart.js +531 -461
package/sass.dart.js
CHANGED
|
@@ -128,7 +128,7 @@ self.immutable = require("immutable");
|
|
|
128
128
|
self.fs = require("fs");
|
|
129
129
|
self.chokidar = _cli_pkg_requires.chokidar;
|
|
130
130
|
self.readline = _cli_pkg_requires.readline;
|
|
131
|
-
// Generated by dart2js (NullSafetyMode.sound, trust primitives, omit checks, lax runtime type, csp), the Dart to JavaScript compiler version: 2.
|
|
131
|
+
// Generated by dart2js (NullSafetyMode.sound, trust primitives, omit checks, lax runtime type, deferred-serialization, csp), the Dart to JavaScript compiler version: 2.18.0.
|
|
132
132
|
// The code supports the following hooks:
|
|
133
133
|
// dartPrint(message):
|
|
134
134
|
// if this function is defined it is called instead of the Dart [print]
|
|
@@ -374,9 +374,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
374
374
|
LateError$fieldADI(fieldName) {
|
|
375
375
|
return new A.LateError("Field '" + fieldName + "' has been assigned during initialization.");
|
|
376
376
|
},
|
|
377
|
+
LateError$fieldNI(fieldName) {
|
|
378
|
+
return new A.LateError("Field '" + fieldName + "' has not been initialized.");
|
|
379
|
+
},
|
|
377
380
|
LateError$localNI(localName) {
|
|
378
381
|
return new A.LateError("Local '" + localName + "' has not been initialized.");
|
|
379
382
|
},
|
|
383
|
+
LateError$fieldAI(fieldName) {
|
|
384
|
+
return new A.LateError("Field '" + fieldName + "' has already been initialized.");
|
|
385
|
+
},
|
|
380
386
|
hexDigitValue(char) {
|
|
381
387
|
var letter,
|
|
382
388
|
digit = char ^ 48;
|
|
@@ -981,23 +987,18 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
981
987
|
return A.Primitives__objectTypeNameNewRti(object);
|
|
982
988
|
},
|
|
983
989
|
Primitives__objectTypeNameNewRti(object) {
|
|
984
|
-
var interceptor, dispatchName,
|
|
990
|
+
var interceptor, dispatchName, $constructor, constructorName;
|
|
985
991
|
if (object instanceof A.Object)
|
|
986
992
|
return A._rtiToString(A.instanceType(object), null);
|
|
987
993
|
interceptor = J.getInterceptor$(object);
|
|
988
994
|
if (interceptor === B.Interceptor_methods || interceptor === B.JavaScriptObject_methods || type$.UnknownJavaScriptObject._is(object)) {
|
|
989
995
|
dispatchName = B.C_JS_CONST(object);
|
|
990
|
-
|
|
991
|
-
if (t1)
|
|
996
|
+
if (dispatchName !== "Object" && dispatchName !== "")
|
|
992
997
|
return dispatchName;
|
|
993
998
|
$constructor = object.constructor;
|
|
994
999
|
if (typeof $constructor == "function") {
|
|
995
1000
|
constructorName = $constructor.name;
|
|
996
|
-
if (typeof constructorName == "string")
|
|
997
|
-
t1 = constructorName !== "Object" && constructorName !== "";
|
|
998
|
-
else
|
|
999
|
-
t1 = false;
|
|
1000
|
-
if (t1)
|
|
1001
|
+
if (typeof constructorName == "string" && constructorName !== "Object" && constructorName !== "")
|
|
1001
1002
|
return constructorName;
|
|
1002
1003
|
}
|
|
1003
1004
|
}
|
|
@@ -2115,6 +2116,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
2115
2116
|
throwLateFieldADI(fieldName) {
|
|
2116
2117
|
return A.throwExpression(A.LateError$fieldADI(fieldName));
|
|
2117
2118
|
},
|
|
2119
|
+
throwUnnamedLateFieldNI() {
|
|
2120
|
+
return A.throwExpression(A.LateError$fieldNI(""));
|
|
2121
|
+
},
|
|
2122
|
+
throwUnnamedLateFieldAI() {
|
|
2123
|
+
return A.throwExpression(A.LateError$fieldAI(""));
|
|
2124
|
+
},
|
|
2125
|
+
throwUnnamedLateFieldADI() {
|
|
2126
|
+
return A.throwExpression(A.LateError$fieldADI(""));
|
|
2127
|
+
},
|
|
2118
2128
|
_Cell$() {
|
|
2119
2129
|
var t1 = new A._Cell("");
|
|
2120
2130
|
return t1._value = t1;
|
|
@@ -2123,19 +2133,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
2123
2133
|
var t1 = new A._Cell(_name);
|
|
2124
2134
|
return t1._value = t1;
|
|
2125
2135
|
},
|
|
2126
|
-
_lateReadCheck(value, $name) {
|
|
2127
|
-
if (value === $)
|
|
2128
|
-
throw A.wrapException(new A.LateError("Field '" + $name + "' has not been initialized."));
|
|
2129
|
-
return value;
|
|
2130
|
-
},
|
|
2131
|
-
_lateWriteOnceCheck(value, $name) {
|
|
2132
|
-
if (value !== $)
|
|
2133
|
-
throw A.wrapException(new A.LateError("Field '" + $name + "' has already been initialized."));
|
|
2134
|
-
},
|
|
2135
|
-
_lateInitializeOnceCheck(value, $name) {
|
|
2136
|
-
if (value !== $)
|
|
2137
|
-
throw A.wrapException(A.LateError$fieldADI($name));
|
|
2138
|
-
},
|
|
2139
2136
|
_Cell: function _Cell(t0) {
|
|
2140
2137
|
this.__late_helper$_name = t0;
|
|
2141
2138
|
this._value = null;
|
|
@@ -4461,15 +4458,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
4461
4458
|
_DelayedDone: function _DelayedDone() {
|
|
4462
4459
|
},
|
|
4463
4460
|
_PendingEvents: function _PendingEvents() {
|
|
4461
|
+
this._state = 0;
|
|
4462
|
+
this.lastPendingEvent = this.firstPendingEvent = null;
|
|
4464
4463
|
},
|
|
4465
4464
|
_PendingEvents_schedule_closure: function _PendingEvents_schedule_closure(t0, t1) {
|
|
4466
4465
|
this.$this = t0;
|
|
4467
4466
|
this.dispatch = t1;
|
|
4468
4467
|
},
|
|
4469
|
-
_StreamImplEvents: function _StreamImplEvents() {
|
|
4470
|
-
this.lastPendingEvent = this.firstPendingEvent = null;
|
|
4471
|
-
this._state = 0;
|
|
4472
|
-
},
|
|
4473
4468
|
_StreamIterator: function _StreamIterator(t0) {
|
|
4474
4469
|
this._subscription = null;
|
|
4475
4470
|
this._stateData = t0;
|
|
@@ -4498,30 +4493,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
4498
4493
|
this.zone = t0;
|
|
4499
4494
|
this.$function = t1;
|
|
4500
4495
|
},
|
|
4501
|
-
_RunNullaryZoneFunction: function _RunNullaryZoneFunction(t0, t1) {
|
|
4502
|
-
this.zone = t0;
|
|
4503
|
-
this.$function = t1;
|
|
4504
|
-
},
|
|
4505
|
-
_RunUnaryZoneFunction: function _RunUnaryZoneFunction(t0, t1) {
|
|
4506
|
-
this.zone = t0;
|
|
4507
|
-
this.$function = t1;
|
|
4508
|
-
},
|
|
4509
|
-
_RunBinaryZoneFunction: function _RunBinaryZoneFunction(t0, t1) {
|
|
4510
|
-
this.zone = t0;
|
|
4511
|
-
this.$function = t1;
|
|
4512
|
-
},
|
|
4513
|
-
_RegisterNullaryZoneFunction: function _RegisterNullaryZoneFunction(t0, t1) {
|
|
4514
|
-
this.zone = t0;
|
|
4515
|
-
this.$function = t1;
|
|
4516
|
-
},
|
|
4517
|
-
_RegisterUnaryZoneFunction: function _RegisterUnaryZoneFunction(t0, t1) {
|
|
4518
|
-
this.zone = t0;
|
|
4519
|
-
this.$function = t1;
|
|
4520
|
-
},
|
|
4521
|
-
_RegisterBinaryZoneFunction: function _RegisterBinaryZoneFunction(t0, t1) {
|
|
4522
|
-
this.zone = t0;
|
|
4523
|
-
this.$function = t1;
|
|
4524
|
-
},
|
|
4525
4496
|
_ZoneSpecification: function _ZoneSpecification(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12) {
|
|
4526
4497
|
var _ = this;
|
|
4527
4498
|
_.handleUncaughtError = t0;
|
|
@@ -5275,8 +5246,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
5275
5246
|
return new A.Expando(new WeakMap());
|
|
5276
5247
|
},
|
|
5277
5248
|
Expando__checkType(object) {
|
|
5278
|
-
|
|
5279
|
-
if (t1)
|
|
5249
|
+
if (A._isBool(object) || typeof object == "number" || typeof object == "string")
|
|
5280
5250
|
throw A.wrapException(A.ArgumentError$value(object, string$.Expand, null));
|
|
5281
5251
|
},
|
|
5282
5252
|
int_parse(source, radix) {
|
|
@@ -5906,15 +5876,16 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
5906
5876
|
}
|
|
5907
5877
|
},
|
|
5908
5878
|
_Uri__checkWindowsPathReservedCharacters(segments, argumentError, firstSegment) {
|
|
5909
|
-
var t1, t2, t3, t4;
|
|
5910
|
-
for (t1 = A.SubListIterable$(segments, firstSegment,
|
|
5879
|
+
var t1, t2, t3, t4, t5, _null = null;
|
|
5880
|
+
for (t1 = A.SubListIterable$(segments, firstSegment, _null, A._arrayInstanceType(segments)._precomputed1), t1 = new A.ListIterator(t1, t1.get$length(t1)), t2 = A._instanceType(t1)._precomputed1; t1.moveNext$0();) {
|
|
5911
5881
|
t3 = t1.__internal$_current;
|
|
5912
5882
|
if (t3 == null)
|
|
5913
5883
|
t3 = t2._as(t3);
|
|
5914
5884
|
t4 = A.RegExp_RegExp('["*/:<>?\\\\|]', false);
|
|
5885
|
+
t5 = t3.length;
|
|
5915
5886
|
if (A.stringContainsUnchecked(t3, t4, 0))
|
|
5916
5887
|
if (argumentError)
|
|
5917
|
-
throw A.wrapException(A.ArgumentError$("Illegal character in path",
|
|
5888
|
+
throw A.wrapException(A.ArgumentError$("Illegal character in path", _null));
|
|
5918
5889
|
else
|
|
5919
5890
|
throw A.wrapException(A.UnsupportedError$("Illegal character in path: " + t3));
|
|
5920
5891
|
}
|
|
@@ -6934,7 +6905,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
6934
6905
|
_.path = t4;
|
|
6935
6906
|
_._query = t5;
|
|
6936
6907
|
_._fragment = t6;
|
|
6937
|
-
_.
|
|
6908
|
+
_.___Uri_hashCode_FI = _.___Uri_pathSegments_FI = _.___Uri__text_FI = $;
|
|
6938
6909
|
},
|
|
6939
6910
|
_Uri__makePath_closure: function _Uri__makePath_closure() {
|
|
6940
6911
|
},
|
|
@@ -6971,7 +6942,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
6971
6942
|
_.path = t4;
|
|
6972
6943
|
_._query = t5;
|
|
6973
6944
|
_._fragment = t6;
|
|
6974
|
-
_.
|
|
6945
|
+
_.___Uri_hashCode_FI = _.___Uri_pathSegments_FI = _.___Uri__text_FI = $;
|
|
6975
6946
|
},
|
|
6976
6947
|
Expando: function Expando(t0) {
|
|
6977
6948
|
this._jsWeakMap = t0;
|
|
@@ -7101,7 +7072,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
7101
7072
|
_._usage$_optionsAndSeparators = t0;
|
|
7102
7073
|
_._buffer = t1;
|
|
7103
7074
|
_._currentColumn = 0;
|
|
7104
|
-
_.
|
|
7075
|
+
_.___Usage__columnWidths_FI = $;
|
|
7105
7076
|
_._newlinesNeeded = 0;
|
|
7106
7077
|
_.lineLength = t2;
|
|
7107
7078
|
},
|
|
@@ -7128,7 +7099,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
7128
7099
|
},
|
|
7129
7100
|
StreamGroup: function StreamGroup(t0, t1, t2) {
|
|
7130
7101
|
var _ = this;
|
|
7131
|
-
_.
|
|
7102
|
+
_.__StreamGroup__controller_A = $;
|
|
7132
7103
|
_._closed = false;
|
|
7133
7104
|
_._stream_group$_state = t0;
|
|
7134
7105
|
_._subscriptions = t1;
|
|
@@ -7180,7 +7151,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
7180
7151
|
_.prompt = t0;
|
|
7181
7152
|
_.continuation = t1;
|
|
7182
7153
|
_.validator = t2;
|
|
7183
|
-
_.
|
|
7154
|
+
_.__Repl__adapter_A = $;
|
|
7184
7155
|
_.history = t3;
|
|
7185
7156
|
},
|
|
7186
7157
|
alwaysValid_closure: function alwaysValid_closure() {
|
|
@@ -7419,6 +7390,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
7419
7390
|
return A._convertDataTree(dartObject);
|
|
7420
7391
|
},
|
|
7421
7392
|
_isBasicType(value) {
|
|
7393
|
+
var t1 = false;
|
|
7394
|
+
if (t1)
|
|
7395
|
+
return true;
|
|
7422
7396
|
return false;
|
|
7423
7397
|
},
|
|
7424
7398
|
promiseToFuture(promise, $T) {
|
|
@@ -8218,7 +8192,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8218
8192
|
},
|
|
8219
8193
|
MixinRule: function MixinRule(t0, t1, t2, t3, t4) {
|
|
8220
8194
|
var _ = this;
|
|
8221
|
-
_.
|
|
8195
|
+
_.__MixinRule_hasContent_FI = $;
|
|
8222
8196
|
_.name = t0;
|
|
8223
8197
|
_.$arguments = t1;
|
|
8224
8198
|
_.span = t2;
|
|
@@ -8429,7 +8403,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8429
8403
|
_.leadingCombinators = t0;
|
|
8430
8404
|
_.components = t1;
|
|
8431
8405
|
_.lineBreak = t2;
|
|
8432
|
-
_.
|
|
8406
|
+
_.__ComplexSelector_specificity_FI = $;
|
|
8433
8407
|
},
|
|
8434
8408
|
ComplexSelector_specificity_closure: function ComplexSelector_specificity_closure() {
|
|
8435
8409
|
},
|
|
@@ -8447,7 +8421,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8447
8421
|
},
|
|
8448
8422
|
CompoundSelector: function CompoundSelector(t0) {
|
|
8449
8423
|
this.components = t0;
|
|
8450
|
-
this.
|
|
8424
|
+
this.__CompoundSelector_specificity_FI = $;
|
|
8451
8425
|
},
|
|
8452
8426
|
CompoundSelector_specificity_closure: function CompoundSelector_specificity_closure() {
|
|
8453
8427
|
},
|
|
@@ -8530,7 +8504,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8530
8504
|
_.isSyntacticClass = t3;
|
|
8531
8505
|
_.argument = t4;
|
|
8532
8506
|
_.selector = t5;
|
|
8533
|
-
_.
|
|
8507
|
+
_.__PseudoSelector_specificity_FI = $;
|
|
8534
8508
|
},
|
|
8535
8509
|
PseudoSelector_specificity_closure: function PseudoSelector_specificity_closure(t0) {
|
|
8536
8510
|
this.$this = t0;
|
|
@@ -8713,7 +8687,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8713
8687
|
_EnvironmentModule__EnvironmentModule0(environment, css, extensionStore, forwarded) {
|
|
8714
8688
|
var t1, t2, t3, t4, t5, t6;
|
|
8715
8689
|
if (forwarded == null)
|
|
8716
|
-
forwarded = B.
|
|
8690
|
+
forwarded = B.Set_empty1;
|
|
8717
8691
|
t1 = A._EnvironmentModule__makeModulesByVariable0(forwarded);
|
|
8718
8692
|
t2 = A._EnvironmentModule__memberMap0(B.JSArray_methods.get$first(environment._async_environment$_variables), forwarded.map$1$1(0, new A._EnvironmentModule__EnvironmentModule_closure5(), type$.Map_String_Value), type$.Value);
|
|
8719
8693
|
t3 = A._EnvironmentModule__memberMap0(B.JSArray_methods.get$first(environment._async_environment$_variableNodes), forwarded.map$1$1(0, new A._EnvironmentModule__EnvironmentModule_closure6(), type$.Map_String_AstNode), type$.AstNode);
|
|
@@ -8924,15 +8898,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8924
8898
|
this.callback = t0;
|
|
8925
8899
|
},
|
|
8926
8900
|
BuiltInCallable$function($name, $arguments, callback, url) {
|
|
8927
|
-
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.
|
|
8901
|
+
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
|
|
8928
8902
|
},
|
|
8929
8903
|
BuiltInCallable$mixin($name, $arguments, callback, url) {
|
|
8930
|
-
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure(callback), type$.
|
|
8904
|
+
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure(callback), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
|
|
8931
8905
|
},
|
|
8932
8906
|
BuiltInCallable$overloadedFunction($name, overloads) {
|
|
8933
8907
|
var t2, t3, t4, t5, t6, t7, t8,
|
|
8934
|
-
t1 = A._setArrayType([], type$.
|
|
8935
|
-
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.
|
|
8908
|
+
t1 = A._setArrayType([], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2);
|
|
8909
|
+
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2, t4 = "@function " + $name + "(", t5 = type$.String, t6 = type$.VariableDeclaration; t2.moveNext$0();) {
|
|
8936
8910
|
t7 = t2.get$current(t2);
|
|
8937
8911
|
t8 = A.SpanScanner$(t4 + A.S(t7.key) + ") {", null);
|
|
8938
8912
|
t1.push(new A.Tuple2(new A.ScssParser(A.LinkedHashMap_LinkedHashMap$_empty(t5, t6), t8, B.StderrLogger_false).parseArgumentDeclaration$0(), t7.value, t3));
|
|
@@ -9196,7 +9170,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9196
9170
|
compileStylesheet$body(options, graph, source, destination, ifModified) {
|
|
9197
9171
|
var $async$goto = 0,
|
|
9198
9172
|
$async$completer = A._makeAsyncAwaitCompleter(type$.void),
|
|
9199
|
-
$async$returnValue, $async$handler = 2, $async$currentError,
|
|
9173
|
+
$async$returnValue, $async$handler = 2, $async$currentError, syntax, result, importCache, error, exception, t2, t3, t4, t5, t6, t7, t8, t9, result0, logger, terseLogger, stylesheet, css, buffer, sourceName, t1, importer, $async$exception;
|
|
9200
9174
|
var $async$compileStylesheet = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
9201
9175
|
if ($async$errorCode === 1) {
|
|
9202
9176
|
$async$currentError = $async$result;
|
|
@@ -9490,9 +9464,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9490
9464
|
ExecutableOptions: function ExecutableOptions(t0) {
|
|
9491
9465
|
var _ = this;
|
|
9492
9466
|
_._options = t0;
|
|
9493
|
-
_.
|
|
9467
|
+
_.__ExecutableOptions_interactive_FI = $;
|
|
9494
9468
|
_._sourcesToDestinations = null;
|
|
9495
|
-
_.
|
|
9469
|
+
_.__ExecutableOptions__sourceDirectoriesToDestinations_F = $;
|
|
9496
9470
|
},
|
|
9497
9471
|
ExecutableOptions__parser_closure: function ExecutableOptions__parser_closure() {
|
|
9498
9472
|
},
|
|
@@ -9519,27 +9493,29 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9519
9493
|
case 0:
|
|
9520
9494
|
// Function start
|
|
9521
9495
|
options._ensureSources$0();
|
|
9522
|
-
t1 =
|
|
9523
|
-
|
|
9524
|
-
t2 =
|
|
9525
|
-
|
|
9496
|
+
t1 = options.__ExecutableOptions__sourceDirectoriesToDestinations_F;
|
|
9497
|
+
t1 === $ && A.throwUnnamedLateFieldNI();
|
|
9498
|
+
t2 = type$.String;
|
|
9499
|
+
t1 = t1.cast$2$0(0, t2, t2);
|
|
9500
|
+
t1 = A.List_List$of(t1.get$keys(t1), true, t2);
|
|
9501
|
+
for (options._ensureSources$0(), t3 = options._sourcesToDestinations.cast$2$0(0, t2, t2), t3 = J.get$iterator$ax(t3.get$keys(t3)); t3.moveNext$0();) {
|
|
9526
9502
|
t4 = t3.get$current(t3);
|
|
9527
|
-
|
|
9503
|
+
t1.push($.$get$context().dirname$1(t4));
|
|
9528
9504
|
}
|
|
9529
9505
|
t3 = options._options;
|
|
9530
|
-
B.JSArray_methods.addAll$1(
|
|
9506
|
+
B.JSArray_methods.addAll$1(t1, type$.List_String._as(t3.$index(0, "load-path")));
|
|
9531
9507
|
t4 = A._asBool(t3.$index(0, "poll"));
|
|
9532
9508
|
t5 = type$.Stream_WatchEvent;
|
|
9533
9509
|
t6 = A.PathMap__create(null, t5);
|
|
9534
9510
|
t5 = new A.StreamGroup(B._StreamGroupState_dormant, A.LinkedHashMap_LinkedHashMap$_empty(t5, type$.nullable_StreamSubscription_WatchEvent), type$.StreamGroup_WatchEvent);
|
|
9535
|
-
t5.
|
|
9511
|
+
t5.__StreamGroup__controller_A = A.StreamController_StreamController(t5.get$_onCancel(), t5.get$_onListen(), t5.get$_onPause(), t5.get$_onResume(), true, type$.WatchEvent);
|
|
9536
9512
|
dirWatcher = new A.MultiDirWatcher(new A.PathMap(t6, type$.PathMap_Stream_WatchEvent), t5, t4);
|
|
9537
9513
|
$async$goto = 3;
|
|
9538
|
-
return A._asyncAwait(A.Future_wait(new A.MappedListIterable(
|
|
9514
|
+
return A._asyncAwait(A.Future_wait(new A.MappedListIterable(t1, new A.watch_closure(dirWatcher), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,Future<~>>")), type$.void), $async$watch);
|
|
9539
9515
|
case 3:
|
|
9540
9516
|
// returning from await.
|
|
9541
9517
|
watcher = new A._Watcher(options, graph);
|
|
9542
|
-
options._ensureSources$0(), t1 = options._sourcesToDestinations.cast$2$0(0,
|
|
9518
|
+
options._ensureSources$0(), t1 = options._sourcesToDestinations.cast$2$0(0, t2, t2), t1 = t1.get$entries(t1), t1 = t1.get$iterator(t1);
|
|
9543
9519
|
case 4:
|
|
9544
9520
|
// for condition
|
|
9545
9521
|
if (!t1.moveNext$0()) {
|
|
@@ -9557,7 +9533,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9557
9533
|
case 6:
|
|
9558
9534
|
// returning from await.
|
|
9559
9535
|
if (!$async$result && A._asBool(t3.$index(0, "stop-on-error"))) {
|
|
9560
|
-
t1 =
|
|
9536
|
+
t1 = dirWatcher._group.__StreamGroup__controller_A;
|
|
9537
|
+
t1 === $ && A.throwUnnamedLateFieldNI();
|
|
9561
9538
|
t1._subscribe$4(null, null, null, false).cancel$0();
|
|
9562
9539
|
// goto return
|
|
9563
9540
|
$async$goto = 1;
|
|
@@ -11662,8 +11639,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
11662
11639
|
return !t1 ? map : A.LimitedMapView$blocklist(map, blocklist, type$.String, $V);
|
|
11663
11640
|
},
|
|
11664
11641
|
ShadowedModuleView__needsBlocklist(map, blocklist) {
|
|
11665
|
-
|
|
11666
|
-
return t1;
|
|
11642
|
+
return map.get$isNotEmpty(map) && blocklist.any$1(0, map.get$containsKey());
|
|
11667
11643
|
},
|
|
11668
11644
|
ShadowedModuleView: function ShadowedModuleView(t0, t1, t2, t3, t4, t5) {
|
|
11669
11645
|
var _ = this;
|
|
@@ -13018,7 +12994,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
13018
12994
|
var _ = this;
|
|
13019
12995
|
_._string$_text = t0;
|
|
13020
12996
|
_._hasQuotes = t1;
|
|
13021
|
-
_.
|
|
12997
|
+
_.__SassString__sassLength_FI = $;
|
|
13022
12998
|
_._hashCache = null;
|
|
13023
12999
|
},
|
|
13024
13000
|
AnySelectorVisitor: function AnySelectorVisitor() {
|
|
@@ -13052,7 +13028,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
13052
13028
|
_._async_evaluate$_quietDeps = t9;
|
|
13053
13029
|
_._async_evaluate$_sourceMap = t10;
|
|
13054
13030
|
_._async_evaluate$_environment = t11;
|
|
13055
|
-
_._async_evaluate$_declarationName = _._async_evaluate$__parent = _._async_evaluate$_mediaQueries = _._async_evaluate$_styleRuleIgnoringAtRoot = null;
|
|
13031
|
+
_._async_evaluate$_declarationName = _._async_evaluate$__parent = _._async_evaluate$_mediaQuerySources = _._async_evaluate$_mediaQueries = _._async_evaluate$_styleRuleIgnoringAtRoot = null;
|
|
13056
13032
|
_._async_evaluate$_member = "root stylesheet";
|
|
13057
13033
|
_._async_evaluate$_importSpan = _._async_evaluate$_callableNode = _._async_evaluate$_currentCallable = null;
|
|
13058
13034
|
_._async_evaluate$_inSupportsDeclaration = _._async_evaluate$_inKeyframes = _._async_evaluate$_atRootExcludingStyleRule = _._async_evaluate$_inUnknownAtRule = _._async_evaluate$_inFunction = false;
|
|
@@ -13344,12 +13320,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
13344
13320
|
this.$this = t0;
|
|
13345
13321
|
this.queries = t1;
|
|
13346
13322
|
},
|
|
13347
|
-
_EvaluateVisitor_visitMediaRule_closure3: function _EvaluateVisitor_visitMediaRule_closure3(t0, t1, t2, t3) {
|
|
13323
|
+
_EvaluateVisitor_visitMediaRule_closure3: function _EvaluateVisitor_visitMediaRule_closure3(t0, t1, t2, t3, t4) {
|
|
13348
13324
|
var _ = this;
|
|
13349
13325
|
_.$this = t0;
|
|
13350
13326
|
_.mergedQueries = t1;
|
|
13351
13327
|
_.queries = t2;
|
|
13352
|
-
_.
|
|
13328
|
+
_.mergedSources = t3;
|
|
13329
|
+
_.node = t4;
|
|
13353
13330
|
},
|
|
13354
13331
|
_EvaluateVisitor_visitMediaRule__closure0: function _EvaluateVisitor_visitMediaRule__closure0(t0, t1) {
|
|
13355
13332
|
this.$this = t0;
|
|
@@ -13360,7 +13337,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
13360
13337
|
this.node = t1;
|
|
13361
13338
|
},
|
|
13362
13339
|
_EvaluateVisitor_visitMediaRule_closure4: function _EvaluateVisitor_visitMediaRule_closure4(t0) {
|
|
13363
|
-
this.
|
|
13340
|
+
this.mergedSources = t0;
|
|
13364
13341
|
},
|
|
13365
13342
|
_EvaluateVisitor__visitMediaQueries_closure0: function _EvaluateVisitor__visitMediaQueries_closure0(t0, t1) {
|
|
13366
13343
|
this.$this = t0;
|
|
@@ -13580,10 +13557,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
13580
13557
|
this.$this = t0;
|
|
13581
13558
|
this.node = t1;
|
|
13582
13559
|
},
|
|
13583
|
-
_EvaluateVisitor_visitCssMediaRule_closure3: function _EvaluateVisitor_visitCssMediaRule_closure3(t0, t1, t2) {
|
|
13584
|
-
|
|
13585
|
-
this
|
|
13586
|
-
|
|
13560
|
+
_EvaluateVisitor_visitCssMediaRule_closure3: function _EvaluateVisitor_visitCssMediaRule_closure3(t0, t1, t2, t3) {
|
|
13561
|
+
var _ = this;
|
|
13562
|
+
_.$this = t0;
|
|
13563
|
+
_.mergedQueries = t1;
|
|
13564
|
+
_.node = t2;
|
|
13565
|
+
_.mergedSources = t3;
|
|
13587
13566
|
},
|
|
13588
13567
|
_EvaluateVisitor_visitCssMediaRule__closure0: function _EvaluateVisitor_visitCssMediaRule__closure0(t0, t1) {
|
|
13589
13568
|
this.$this = t0;
|
|
@@ -13594,7 +13573,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
13594
13573
|
this.node = t1;
|
|
13595
13574
|
},
|
|
13596
13575
|
_EvaluateVisitor_visitCssMediaRule_closure4: function _EvaluateVisitor_visitCssMediaRule_closure4(t0) {
|
|
13597
|
-
this.
|
|
13576
|
+
this.mergedSources = t0;
|
|
13598
13577
|
},
|
|
13599
13578
|
_EvaluateVisitor_visitCssStyleRule_closure1: function _EvaluateVisitor_visitCssStyleRule_closure1(t0, t1, t2) {
|
|
13600
13579
|
this.$this = t0;
|
|
@@ -13704,7 +13683,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
13704
13683
|
_._quietDeps = t9;
|
|
13705
13684
|
_._sourceMap = t10;
|
|
13706
13685
|
_._environment = t11;
|
|
13707
|
-
_._declarationName = _.__parent = _._mediaQueries = _._styleRuleIgnoringAtRoot = null;
|
|
13686
|
+
_._declarationName = _.__parent = _._mediaQuerySources = _._mediaQueries = _._styleRuleIgnoringAtRoot = null;
|
|
13708
13687
|
_._member = "root stylesheet";
|
|
13709
13688
|
_._importSpan = _._callableNode = _._currentCallable = null;
|
|
13710
13689
|
_._inSupportsDeclaration = _._inKeyframes = _._atRootExcludingStyleRule = _._inUnknownAtRule = _._inFunction = false;
|
|
@@ -14014,12 +13993,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
14014
13993
|
this.$this = t0;
|
|
14015
13994
|
this.queries = t1;
|
|
14016
13995
|
},
|
|
14017
|
-
_EvaluateVisitor_visitMediaRule_closure0: function _EvaluateVisitor_visitMediaRule_closure0(t0, t1, t2, t3) {
|
|
13996
|
+
_EvaluateVisitor_visitMediaRule_closure0: function _EvaluateVisitor_visitMediaRule_closure0(t0, t1, t2, t3, t4) {
|
|
14018
13997
|
var _ = this;
|
|
14019
13998
|
_.$this = t0;
|
|
14020
13999
|
_.mergedQueries = t1;
|
|
14021
14000
|
_.queries = t2;
|
|
14022
|
-
_.
|
|
14001
|
+
_.mergedSources = t3;
|
|
14002
|
+
_.node = t4;
|
|
14023
14003
|
},
|
|
14024
14004
|
_EvaluateVisitor_visitMediaRule__closure: function _EvaluateVisitor_visitMediaRule__closure(t0, t1) {
|
|
14025
14005
|
this.$this = t0;
|
|
@@ -14030,7 +14010,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
14030
14010
|
this.node = t1;
|
|
14031
14011
|
},
|
|
14032
14012
|
_EvaluateVisitor_visitMediaRule_closure1: function _EvaluateVisitor_visitMediaRule_closure1(t0) {
|
|
14033
|
-
this.
|
|
14013
|
+
this.mergedSources = t0;
|
|
14034
14014
|
},
|
|
14035
14015
|
_EvaluateVisitor__visitMediaQueries_closure: function _EvaluateVisitor__visitMediaQueries_closure(t0, t1) {
|
|
14036
14016
|
this.$this = t0;
|
|
@@ -14250,10 +14230,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
14250
14230
|
this.$this = t0;
|
|
14251
14231
|
this.node = t1;
|
|
14252
14232
|
},
|
|
14253
|
-
_EvaluateVisitor_visitCssMediaRule_closure0: function _EvaluateVisitor_visitCssMediaRule_closure0(t0, t1, t2) {
|
|
14254
|
-
|
|
14255
|
-
this
|
|
14256
|
-
|
|
14233
|
+
_EvaluateVisitor_visitCssMediaRule_closure0: function _EvaluateVisitor_visitCssMediaRule_closure0(t0, t1, t2, t3) {
|
|
14234
|
+
var _ = this;
|
|
14235
|
+
_.$this = t0;
|
|
14236
|
+
_.mergedQueries = t1;
|
|
14237
|
+
_.node = t2;
|
|
14238
|
+
_.mergedSources = t3;
|
|
14257
14239
|
},
|
|
14258
14240
|
_EvaluateVisitor_visitCssMediaRule__closure: function _EvaluateVisitor_visitCssMediaRule__closure(t0, t1) {
|
|
14259
14241
|
this.$this = t0;
|
|
@@ -14264,7 +14246,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
14264
14246
|
this.node = t1;
|
|
14265
14247
|
},
|
|
14266
14248
|
_EvaluateVisitor_visitCssMediaRule_closure1: function _EvaluateVisitor_visitCssMediaRule_closure1(t0) {
|
|
14267
|
-
this.
|
|
14249
|
+
this.mergedSources = t0;
|
|
14268
14250
|
},
|
|
14269
14251
|
_EvaluateVisitor_visitCssStyleRule_closure: function _EvaluateVisitor_visitCssStyleRule_closure(t0, t1, t2) {
|
|
14270
14252
|
this.$this = t0;
|
|
@@ -15067,7 +15049,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
15067
15049
|
},
|
|
15068
15050
|
LazyTrace: function LazyTrace(t0) {
|
|
15069
15051
|
this._thunk = t0;
|
|
15070
|
-
this.
|
|
15052
|
+
this.__LazyTrace__trace_FI = $;
|
|
15071
15053
|
},
|
|
15072
15054
|
LazyTrace_terse_closure: function LazyTrace_terse_closure(t0) {
|
|
15073
15055
|
this.$this = t0;
|
|
@@ -15597,7 +15579,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
15597
15579
|
_EnvironmentModule__EnvironmentModule2(environment, css, extensionStore, forwarded) {
|
|
15598
15580
|
var t1, t2, t3, t4, t5, t6;
|
|
15599
15581
|
if (forwarded == null)
|
|
15600
|
-
forwarded = B.
|
|
15582
|
+
forwarded = B.Set_empty5;
|
|
15601
15583
|
t1 = A._EnvironmentModule__makeModulesByVariable2(forwarded);
|
|
15602
15584
|
t2 = A._EnvironmentModule__memberMap2(B.JSArray_methods.get$first(environment._async_environment0$_variables), forwarded.map$1$1(0, new A._EnvironmentModule__EnvironmentModule_closure17(), type$.Map_String_Value_2), type$.Value_2);
|
|
15603
15585
|
t3 = A._EnvironmentModule__memberMap2(B.JSArray_methods.get$first(environment._async_environment0$_variableNodes), forwarded.map$1$1(0, new A._EnvironmentModule__EnvironmentModule_closure18(), type$.Map_String_AstNode_2), type$.AstNode_2);
|
|
@@ -15760,7 +15742,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
15760
15742
|
_._async_evaluate0$_quietDeps = t9;
|
|
15761
15743
|
_._async_evaluate0$_sourceMap = t10;
|
|
15762
15744
|
_._async_evaluate0$_environment = t11;
|
|
15763
|
-
_._async_evaluate0$_declarationName = _._async_evaluate0$__parent = _._async_evaluate0$_mediaQueries = _._async_evaluate0$_styleRuleIgnoringAtRoot = null;
|
|
15745
|
+
_._async_evaluate0$_declarationName = _._async_evaluate0$__parent = _._async_evaluate0$_mediaQuerySources = _._async_evaluate0$_mediaQueries = _._async_evaluate0$_styleRuleIgnoringAtRoot = null;
|
|
15764
15746
|
_._async_evaluate0$_member = "root stylesheet";
|
|
15765
15747
|
_._async_evaluate0$_importSpan = _._async_evaluate0$_callableNode = _._async_evaluate0$_currentCallable = null;
|
|
15766
15748
|
_._async_evaluate0$_inSupportsDeclaration = _._async_evaluate0$_inKeyframes = _._async_evaluate0$_atRootExcludingStyleRule = _._async_evaluate0$_inUnknownAtRule = _._async_evaluate0$_inFunction = false;
|
|
@@ -16052,12 +16034,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16052
16034
|
this.$this = t0;
|
|
16053
16035
|
this.queries = t1;
|
|
16054
16036
|
},
|
|
16055
|
-
_EvaluateVisitor_visitMediaRule_closure9: function _EvaluateVisitor_visitMediaRule_closure9(t0, t1, t2, t3) {
|
|
16037
|
+
_EvaluateVisitor_visitMediaRule_closure9: function _EvaluateVisitor_visitMediaRule_closure9(t0, t1, t2, t3, t4) {
|
|
16056
16038
|
var _ = this;
|
|
16057
16039
|
_.$this = t0;
|
|
16058
16040
|
_.mergedQueries = t1;
|
|
16059
16041
|
_.queries = t2;
|
|
16060
|
-
_.
|
|
16042
|
+
_.mergedSources = t3;
|
|
16043
|
+
_.node = t4;
|
|
16061
16044
|
},
|
|
16062
16045
|
_EvaluateVisitor_visitMediaRule__closure2: function _EvaluateVisitor_visitMediaRule__closure2(t0, t1) {
|
|
16063
16046
|
this.$this = t0;
|
|
@@ -16068,7 +16051,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16068
16051
|
this.node = t1;
|
|
16069
16052
|
},
|
|
16070
16053
|
_EvaluateVisitor_visitMediaRule_closure10: function _EvaluateVisitor_visitMediaRule_closure10(t0) {
|
|
16071
|
-
this.
|
|
16054
|
+
this.mergedSources = t0;
|
|
16072
16055
|
},
|
|
16073
16056
|
_EvaluateVisitor__visitMediaQueries_closure2: function _EvaluateVisitor__visitMediaQueries_closure2(t0, t1) {
|
|
16074
16057
|
this.$this = t0;
|
|
@@ -16288,10 +16271,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16288
16271
|
this.$this = t0;
|
|
16289
16272
|
this.node = t1;
|
|
16290
16273
|
},
|
|
16291
|
-
_EvaluateVisitor_visitCssMediaRule_closure9: function _EvaluateVisitor_visitCssMediaRule_closure9(t0, t1, t2) {
|
|
16292
|
-
|
|
16293
|
-
this
|
|
16294
|
-
|
|
16274
|
+
_EvaluateVisitor_visitCssMediaRule_closure9: function _EvaluateVisitor_visitCssMediaRule_closure9(t0, t1, t2, t3) {
|
|
16275
|
+
var _ = this;
|
|
16276
|
+
_.$this = t0;
|
|
16277
|
+
_.mergedQueries = t1;
|
|
16278
|
+
_.node = t2;
|
|
16279
|
+
_.mergedSources = t3;
|
|
16295
16280
|
},
|
|
16296
16281
|
_EvaluateVisitor_visitCssMediaRule__closure2: function _EvaluateVisitor_visitCssMediaRule__closure2(t0, t1) {
|
|
16297
16282
|
this.$this = t0;
|
|
@@ -16302,7 +16287,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16302
16287
|
this.node = t1;
|
|
16303
16288
|
},
|
|
16304
16289
|
_EvaluateVisitor_visitCssMediaRule_closure10: function _EvaluateVisitor_visitCssMediaRule_closure10(t0) {
|
|
16305
|
-
this.
|
|
16290
|
+
this.mergedSources = t0;
|
|
16306
16291
|
},
|
|
16307
16292
|
_EvaluateVisitor_visitCssStyleRule_closure5: function _EvaluateVisitor_visitCssStyleRule_closure5(t0, t1, t2) {
|
|
16308
16293
|
this.$this = t0;
|
|
@@ -16556,18 +16541,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16556
16541
|
this.value = t0;
|
|
16557
16542
|
},
|
|
16558
16543
|
BuiltInCallable$function0($name, $arguments, callback, url) {
|
|
16559
|
-
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.
|
|
16544
|
+
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value));
|
|
16560
16545
|
},
|
|
16561
16546
|
BuiltInCallable$mixin0($name, $arguments, callback, url) {
|
|
16562
|
-
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure0(callback), type$.
|
|
16563
|
-
},
|
|
16564
|
-
BuiltInCallable$parsed($name, $arguments, callback) {
|
|
16565
|
-
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2($arguments, callback, type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
|
|
16547
|
+
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure0(callback), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value));
|
|
16566
16548
|
},
|
|
16567
16549
|
BuiltInCallable$overloadedFunction0($name, overloads) {
|
|
16568
16550
|
var t2, t3, t4, t5, t6, t7, t8,
|
|
16569
|
-
t1 = A._setArrayType([], type$.
|
|
16570
|
-
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.
|
|
16551
|
+
t1 = A._setArrayType([], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value);
|
|
16552
|
+
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value, t4 = "@function " + $name + "(", t5 = type$.String, t6 = type$.VariableDeclaration_2; t2.moveNext$0();) {
|
|
16571
16553
|
t7 = t2.get$current(t2);
|
|
16572
16554
|
t8 = A.SpanScanner$(t4 + A.S(t7.key) + ") {", null);
|
|
16573
16555
|
t1.push(new A.Tuple2(new A.ScssParser0(A.LinkedHashMap_LinkedHashMap$_empty(t5, t6), t8, B.StderrLogger_false0).parseArgumentDeclaration$0(), t7.value, t3));
|
|
@@ -17749,7 +17731,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
17749
17731
|
_.leadingCombinators = t0;
|
|
17750
17732
|
_.components = t1;
|
|
17751
17733
|
_.lineBreak = t2;
|
|
17752
|
-
_._complex$
|
|
17734
|
+
_._complex$__ComplexSelector_specificity_FI = $;
|
|
17753
17735
|
},
|
|
17754
17736
|
ComplexSelector_specificity_closure0: function ComplexSelector_specificity_closure0() {
|
|
17755
17737
|
},
|
|
@@ -17767,7 +17749,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
17767
17749
|
},
|
|
17768
17750
|
CompoundSelector0: function CompoundSelector0(t0) {
|
|
17769
17751
|
this.components = t0;
|
|
17770
|
-
this._compound$
|
|
17752
|
+
this._compound$__CompoundSelector_specificity_FI = $;
|
|
17771
17753
|
},
|
|
17772
17754
|
CompoundSelector_specificity_closure0: function CompoundSelector_specificity_closure0() {
|
|
17773
17755
|
},
|
|
@@ -17909,7 +17891,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
17909
17891
|
_EnvironmentModule__EnvironmentModule1(environment, css, extensionStore, forwarded) {
|
|
17910
17892
|
var t1, t2, t3, t4, t5, t6;
|
|
17911
17893
|
if (forwarded == null)
|
|
17912
|
-
forwarded = B.
|
|
17894
|
+
forwarded = B.Set_empty3;
|
|
17913
17895
|
t1 = A._EnvironmentModule__makeModulesByVariable1(forwarded);
|
|
17914
17896
|
t2 = A._EnvironmentModule__memberMap1(B.JSArray_methods.get$first(environment._environment0$_variables), forwarded.map$1$1(0, new A._EnvironmentModule__EnvironmentModule_closure11(), type$.Map_String_Value_2), type$.Value_2);
|
|
17915
17897
|
t3 = A._EnvironmentModule__memberMap1(B.JSArray_methods.get$first(environment._environment0$_variableNodes), forwarded.map$1$1(0, new A._EnvironmentModule__EnvironmentModule_closure12(), type$.Map_String_AstNode_2), type$.AstNode_2);
|
|
@@ -18076,7 +18058,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
18076
18058
|
_._evaluate0$_quietDeps = t9;
|
|
18077
18059
|
_._evaluate0$_sourceMap = t10;
|
|
18078
18060
|
_._evaluate0$_environment = t11;
|
|
18079
|
-
_._evaluate0$_declarationName = _._evaluate0$__parent = _._evaluate0$_mediaQueries = _._evaluate0$_styleRuleIgnoringAtRoot = null;
|
|
18061
|
+
_._evaluate0$_declarationName = _._evaluate0$__parent = _._evaluate0$_mediaQuerySources = _._evaluate0$_mediaQueries = _._evaluate0$_styleRuleIgnoringAtRoot = null;
|
|
18080
18062
|
_._evaluate0$_member = "root stylesheet";
|
|
18081
18063
|
_._evaluate0$_importSpan = _._evaluate0$_callableNode = _._evaluate0$_currentCallable = null;
|
|
18082
18064
|
_._evaluate0$_inSupportsDeclaration = _._evaluate0$_inKeyframes = _._evaluate0$_atRootExcludingStyleRule = _._evaluate0$_inUnknownAtRule = _._evaluate0$_inFunction = false;
|
|
@@ -18368,12 +18350,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
18368
18350
|
this.$this = t0;
|
|
18369
18351
|
this.queries = t1;
|
|
18370
18352
|
},
|
|
18371
|
-
_EvaluateVisitor_visitMediaRule_closure6: function _EvaluateVisitor_visitMediaRule_closure6(t0, t1, t2, t3) {
|
|
18353
|
+
_EvaluateVisitor_visitMediaRule_closure6: function _EvaluateVisitor_visitMediaRule_closure6(t0, t1, t2, t3, t4) {
|
|
18372
18354
|
var _ = this;
|
|
18373
18355
|
_.$this = t0;
|
|
18374
18356
|
_.mergedQueries = t1;
|
|
18375
18357
|
_.queries = t2;
|
|
18376
|
-
_.
|
|
18358
|
+
_.mergedSources = t3;
|
|
18359
|
+
_.node = t4;
|
|
18377
18360
|
},
|
|
18378
18361
|
_EvaluateVisitor_visitMediaRule__closure1: function _EvaluateVisitor_visitMediaRule__closure1(t0, t1) {
|
|
18379
18362
|
this.$this = t0;
|
|
@@ -18384,7 +18367,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
18384
18367
|
this.node = t1;
|
|
18385
18368
|
},
|
|
18386
18369
|
_EvaluateVisitor_visitMediaRule_closure7: function _EvaluateVisitor_visitMediaRule_closure7(t0) {
|
|
18387
|
-
this.
|
|
18370
|
+
this.mergedSources = t0;
|
|
18388
18371
|
},
|
|
18389
18372
|
_EvaluateVisitor__visitMediaQueries_closure1: function _EvaluateVisitor__visitMediaQueries_closure1(t0, t1) {
|
|
18390
18373
|
this.$this = t0;
|
|
@@ -18604,10 +18587,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
18604
18587
|
this.$this = t0;
|
|
18605
18588
|
this.node = t1;
|
|
18606
18589
|
},
|
|
18607
|
-
_EvaluateVisitor_visitCssMediaRule_closure6: function _EvaluateVisitor_visitCssMediaRule_closure6(t0, t1, t2) {
|
|
18608
|
-
|
|
18609
|
-
this
|
|
18610
|
-
|
|
18590
|
+
_EvaluateVisitor_visitCssMediaRule_closure6: function _EvaluateVisitor_visitCssMediaRule_closure6(t0, t1, t2, t3) {
|
|
18591
|
+
var _ = this;
|
|
18592
|
+
_.$this = t0;
|
|
18593
|
+
_.mergedQueries = t1;
|
|
18594
|
+
_.node = t2;
|
|
18595
|
+
_.mergedSources = t3;
|
|
18611
18596
|
},
|
|
18612
18597
|
_EvaluateVisitor_visitCssMediaRule__closure1: function _EvaluateVisitor_visitCssMediaRule__closure1(t0, t1) {
|
|
18613
18598
|
this.$this = t0;
|
|
@@ -18618,7 +18603,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
18618
18603
|
this.node = t1;
|
|
18619
18604
|
},
|
|
18620
18605
|
_EvaluateVisitor_visitCssMediaRule_closure7: function _EvaluateVisitor_visitCssMediaRule_closure7(t0) {
|
|
18621
|
-
this.
|
|
18606
|
+
this.mergedSources = t0;
|
|
18622
18607
|
},
|
|
18623
18608
|
_EvaluateVisitor_visitCssStyleRule_closure3: function _EvaluateVisitor_visitCssStyleRule_closure3(t0, t1, t2) {
|
|
18624
18609
|
this.$this = t0;
|
|
@@ -20985,7 +20970,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
20985
20970
|
},
|
|
20986
20971
|
MixinRule0: function MixinRule0(t0, t1, t2, t3, t4) {
|
|
20987
20972
|
var _ = this;
|
|
20988
|
-
_._mixin_rule$
|
|
20973
|
+
_._mixin_rule$__MixinRule_hasContent_FI = $;
|
|
20989
20974
|
_.name = t0;
|
|
20990
20975
|
_.$arguments = t1;
|
|
20991
20976
|
_.span = t2;
|
|
@@ -21125,7 +21110,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21125
21110
|
J.set$sassFalse$x(self.exports, B.SassBoolean_false0);
|
|
21126
21111
|
J.set$Exception$x(self.exports, $.$get$exceptionClass());
|
|
21127
21112
|
J.set$Logger$x(self.exports, {silent: {warn: A.allowInteropNamed("sass.Logger.silent.warn", new A.main_closure0()), debug: A.allowInteropNamed("sass.Logger.silent.debug", new A.main_closure1())}});
|
|
21128
|
-
J.set$info$x(self.exports, "dart-sass\t1.54.
|
|
21113
|
+
J.set$info$x(self.exports, "dart-sass\t1.54.8\t(Sass Compiler)\t[Dart]\ndart2js\t2.18.0\t(Dart Compiler)\t[Dart]");
|
|
21129
21114
|
A.updateSourceSpanPrototype();
|
|
21130
21115
|
J.set$render$x(self.exports, A.allowInteropNamed("sass.render", A.legacy__render$closure()));
|
|
21131
21116
|
J.set$renderSync$x(self.exports, A.allowInteropNamed("sass.renderSync", A.legacy__renderSync$closure()));
|
|
@@ -21461,7 +21446,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21461
21446
|
_.isSyntacticClass = t3;
|
|
21462
21447
|
_.argument = t4;
|
|
21463
21448
|
_.selector = t5;
|
|
21464
|
-
_._pseudo$
|
|
21449
|
+
_._pseudo$__PseudoSelector_specificity_FI = $;
|
|
21465
21450
|
},
|
|
21466
21451
|
PseudoSelector_specificity_closure0: function PseudoSelector_specificity_closure0(t0) {
|
|
21467
21452
|
this.$this = t0;
|
|
@@ -21554,7 +21539,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21554
21539
|
main$body(args) {
|
|
21555
21540
|
var $async$goto = 0,
|
|
21556
21541
|
$async$completer = A._makeAsyncAwaitCompleter(type$.void),
|
|
21557
|
-
$async$returnValue, $async$handler = 2, $async$currentError,
|
|
21542
|
+
$async$returnValue, $async$handler = 2, $async$currentError, printError, graph, source, destination, error, stackTrace, error0, stackTrace0, path, error1, error2, stackTrace1, buffer, options, t1, t2, t3, exception, t4, t5, _box_0, $async$exception, $async$exception1, $async$temp1;
|
|
21558
21543
|
var $async$main0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
21559
21544
|
if ($async$errorCode === 1) {
|
|
21560
21545
|
$async$currentError = $async$result;
|
|
@@ -21662,8 +21647,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21662
21647
|
t3 = null;
|
|
21663
21648
|
else {
|
|
21664
21649
|
t5 = $.$get$_traces();
|
|
21665
|
-
|
|
21666
|
-
if (t4)
|
|
21650
|
+
if (A._isBool(t3) || typeof t3 == "number" || t4)
|
|
21667
21651
|
A.throwExpression(A.ArgumentError$value(t3, string$.Expand, null));
|
|
21668
21652
|
t3 = t5._jsWeakMap.get(t3);
|
|
21669
21653
|
}
|
|
@@ -21691,8 +21675,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21691
21675
|
t3 = null;
|
|
21692
21676
|
else {
|
|
21693
21677
|
t5 = $.$get$_traces();
|
|
21694
|
-
|
|
21695
|
-
if (t4)
|
|
21678
|
+
if (A._isBool(t3) || typeof t3 == "number" || t4)
|
|
21696
21679
|
A.throwExpression(A.ArgumentError$value(t3, string$.Expand, null));
|
|
21697
21680
|
t3 = t5._jsWeakMap.get(t3);
|
|
21698
21681
|
}
|
|
@@ -21791,7 +21774,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21791
21774
|
switch ($async$goto) {
|
|
21792
21775
|
case 0:
|
|
21793
21776
|
// Function start
|
|
21794
|
-
$async$returnValue = "1.54.
|
|
21777
|
+
$async$returnValue = "1.54.8 compiled with dart2js 2.18.0";
|
|
21795
21778
|
// goto return
|
|
21796
21779
|
$async$goto = 1;
|
|
21797
21780
|
break;
|
|
@@ -22094,8 +22077,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
22094
22077
|
return !t1 ? map : A.LimitedMapView$blocklist0(map, blocklist, type$.String, $V);
|
|
22095
22078
|
},
|
|
22096
22079
|
ShadowedModuleView__needsBlocklist0(map, blocklist) {
|
|
22097
|
-
|
|
22098
|
-
return t1;
|
|
22080
|
+
return map.get$isNotEmpty(map) && blocklist.any$1(0, map.get$containsKey());
|
|
22099
22081
|
},
|
|
22100
22082
|
ShadowedModuleView0: function ShadowedModuleView0(t0, t1, t2, t3, t4, t5) {
|
|
22101
22083
|
var _ = this;
|
|
@@ -22323,7 +22305,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
22323
22305
|
var _ = this;
|
|
22324
22306
|
_._string0$_text = t0;
|
|
22325
22307
|
_._string0$_hasQuotes = t1;
|
|
22326
|
-
_._string0$
|
|
22308
|
+
_._string0$__SassString__sassLength_FI = $;
|
|
22327
22309
|
_._string0$_hashCache = null;
|
|
22328
22310
|
},
|
|
22329
22311
|
ModifiableCssStyleRule$0(selector, span, originalSelector) {
|
|
@@ -23686,13 +23668,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
23686
23668
|
t2 = B.JSString_methods.$mul(" ", 3);
|
|
23687
23669
|
t3 = $.$get$alwaysValid();
|
|
23688
23670
|
repl0 = new A.Repl(">> ", t2, t3, t1);
|
|
23689
|
-
repl0.
|
|
23671
|
+
repl0.__Repl__adapter_A = new A.ReplAdapter(repl0);
|
|
23690
23672
|
repl = repl0;
|
|
23691
23673
|
t1 = options._options;
|
|
23692
23674
|
logger = new A.TrackingLogger(A._asBool(t1.$index(0, "quiet")) ? $.$get$Logger_quiet() : new A.StderrLogger(options.get$color()));
|
|
23693
23675
|
t2 = $.$get$context().absolute$7(".", null, null, null, null, null, null);
|
|
23694
23676
|
evaluator = new A.Evaluator(A._EvaluateVisitor$(null, A.ImportCache$(type$.List_String._as(t1.$index(0, "load-path")), logger), logger, null, false, false), new A.FilesystemImporter(t2));
|
|
23695
|
-
t2 =
|
|
23677
|
+
t2 = repl.__Repl__adapter_A;
|
|
23678
|
+
t2 === $ && A.throwUnnamedLateFieldNI();
|
|
23679
|
+
t2 = new A._StreamIterator(A.checkNotNullable(t2.runAsync$0(), "stream", type$.Object));
|
|
23696
23680
|
$async$handler = 2;
|
|
23697
23681
|
t1 = type$.Expression, t3 = type$.String, t4 = type$.VariableDeclaration;
|
|
23698
23682
|
case 5:
|
|
@@ -23770,8 +23754,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
23770
23754
|
t5 = null;
|
|
23771
23755
|
else {
|
|
23772
23756
|
t7 = $.$get$_traces();
|
|
23773
|
-
|
|
23774
|
-
if (t6)
|
|
23757
|
+
if (A._isBool(t5) || typeof t5 == "number" || t6)
|
|
23775
23758
|
A.throwExpression(A.ArgumentError$value(t5, string$.Expand, null));
|
|
23776
23759
|
t5 = t7._jsWeakMap.get(t5);
|
|
23777
23760
|
}
|
|
@@ -25688,6 +25671,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
25688
25671
|
for (i = 0; i < len; ++i)
|
|
25689
25672
|
receiver.push(array[i]);
|
|
25690
25673
|
},
|
|
25674
|
+
clear$0(receiver) {
|
|
25675
|
+
if (!!receiver.fixed$length)
|
|
25676
|
+
A.throwExpression(A.UnsupportedError$("clear"));
|
|
25677
|
+
receiver.length = 0;
|
|
25678
|
+
},
|
|
25691
25679
|
map$1$1(receiver, f, $T) {
|
|
25692
25680
|
return new A.MappedListIterable(receiver, f, A._arrayInstanceType(receiver)._eval$1("@<1>")._bind$1($T)._eval$1("MappedListIterable<1,2>"));
|
|
25693
25681
|
},
|
|
@@ -28937,11 +28925,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
28937
28925
|
var events, state, _this = this;
|
|
28938
28926
|
if ((_this._state & 8) === 0) {
|
|
28939
28927
|
events = _this._varData;
|
|
28940
|
-
return events == null ? _this._varData = new A.
|
|
28928
|
+
return events == null ? _this._varData = new A._PendingEvents() : events;
|
|
28941
28929
|
}
|
|
28942
28930
|
state = _this._varData;
|
|
28943
28931
|
events = state.varData;
|
|
28944
|
-
return events == null ? state.varData = new A.
|
|
28932
|
+
return events == null ? state.varData = new A._PendingEvents() : events;
|
|
28945
28933
|
},
|
|
28946
28934
|
get$_subscription() {
|
|
28947
28935
|
var varData = this._varData;
|
|
@@ -29287,8 +29275,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
29287
29275
|
var t1, _this = this,
|
|
29288
29276
|
pending = _this._pending;
|
|
29289
29277
|
if (pending == null)
|
|
29290
|
-
pending = new A.
|
|
29291
|
-
_this._pending = pending;
|
|
29278
|
+
pending = _this._pending = new A._PendingEvents();
|
|
29292
29279
|
pending.add$1(0, $event);
|
|
29293
29280
|
t1 = _this._state;
|
|
29294
29281
|
if ((t1 & 64) === 0) {
|
|
@@ -29466,6 +29453,16 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
29466
29453
|
}
|
|
29467
29454
|
A.scheduleMicrotask(new A._PendingEvents_schedule_closure(_this, dispatch));
|
|
29468
29455
|
_this._state = 1;
|
|
29456
|
+
},
|
|
29457
|
+
add$1(_, $event) {
|
|
29458
|
+
var _this = this,
|
|
29459
|
+
lastEvent = _this.lastPendingEvent;
|
|
29460
|
+
if (lastEvent == null)
|
|
29461
|
+
_this.firstPendingEvent = _this.lastPendingEvent = $event;
|
|
29462
|
+
else {
|
|
29463
|
+
lastEvent.set$next($event);
|
|
29464
|
+
_this.lastPendingEvent = $event;
|
|
29465
|
+
}
|
|
29469
29466
|
}
|
|
29470
29467
|
};
|
|
29471
29468
|
A._PendingEvents_schedule_closure.prototype = {
|
|
@@ -29485,18 +29482,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
29485
29482
|
},
|
|
29486
29483
|
$signature: 0
|
|
29487
29484
|
};
|
|
29488
|
-
A._StreamImplEvents.prototype = {
|
|
29489
|
-
add$1(_, $event) {
|
|
29490
|
-
var _this = this,
|
|
29491
|
-
lastEvent = _this.lastPendingEvent;
|
|
29492
|
-
if (lastEvent == null)
|
|
29493
|
-
_this.firstPendingEvent = _this.lastPendingEvent = $event;
|
|
29494
|
-
else {
|
|
29495
|
-
lastEvent.set$next($event);
|
|
29496
|
-
_this.lastPendingEvent = $event;
|
|
29497
|
-
}
|
|
29498
|
-
}
|
|
29499
|
-
};
|
|
29500
29485
|
A._StreamIterator.prototype = {
|
|
29501
29486
|
get$current(_) {
|
|
29502
29487
|
if (this._async$_hasValue)
|
|
@@ -29666,12 +29651,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
29666
29651
|
}
|
|
29667
29652
|
};
|
|
29668
29653
|
A._ZoneFunction.prototype = {};
|
|
29669
|
-
A._RunNullaryZoneFunction.prototype = {};
|
|
29670
|
-
A._RunUnaryZoneFunction.prototype = {};
|
|
29671
|
-
A._RunBinaryZoneFunction.prototype = {};
|
|
29672
|
-
A._RegisterNullaryZoneFunction.prototype = {};
|
|
29673
|
-
A._RegisterUnaryZoneFunction.prototype = {};
|
|
29674
|
-
A._RegisterBinaryZoneFunction.prototype = {};
|
|
29675
29654
|
A._ZoneSpecification.prototype = {$isZoneSpecification: 1};
|
|
29676
29655
|
A._ZoneDelegate.prototype = {$isZoneDelegate: 1};
|
|
29677
29656
|
A._Zone.prototype = {
|
|
@@ -29907,22 +29886,22 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
29907
29886
|
};
|
|
29908
29887
|
A._RootZone.prototype = {
|
|
29909
29888
|
get$_run() {
|
|
29910
|
-
return B.
|
|
29889
|
+
return B._ZoneFunction__RootZone__rootRun;
|
|
29911
29890
|
},
|
|
29912
29891
|
get$_runUnary() {
|
|
29913
|
-
return B.
|
|
29892
|
+
return B._ZoneFunction__RootZone__rootRunUnary;
|
|
29914
29893
|
},
|
|
29915
29894
|
get$_runBinary() {
|
|
29916
|
-
return B.
|
|
29895
|
+
return B._ZoneFunction__RootZone__rootRunBinary;
|
|
29917
29896
|
},
|
|
29918
29897
|
get$_registerCallback() {
|
|
29919
|
-
return B.
|
|
29898
|
+
return B._ZoneFunction__RootZone__rootRegisterCallback;
|
|
29920
29899
|
},
|
|
29921
29900
|
get$_registerUnaryCallback() {
|
|
29922
|
-
return B.
|
|
29901
|
+
return B._ZoneFunction_Eeh;
|
|
29923
29902
|
},
|
|
29924
29903
|
get$_registerBinaryCallback() {
|
|
29925
|
-
return B.
|
|
29904
|
+
return B._ZoneFunction_7G2;
|
|
29926
29905
|
},
|
|
29927
29906
|
get$_errorCallback() {
|
|
29928
29907
|
return B._ZoneFunction__RootZone__rootErrorCallback;
|
|
@@ -32197,6 +32176,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
32197
32176
|
toString$0(_) {
|
|
32198
32177
|
var minutes, minutesPadding, seconds, secondsPadding,
|
|
32199
32178
|
microseconds = this._duration,
|
|
32179
|
+
sign = microseconds < 0 ? "-" : "",
|
|
32200
32180
|
hours = B.JSInt_methods._tdivFast$1(microseconds, 3600000000);
|
|
32201
32181
|
microseconds %= 3600000000;
|
|
32202
32182
|
if (microseconds < 0)
|
|
@@ -32206,7 +32186,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
32206
32186
|
minutesPadding = minutes < 10 ? "0" : "";
|
|
32207
32187
|
seconds = B.JSInt_methods._tdivFast$1(microseconds, 1000000);
|
|
32208
32188
|
secondsPadding = seconds < 10 ? "0" : "";
|
|
32209
|
-
return
|
|
32189
|
+
return sign + Math.abs(hours) + ":" + minutesPadding + minutes + ":" + secondsPadding + seconds + "." + B.JSString_methods.padLeft$2(B.JSInt_methods.toString$0(microseconds % 1000000), 6, "0");
|
|
32210
32190
|
},
|
|
32211
32191
|
$isComparable: 1
|
|
32212
32192
|
};
|
|
@@ -32721,7 +32701,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
32721
32701
|
A._Uri.prototype = {
|
|
32722
32702
|
get$_text() {
|
|
32723
32703
|
var t1, t2, t3, t4, _this = this,
|
|
32724
|
-
value = _this.
|
|
32704
|
+
value = _this.___Uri__text_FI;
|
|
32725
32705
|
if (value === $) {
|
|
32726
32706
|
t1 = _this.scheme;
|
|
32727
32707
|
t2 = t1.length !== 0 ? "" + t1 + ":" : "";
|
|
@@ -32746,31 +32726,31 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
32746
32726
|
t2 = _this._fragment;
|
|
32747
32727
|
if (t2 != null)
|
|
32748
32728
|
t1 = t1 + "#" + t2;
|
|
32749
|
-
A.
|
|
32750
|
-
value = _this.
|
|
32729
|
+
value !== $ && A.throwUnnamedLateFieldADI();
|
|
32730
|
+
value = _this.___Uri__text_FI = t1.charCodeAt(0) == 0 ? t1 : t1;
|
|
32751
32731
|
}
|
|
32752
32732
|
return value;
|
|
32753
32733
|
},
|
|
32754
32734
|
get$pathSegments() {
|
|
32755
32735
|
var pathToSplit, result, _this = this,
|
|
32756
|
-
value = _this.
|
|
32736
|
+
value = _this.___Uri_pathSegments_FI;
|
|
32757
32737
|
if (value === $) {
|
|
32758
32738
|
pathToSplit = _this.path;
|
|
32759
32739
|
if (pathToSplit.length !== 0 && B.JSString_methods._codeUnitAt$1(pathToSplit, 0) === 47)
|
|
32760
32740
|
pathToSplit = B.JSString_methods.substring$1(pathToSplit, 1);
|
|
32761
32741
|
result = pathToSplit.length === 0 ? B.List_empty : A.List_List$unmodifiable(new A.MappedListIterable(A._setArrayType(pathToSplit.split("/"), type$.JSArray_String), A.core_Uri_decodeComponent$closure(), type$.MappedListIterable_String_dynamic), type$.String);
|
|
32762
|
-
A.
|
|
32763
|
-
value = _this.
|
|
32742
|
+
_this.___Uri_pathSegments_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
32743
|
+
value = _this.___Uri_pathSegments_FI = result;
|
|
32764
32744
|
}
|
|
32765
32745
|
return value;
|
|
32766
32746
|
},
|
|
32767
32747
|
get$hashCode(_) {
|
|
32768
32748
|
var result, _this = this,
|
|
32769
|
-
value = _this.
|
|
32749
|
+
value = _this.___Uri_hashCode_FI;
|
|
32770
32750
|
if (value === $) {
|
|
32771
32751
|
result = B.JSString_methods.get$hashCode(_this.get$_text());
|
|
32772
|
-
A.
|
|
32773
|
-
_this.
|
|
32752
|
+
_this.___Uri_hashCode_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
32753
|
+
_this.___Uri_hashCode_FI = result;
|
|
32774
32754
|
value = result;
|
|
32775
32755
|
}
|
|
32776
32756
|
return value;
|
|
@@ -33506,7 +33486,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
33506
33486
|
} else
|
|
33507
33487
|
throw exception;
|
|
33508
33488
|
}
|
|
33509
|
-
B.JSArray_methods.
|
|
33489
|
+
B.JSArray_methods.clear$0(t3);
|
|
33510
33490
|
break;
|
|
33511
33491
|
}
|
|
33512
33492
|
if (_this._parseSoloOption$0())
|
|
@@ -33751,11 +33731,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
33751
33731
|
A._Usage.prototype = {
|
|
33752
33732
|
get$_columnWidths() {
|
|
33753
33733
|
var result, _this = this,
|
|
33754
|
-
value = _this.
|
|
33734
|
+
value = _this.___Usage__columnWidths_FI;
|
|
33755
33735
|
if (value === $) {
|
|
33756
33736
|
result = _this._calculateColumnWidths$0();
|
|
33757
|
-
A.
|
|
33758
|
-
_this.
|
|
33737
|
+
_this.___Usage__columnWidths_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
33738
|
+
_this.___Usage__columnWidths_FI = result;
|
|
33759
33739
|
value = result;
|
|
33760
33740
|
}
|
|
33761
33741
|
return value;
|
|
@@ -34017,7 +33997,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
34017
33997
|
future = subscription == null ? null : subscription.cancel$0();
|
|
34018
33998
|
if (t1.__js_helper$_length === 0)
|
|
34019
33999
|
if (this._closed) {
|
|
34020
|
-
t1 =
|
|
34000
|
+
t1 = this.__StreamGroup__controller_A;
|
|
34001
|
+
t1 === $ && A.throwUnnamedLateFieldNI();
|
|
34021
34002
|
A.scheduleMicrotask(t1.get$close(t1));
|
|
34022
34003
|
}
|
|
34023
34004
|
return future;
|
|
@@ -34072,11 +34053,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
34072
34053
|
return futures.length === 0 ? null : A.Future_wait(futures, type$.void);
|
|
34073
34054
|
},
|
|
34074
34055
|
_listenToStream$1(stream) {
|
|
34075
|
-
var
|
|
34076
|
-
|
|
34077
|
-
|
|
34078
|
-
|
|
34079
|
-
if (
|
|
34056
|
+
var subscription,
|
|
34057
|
+
t1 = this.__StreamGroup__controller_A;
|
|
34058
|
+
t1 === $ && A.throwUnnamedLateFieldNI();
|
|
34059
|
+
subscription = stream.listen$3$onDone$onError(0, t1.get$add(t1), new A.StreamGroup__listenToStream_closure(this, stream), t1.get$addError());
|
|
34060
|
+
if (this._stream_group$_state === B._StreamGroupState_paused)
|
|
34080
34061
|
subscription.pause$0(0);
|
|
34081
34062
|
return subscription;
|
|
34082
34063
|
}
|
|
@@ -34244,7 +34225,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
34244
34225
|
call$0() {
|
|
34245
34226
|
var $async$goto = 0,
|
|
34246
34227
|
$async$completer = A._makeAsyncAwaitCompleter(type$.void),
|
|
34247
|
-
$async$handler = 1, $async$currentError, $async$
|
|
34228
|
+
$async$handler = 1, $async$currentError, $async$self = this, lineController, lineQueue, line, error, stackTrace, t1, t2, t3, t4, $prompt, prompt0, t5, t6, t7, t8, t9, line0, toZone, statement, exception, $async$exception;
|
|
34248
34229
|
var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
34249
34230
|
if ($async$errorCode === 1) {
|
|
34250
34231
|
$async$currentError = $async$result;
|
|
@@ -35880,7 +35861,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
35880
35861
|
return this._media_query$_name;
|
|
35881
35862
|
}
|
|
35882
35863
|
};
|
|
35883
|
-
A.MediaQuerySuccessfulMergeResult.prototype = {
|
|
35864
|
+
A.MediaQuerySuccessfulMergeResult.prototype = {
|
|
35865
|
+
toString$0(_) {
|
|
35866
|
+
return this.query.toString$0(0);
|
|
35867
|
+
}
|
|
35868
|
+
};
|
|
35884
35869
|
A.ModifiableCssAtRule.prototype = {
|
|
35885
35870
|
accept$1$1(visitor) {
|
|
35886
35871
|
return visitor.visitCssAtRule$1(this);
|
|
@@ -36169,10 +36154,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
36169
36154
|
t4 = t4 || t3 >= 128;
|
|
36170
36155
|
} else
|
|
36171
36156
|
t4 = true;
|
|
36172
|
-
if (!t4)
|
|
36173
|
-
|
|
36174
|
-
|
|
36175
|
-
} else
|
|
36157
|
+
if (!t4)
|
|
36158
|
+
t3 = t3 >= 48 && t3 <= 57 || t3 === 45;
|
|
36159
|
+
else
|
|
36176
36160
|
t3 = true;
|
|
36177
36161
|
} else
|
|
36178
36162
|
t3 = false;
|
|
@@ -37226,11 +37210,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
37226
37210
|
A.MixinRule.prototype = {
|
|
37227
37211
|
get$hasContent() {
|
|
37228
37212
|
var result, _this = this,
|
|
37229
|
-
value = _this.
|
|
37213
|
+
value = _this.__MixinRule_hasContent_FI;
|
|
37230
37214
|
if (value === $) {
|
|
37231
37215
|
result = J.$eq$(B.C__HasContentVisitor.visitChildren$1(_this.children), true);
|
|
37232
|
-
A.
|
|
37233
|
-
_this.
|
|
37216
|
+
_this.__MixinRule_hasContent_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
37217
|
+
_this.__MixinRule_hasContent_FI = result;
|
|
37234
37218
|
value = result;
|
|
37235
37219
|
}
|
|
37236
37220
|
return value;
|
|
@@ -37660,11 +37644,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
37660
37644
|
A.ComplexSelector.prototype = {
|
|
37661
37645
|
get$specificity() {
|
|
37662
37646
|
var result, _this = this,
|
|
37663
|
-
value = _this.
|
|
37647
|
+
value = _this.__ComplexSelector_specificity_FI;
|
|
37664
37648
|
if (value === $) {
|
|
37665
37649
|
result = B.JSArray_methods.fold$2(_this.components, 0, new A.ComplexSelector_specificity_closure());
|
|
37666
|
-
A.
|
|
37667
|
-
_this.
|
|
37650
|
+
_this.__ComplexSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
37651
|
+
_this.__ComplexSelector_specificity_FI = result;
|
|
37668
37652
|
value = result;
|
|
37669
37653
|
}
|
|
37670
37654
|
return value;
|
|
@@ -37787,11 +37771,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
37787
37771
|
A.CompoundSelector.prototype = {
|
|
37788
37772
|
get$specificity() {
|
|
37789
37773
|
var result, _this = this,
|
|
37790
|
-
value = _this.
|
|
37774
|
+
value = _this.__CompoundSelector_specificity_FI;
|
|
37791
37775
|
if (value === $) {
|
|
37792
37776
|
result = B.JSArray_methods.fold$2(_this.components, 0, new A.CompoundSelector_specificity_closure());
|
|
37793
|
-
A.
|
|
37794
|
-
_this.
|
|
37777
|
+
_this.__CompoundSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
37778
|
+
_this.__CompoundSelector_specificity_FI = result;
|
|
37795
37779
|
value = result;
|
|
37796
37780
|
}
|
|
37797
37781
|
return value;
|
|
@@ -38141,11 +38125,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
38141
38125
|
},
|
|
38142
38126
|
get$specificity() {
|
|
38143
38127
|
var result, _this = this,
|
|
38144
|
-
value = _this.
|
|
38128
|
+
value = _this.__PseudoSelector_specificity_FI;
|
|
38145
38129
|
if (value === $) {
|
|
38146
38130
|
result = new A.PseudoSelector_specificity_closure(_this).call$0();
|
|
38147
|
-
A.
|
|
38148
|
-
_this.
|
|
38131
|
+
_this.__PseudoSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
38132
|
+
_this.__PseudoSelector_specificity_FI = result;
|
|
38149
38133
|
value = result;
|
|
38150
38134
|
}
|
|
38151
38135
|
return value;
|
|
@@ -40629,11 +40613,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
40629
40613
|
A.ExecutableOptions.prototype = {
|
|
40630
40614
|
get$interactive() {
|
|
40631
40615
|
var result, _this = this,
|
|
40632
|
-
value = _this.
|
|
40616
|
+
value = _this.__ExecutableOptions_interactive_FI;
|
|
40633
40617
|
if (value === $) {
|
|
40634
40618
|
result = new A.ExecutableOptions_interactive_closure(_this).call$0();
|
|
40635
|
-
A.
|
|
40636
|
-
_this.
|
|
40619
|
+
_this.__ExecutableOptions_interactive_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
40620
|
+
_this.__ExecutableOptions_interactive_FI = result;
|
|
40637
40621
|
value = result;
|
|
40638
40622
|
}
|
|
40639
40623
|
return value;
|
|
@@ -40653,7 +40637,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
40653
40637
|
},
|
|
40654
40638
|
_ensureSources$0() {
|
|
40655
40639
|
var t1, stdin, t2, t3, $directories, t4, t5, colonArgs, positionalArgs, t6, t7, t8, message, target, source, destination, seen, sourceAndDestination, _this = this, _null = null,
|
|
40656
|
-
_s32_ = "_sourceDirectoriesToDestinations",
|
|
40657
40640
|
_s18_ = 'Duplicate source "';
|
|
40658
40641
|
if (_this._sourcesToDestinations != null)
|
|
40659
40642
|
return;
|
|
@@ -40732,8 +40715,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
40732
40715
|
_this._sourcesToDestinations = new A.UnmodifiableMapView(new A.PathMap(t1, type$.PathMap_nullable_String), type$.UnmodifiableMapView_of_nullable_String_and_nullable_String);
|
|
40733
40716
|
}
|
|
40734
40717
|
}
|
|
40735
|
-
A.
|
|
40736
|
-
_this.
|
|
40718
|
+
_this.__ExecutableOptions__sourceDirectoriesToDestinations_F !== $ && A.throwUnnamedLateFieldAI();
|
|
40719
|
+
_this.__ExecutableOptions__sourceDirectoriesToDestinations_F = B.Map_empty5;
|
|
40737
40720
|
return;
|
|
40738
40721
|
}
|
|
40739
40722
|
if (stdin)
|
|
@@ -40767,8 +40750,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
40767
40750
|
t1.$indexSet(0, source, destination);
|
|
40768
40751
|
}
|
|
40769
40752
|
_this._sourcesToDestinations = new A.UnmodifiableMapView(new A.PathMap(t1, t4), type$.UnmodifiableMapView_of_nullable_String_and_nullable_String);
|
|
40770
|
-
A.
|
|
40771
|
-
_this.
|
|
40753
|
+
_this.__ExecutableOptions__sourceDirectoriesToDestinations_F !== $ && A.throwUnnamedLateFieldAI();
|
|
40754
|
+
_this.__ExecutableOptions__sourceDirectoriesToDestinations_F = new A.UnmodifiableMapView(new A.PathMap(t3, t4), type$.UnmodifiableMapView_of_nullable_String_and_String);
|
|
40772
40755
|
},
|
|
40773
40756
|
_splitSourceAndDestination$1(argument) {
|
|
40774
40757
|
var t1, i, t2, t3, nextColon;
|
|
@@ -40983,7 +40966,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
40983
40966
|
compile$body$_Watcher(_, source, destination, ifModified) {
|
|
40984
40967
|
var $async$goto = 0,
|
|
40985
40968
|
$async$completer = A._makeAsyncAwaitCompleter(type$.bool),
|
|
40986
|
-
$async$returnValue, $async$handler = 2, $async$currentError, $async$
|
|
40969
|
+
$async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, error0, stackTrace0, path, exception, t1, t2, $async$exception;
|
|
40987
40970
|
var $async$compile$3$ifModified = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
40988
40971
|
if ($async$errorCode === 1) {
|
|
40989
40972
|
$async$currentError = $async$result;
|
|
@@ -41104,7 +41087,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41104
41087
|
switch ($async$goto) {
|
|
41105
41088
|
case 0:
|
|
41106
41089
|
// Function start
|
|
41107
|
-
t1 =
|
|
41090
|
+
t1 = watcher._group.__StreamGroup__controller_A;
|
|
41091
|
+
t1 === $ && A.throwUnnamedLateFieldNI();
|
|
41108
41092
|
t1 = new A._StreamIterator(A.checkNotNullable($async$self._debounceEvents$1(new A._ControllerStream(t1, A._instanceType(t1)._eval$1("_ControllerStream<1>"))), "stream", type$.Object));
|
|
41109
41093
|
$async$handler = 3;
|
|
41110
41094
|
t2 = $async$self._watch$_options._options;
|
|
@@ -41515,12 +41499,20 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41515
41499
|
t3 = $.$get$context();
|
|
41516
41500
|
if (B.JSString_methods.startsWith$1(A.ParsedPath_ParsedPath$parse(source, t3.style).get$basename(), "_"))
|
|
41517
41501
|
return null;
|
|
41518
|
-
|
|
41519
|
-
|
|
41502
|
+
t1._ensureSources$0();
|
|
41503
|
+
t1 = t1.__ExecutableOptions__sourceDirectoriesToDestinations_F;
|
|
41504
|
+
t1 === $ && A.throwUnnamedLateFieldNI();
|
|
41505
|
+
t2 = t1.cast$2$0(0, t2, t2);
|
|
41506
|
+
t2 = t2.get$entries(t2);
|
|
41507
|
+
t2 = t2.get$iterator(t2);
|
|
41508
|
+
t1 = type$.JSArray_nullable_String;
|
|
41509
|
+
t4 = type$.WhereTypeIterable_String;
|
|
41510
|
+
for (; t2.moveNext$0();) {
|
|
41511
|
+
t5 = t2.get$current(t2);
|
|
41520
41512
|
t6 = t5.key;
|
|
41521
41513
|
if (t3._isWithinOrEquals$2(t6, source) !== B._PathRelation_within)
|
|
41522
41514
|
continue;
|
|
41523
|
-
parts = A._setArrayType([t5.value, t3.withoutExtension$1(t3.relative$2$from(source, t6)) + ".css", null, null, null, null, null, null],
|
|
41515
|
+
parts = A._setArrayType([t5.value, t3.withoutExtension$1(t3.relative$2$from(source, t6)) + ".css", null, null, null, null, null, null], t1);
|
|
41524
41516
|
A._validateArgList("join", parts);
|
|
41525
41517
|
destination = t3.joinAll$1(new A.WhereTypeIterable(parts, t4));
|
|
41526
41518
|
if (t3._isWithinOrEquals$2(destination, source) !== B._PathRelation_equal)
|
|
@@ -43686,20 +43678,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
43686
43678
|
};
|
|
43687
43679
|
A._merge_closure.prototype = {
|
|
43688
43680
|
call$1($arguments) {
|
|
43689
|
-
var t2,
|
|
43681
|
+
var t2,
|
|
43690
43682
|
t1 = J.getInterceptor$asx($arguments),
|
|
43691
43683
|
map1 = t1.$index($arguments, 0).assertMap$1("map1"),
|
|
43692
43684
|
map2 = t1.$index($arguments, 1).assertMap$1("map2");
|
|
43693
43685
|
t1 = type$.Value;
|
|
43694
|
-
t2 = A.LinkedHashMap_LinkedHashMap$
|
|
43695
|
-
|
|
43696
|
-
t4 = t3.get$current(t3);
|
|
43697
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
43698
|
-
}
|
|
43699
|
-
for (t3 = map2._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
|
|
43700
|
-
t4 = t3.get$current(t3);
|
|
43701
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
43702
|
-
}
|
|
43686
|
+
t2 = A.LinkedHashMap_LinkedHashMap$of(map1._map$_contents, t1, t1);
|
|
43687
|
+
t2.addAll$1(0, map2._map$_contents);
|
|
43703
43688
|
return new A.SassMap(A.ConstantMap_ConstantMap$from(t2, t1, t1));
|
|
43704
43689
|
},
|
|
43705
43690
|
$signature: 36
|
|
@@ -43722,20 +43707,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
43722
43707
|
};
|
|
43723
43708
|
A._merge__closure.prototype = {
|
|
43724
43709
|
call$1(oldValue) {
|
|
43725
|
-
var t1, t2,
|
|
43710
|
+
var t1, t2,
|
|
43726
43711
|
nestedMap = oldValue.tryMap$0();
|
|
43727
43712
|
if (nestedMap == null)
|
|
43728
43713
|
return this.map2;
|
|
43729
43714
|
t1 = type$.Value;
|
|
43730
|
-
t2 = A.LinkedHashMap_LinkedHashMap$
|
|
43731
|
-
|
|
43732
|
-
t4 = t3.get$current(t3);
|
|
43733
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
43734
|
-
}
|
|
43735
|
-
for (t3 = this.map2._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
|
|
43736
|
-
t4 = t3.get$current(t3);
|
|
43737
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
43738
|
-
}
|
|
43715
|
+
t2 = A.LinkedHashMap_LinkedHashMap$of(nestedMap._map$_contents, t1, t1);
|
|
43716
|
+
t2.addAll$1(0, this.map2._map$_contents);
|
|
43739
43717
|
return new A.SassMap(A.ConstantMap_ConstantMap$from(t2, t1, t1));
|
|
43740
43718
|
},
|
|
43741
43719
|
$signature: 270
|
|
@@ -45933,10 +45911,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
45933
45911
|
t2 = t2 || next >= 128;
|
|
45934
45912
|
} else
|
|
45935
45913
|
t2 = true;
|
|
45936
|
-
if (!t2)
|
|
45937
|
-
t2 = next >= 48 && next <= 57;
|
|
45938
|
-
|
|
45939
|
-
} else
|
|
45914
|
+
if (!t2)
|
|
45915
|
+
t2 = next >= 48 && next <= 57 || next === 45;
|
|
45916
|
+
else
|
|
45940
45917
|
t2 = true;
|
|
45941
45918
|
if (t2)
|
|
45942
45919
|
text._contents += A.Primitives_stringFromCharCode(t1.readChar$0());
|
|
@@ -51067,12 +51044,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
51067
51044
|
var stylesheet, _this = this,
|
|
51068
51045
|
t1 = _this._nodes;
|
|
51069
51046
|
if (t1.$index(0, canonicalUrl) != null)
|
|
51070
|
-
return B.
|
|
51047
|
+
return B.Set_empty2;
|
|
51071
51048
|
stylesheet = _this._ignoreErrors$1(new A.StylesheetGraph_addCanonical_closure(_this, importer, canonicalUrl, originalUrl));
|
|
51072
51049
|
if (stylesheet == null)
|
|
51073
|
-
return B.
|
|
51050
|
+
return B.Set_empty2;
|
|
51074
51051
|
t1.$indexSet(0, canonicalUrl, A.StylesheetNode$_(stylesheet, importer, canonicalUrl, _this._upstreamNodes$3(stylesheet, importer, canonicalUrl)));
|
|
51075
|
-
return recanonicalize ? _this._recanonicalizeImports$2(importer, canonicalUrl) : B.
|
|
51052
|
+
return recanonicalize ? _this._recanonicalizeImports$2(importer, canonicalUrl) : B.Set_empty2;
|
|
51076
51053
|
},
|
|
51077
51054
|
addCanonical$3(importer, canonicalUrl, originalUrl) {
|
|
51078
51055
|
return this.addCanonical$4$recanonicalize(importer, canonicalUrl, originalUrl, true);
|
|
@@ -51265,20 +51242,16 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
51265
51242
|
},
|
|
51266
51243
|
_replaceUpstream$2(newUpstream, newUpstreamImports) {
|
|
51267
51244
|
var t3, oldUpstream, newUpstreamSet, _this = this,
|
|
51268
|
-
t1 =
|
|
51269
|
-
t2 =
|
|
51270
|
-
|
|
51271
|
-
|
|
51272
|
-
|
|
51273
|
-
t2.add$1(0, t3.get$current(t3));
|
|
51245
|
+
t1 = _this._upstream,
|
|
51246
|
+
t2 = type$.nullable_StylesheetNode;
|
|
51247
|
+
t1 = A.LinkedHashSet_LinkedHashSet$of(t1.get$values(t1), t2);
|
|
51248
|
+
t3 = _this._upstreamImports;
|
|
51249
|
+
t1.addAll$1(0, t3.get$values(t3));
|
|
51274
51250
|
t3 = type$.StylesheetNode;
|
|
51275
|
-
oldUpstream = A.SetExtension_removeNull(
|
|
51276
|
-
|
|
51277
|
-
|
|
51278
|
-
|
|
51279
|
-
for (t2 = newUpstreamImports.get$values(newUpstreamImports), t2 = t2.get$iterator(t2); t2.moveNext$0();)
|
|
51280
|
-
t1.add$1(0, t2.get$current(t2));
|
|
51281
|
-
newUpstreamSet = A.SetExtension_removeNull(t1, t3);
|
|
51251
|
+
oldUpstream = A.SetExtension_removeNull(t1, t3);
|
|
51252
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(newUpstream.get$values(newUpstream), t2);
|
|
51253
|
+
t2.addAll$1(0, newUpstreamImports.get$values(newUpstreamImports));
|
|
51254
|
+
newUpstreamSet = A.SetExtension_removeNull(t2, t3);
|
|
51282
51255
|
for (t1 = oldUpstream.difference$1(newUpstreamSet), t1 = t1.get$iterator(t1); t1.moveNext$0();)
|
|
51283
51256
|
t1.get$current(t1)._downstream.remove$1(0, _this);
|
|
51284
51257
|
for (t1 = newUpstreamSet.difference$1(oldUpstream), t1 = t1.get$iterator(t1); t1.moveNext$0();)
|
|
@@ -51287,15 +51260,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
51287
51260
|
_this._upstreamImports = newUpstreamImports;
|
|
51288
51261
|
},
|
|
51289
51262
|
_stylesheet_graph$_remove$0() {
|
|
51290
|
-
var t2, t3, t4, _i, url, _this = this
|
|
51291
|
-
|
|
51292
|
-
for (t2 = _this._upstream, t2 = t2.get$values(t2), t2 = t2.get$iterator(t2); t2.moveNext$0();)
|
|
51293
|
-
t1.add$1(0, t2.get$current(t2));
|
|
51294
|
-
for (t2 = _this._upstreamImports, t2 = t2.get$values(t2), t2 = t2.get$iterator(t2); t2.moveNext$0();)
|
|
51295
|
-
t1.add$1(0, t2.get$current(t2));
|
|
51296
|
-
t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications);
|
|
51297
|
-
t2 = A._instanceType(t1)._precomputed1;
|
|
51298
|
-
for (; t1.moveNext$0();) {
|
|
51263
|
+
var t1, t2, t3, t4, _i, url, _this = this;
|
|
51264
|
+
for (t1 = _this._upstream, t1 = A.LinkedHashSet_LinkedHashSet$of(t1.get$values(t1), type$.nullable_StylesheetNode), t2 = _this._upstreamImports, t1.addAll$1(0, t2.get$values(t2)), t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications), t2 = A._instanceType(t1)._precomputed1; t1.moveNext$0();) {
|
|
51299
51265
|
t3 = t1._collection$_current;
|
|
51300
51266
|
if (t3 == null)
|
|
51301
51267
|
t3 = t2._as(t3);
|
|
@@ -53171,12 +53137,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
53171
53137
|
A.SassString.prototype = {
|
|
53172
53138
|
get$_sassLength() {
|
|
53173
53139
|
var t1, result, _this = this,
|
|
53174
|
-
value = _this.
|
|
53140
|
+
value = _this.__SassString__sassLength_FI;
|
|
53175
53141
|
if (value === $) {
|
|
53176
53142
|
t1 = new A.Runes(_this._string$_text);
|
|
53177
53143
|
result = t1.get$length(t1);
|
|
53178
|
-
A.
|
|
53179
|
-
_this.
|
|
53144
|
+
_this.__SassString__sassLength_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
53145
|
+
_this.__SassString__sassLength_FI = result;
|
|
53180
53146
|
value = result;
|
|
53181
53147
|
}
|
|
53182
53148
|
return value;
|
|
@@ -54845,7 +54811,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
54845
54811
|
visitMediaRule$body$_EvaluateVisitor(node) {
|
|
54846
54812
|
var $async$goto = 0,
|
|
54847
54813
|
$async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value),
|
|
54848
|
-
$async$returnValue, $async$self = this, queries, mergedQueries, t1;
|
|
54814
|
+
$async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2, t3;
|
|
54849
54815
|
var $async$visitMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
54850
54816
|
if ($async$errorCode === 1)
|
|
54851
54817
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -54868,9 +54834,21 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
54868
54834
|
$async$goto = 1;
|
|
54869
54835
|
break;
|
|
54870
54836
|
}
|
|
54837
|
+
if (t1)
|
|
54838
|
+
mergedSources = B.Set_empty0;
|
|
54839
|
+
else {
|
|
54840
|
+
t2 = $async$self._async_evaluate$_mediaQuerySources;
|
|
54841
|
+
t2.toString;
|
|
54842
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
|
|
54843
|
+
t3 = $async$self._async_evaluate$_mediaQueries;
|
|
54844
|
+
t3.toString;
|
|
54845
|
+
t2.addAll$1(0, t3);
|
|
54846
|
+
t2.addAll$1(0, queries);
|
|
54847
|
+
mergedSources = t2;
|
|
54848
|
+
}
|
|
54871
54849
|
t1 = t1 ? queries : mergedQueries;
|
|
54872
54850
|
$async$goto = 4;
|
|
54873
|
-
return A._asyncAwait($async$self._async_evaluate$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure3($async$self, mergedQueries, queries, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure4(
|
|
54851
|
+
return A._asyncAwait($async$self._async_evaluate$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure3($async$self, mergedQueries, queries, mergedSources, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure4(mergedSources), type$.ModifiableCssMediaRule, type$.Null), $async$visitMediaRule$1);
|
|
54874
54852
|
case 4:
|
|
54875
54853
|
// returning from await.
|
|
54876
54854
|
$async$returnValue = null;
|
|
@@ -55745,7 +55723,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
55745
55723
|
visitCalculationExpression$body$_EvaluateVisitor(node) {
|
|
55746
55724
|
var $async$goto = 0,
|
|
55747
55725
|
$async$completer = A._makeAsyncAwaitCompleter(type$.Value),
|
|
55748
|
-
$async$returnValue, $async$
|
|
55726
|
+
$async$returnValue, $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
|
|
55749
55727
|
var $async$visitCalculationExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
55750
55728
|
if ($async$errorCode === 1)
|
|
55751
55729
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -56351,7 +56329,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
56351
56329
|
_runBuiltInCallable$body$_EvaluateVisitor($arguments, callable, nodeWithSpan) {
|
|
56352
56330
|
var $async$goto = 0,
|
|
56353
56331
|
$async$completer = A._makeAsyncAwaitCompleter(type$.Value),
|
|
56354
|
-
$async$returnValue, $async$handler = 2, $async$currentError, $async$
|
|
56332
|
+
$async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, callback, result, error, stackTrace, error0, stackTrace0, error1, stackTrace1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, t4, t5, t6, message0, evaluated, oldCallableNode, $async$exception;
|
|
56355
56333
|
var $async$_async_evaluate$_runBuiltInCallable$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
56356
56334
|
if ($async$errorCode === 1) {
|
|
56357
56335
|
$async$currentError = $async$result;
|
|
@@ -56964,7 +56942,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
56964
56942
|
visitCssMediaRule$body$_EvaluateVisitor(node) {
|
|
56965
56943
|
var $async$goto = 0,
|
|
56966
56944
|
$async$completer = A._makeAsyncAwaitCompleter(type$.void),
|
|
56967
|
-
$async$returnValue, $async$self = this, mergedQueries, t1;
|
|
56945
|
+
$async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3;
|
|
56968
56946
|
var $async$visitCssMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
56969
56947
|
if ($async$errorCode === 1)
|
|
56970
56948
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -56981,9 +56959,21 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
56981
56959
|
$async$goto = 1;
|
|
56982
56960
|
break;
|
|
56983
56961
|
}
|
|
56962
|
+
if (t1)
|
|
56963
|
+
mergedSources = B.Set_empty0;
|
|
56964
|
+
else {
|
|
56965
|
+
t2 = $async$self._async_evaluate$_mediaQuerySources;
|
|
56966
|
+
t2.toString;
|
|
56967
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
|
|
56968
|
+
t3 = $async$self._async_evaluate$_mediaQueries;
|
|
56969
|
+
t3.toString;
|
|
56970
|
+
t2.addAll$1(0, t3);
|
|
56971
|
+
t2.addAll$1(0, node.queries);
|
|
56972
|
+
mergedSources = t2;
|
|
56973
|
+
}
|
|
56984
56974
|
t1 = t1 ? node.queries : mergedQueries;
|
|
56985
56975
|
$async$goto = 3;
|
|
56986
|
-
return A._asyncAwait($async$self._async_evaluate$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure3($async$self, mergedQueries, node), false, new A._EvaluateVisitor_visitCssMediaRule_closure4(
|
|
56976
|
+
return A._asyncAwait($async$self._async_evaluate$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure3($async$self, mergedQueries, node, mergedSources), false, new A._EvaluateVisitor_visitCssMediaRule_closure4(mergedSources), type$.ModifiableCssMediaRule, type$.Null), $async$visitCssMediaRule$1);
|
|
56987
56977
|
case 3:
|
|
56988
56978
|
// returning from await.
|
|
56989
56979
|
case 1:
|
|
@@ -57404,14 +57394,14 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
57404
57394
|
});
|
|
57405
57395
|
return A._asyncStartSync($async$_async_evaluate$_withStyleRule$1$2, $async$completer);
|
|
57406
57396
|
},
|
|
57407
|
-
_async_evaluate$_withMediaQueries$1$
|
|
57408
|
-
return this._withMediaQueries$body$_EvaluateVisitor(queries, callback, $T, $T);
|
|
57397
|
+
_async_evaluate$_withMediaQueries$1$3(queries, sources, callback, $T) {
|
|
57398
|
+
return this._withMediaQueries$body$_EvaluateVisitor(queries, sources, callback, $T, $T);
|
|
57409
57399
|
},
|
|
57410
|
-
_withMediaQueries$body$_EvaluateVisitor(queries, callback, $T, $async$type) {
|
|
57400
|
+
_withMediaQueries$body$_EvaluateVisitor(queries, sources, callback, $T, $async$type) {
|
|
57411
57401
|
var $async$goto = 0,
|
|
57412
57402
|
$async$completer = A._makeAsyncAwaitCompleter($async$type),
|
|
57413
|
-
$async$returnValue, $async$self = this, result, oldMediaQueries;
|
|
57414
|
-
var $async$_async_evaluate$_withMediaQueries$1$
|
|
57403
|
+
$async$returnValue, $async$self = this, result, oldMediaQueries, oldSources;
|
|
57404
|
+
var $async$_async_evaluate$_withMediaQueries$1$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
57415
57405
|
if ($async$errorCode === 1)
|
|
57416
57406
|
return A._asyncRethrow($async$result, $async$completer);
|
|
57417
57407
|
while (true)
|
|
@@ -57419,13 +57409,16 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
57419
57409
|
case 0:
|
|
57420
57410
|
// Function start
|
|
57421
57411
|
oldMediaQueries = $async$self._async_evaluate$_mediaQueries;
|
|
57412
|
+
oldSources = $async$self._async_evaluate$_mediaQuerySources;
|
|
57422
57413
|
$async$self._async_evaluate$_mediaQueries = queries;
|
|
57414
|
+
$async$self._async_evaluate$_mediaQuerySources = sources;
|
|
57423
57415
|
$async$goto = 3;
|
|
57424
|
-
return A._asyncAwait(callback.call$0(), $async$_async_evaluate$_withMediaQueries$1$
|
|
57416
|
+
return A._asyncAwait(callback.call$0(), $async$_async_evaluate$_withMediaQueries$1$3);
|
|
57425
57417
|
case 3:
|
|
57426
57418
|
// returning from await.
|
|
57427
57419
|
result = $async$result;
|
|
57428
57420
|
$async$self._async_evaluate$_mediaQueries = oldMediaQueries;
|
|
57421
|
+
$async$self._async_evaluate$_mediaQuerySources = oldSources;
|
|
57429
57422
|
$async$returnValue = result;
|
|
57430
57423
|
// goto return
|
|
57431
57424
|
$async$goto = 1;
|
|
@@ -57435,7 +57428,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
57435
57428
|
return A._asyncReturn($async$returnValue, $async$completer);
|
|
57436
57429
|
}
|
|
57437
57430
|
});
|
|
57438
|
-
return A._asyncStartSync($async$_async_evaluate$_withMediaQueries$1$
|
|
57431
|
+
return A._asyncStartSync($async$_async_evaluate$_withMediaQueries$1$3, $async$completer);
|
|
57439
57432
|
},
|
|
57440
57433
|
_async_evaluate$_withStackFrame$1$3(member, nodeWithSpan, callback, $T) {
|
|
57441
57434
|
return this._withStackFrame$body$_EvaluateVisitor(member, nodeWithSpan, callback, $T, $T);
|
|
@@ -57590,7 +57583,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
57590
57583
|
_addExceptionSpanAsync$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
|
|
57591
57584
|
var $async$goto = 0,
|
|
57592
57585
|
$async$completer = A._makeAsyncAwaitCompleter($async$type),
|
|
57593
|
-
$async$returnValue, $async$handler = 2, $async$currentError, $async$
|
|
57586
|
+
$async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
|
|
57594
57587
|
var $async$_addExceptionSpanAsync$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
57595
57588
|
if ($async$errorCode === 1) {
|
|
57596
57589
|
$async$currentError = $async$result;
|
|
@@ -57659,7 +57652,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
57659
57652
|
_addErrorSpan$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
|
|
57660
57653
|
var $async$goto = 0,
|
|
57661
57654
|
$async$completer = A._makeAsyncAwaitCompleter($async$type),
|
|
57662
|
-
$async$returnValue, $async$handler = 2, $async$currentError, $async$
|
|
57655
|
+
$async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
|
|
57663
57656
|
var $async$_async_evaluate$_addErrorSpan$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
57664
57657
|
if ($async$errorCode === 1) {
|
|
57665
57658
|
$async$currentError = $async$result;
|
|
@@ -58410,7 +58403,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
58410
58403
|
};
|
|
58411
58404
|
A._EvaluateVisitor__scopeForAtRoot_closure7.prototype = {
|
|
58412
58405
|
call$1(callback) {
|
|
58413
|
-
return this.$this._async_evaluate$_withMediaQueries$1$
|
|
58406
|
+
return this.$this._async_evaluate$_withMediaQueries$1$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure0(this.innerScope, callback), type$.Null);
|
|
58414
58407
|
},
|
|
58415
58408
|
$signature: 32
|
|
58416
58409
|
};
|
|
@@ -59247,7 +59240,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
59247
59240
|
if (t2 == null)
|
|
59248
59241
|
t2 = $async$self.queries;
|
|
59249
59242
|
$async$goto = 2;
|
|
59250
|
-
return A._asyncAwait(t1._async_evaluate$_withMediaQueries$1$
|
|
59243
|
+
return A._asyncAwait(t1._async_evaluate$_withMediaQueries$1$3(t2, $async$self.mergedSources, new A._EvaluateVisitor_visitMediaRule__closure0(t1, $async$self.node), type$.Null), $async$call$0);
|
|
59251
59244
|
case 2:
|
|
59252
59245
|
// returning from await.
|
|
59253
59246
|
// implicit return
|
|
@@ -59358,9 +59351,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
59358
59351
|
A._EvaluateVisitor_visitMediaRule_closure4.prototype = {
|
|
59359
59352
|
call$1(node) {
|
|
59360
59353
|
var t1;
|
|
59361
|
-
if (!type$.CssStyleRule._is(node))
|
|
59362
|
-
t1 = this.
|
|
59363
|
-
|
|
59354
|
+
if (!type$.CssStyleRule._is(node)) {
|
|
59355
|
+
t1 = this.mergedSources;
|
|
59356
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
59357
|
+
} else
|
|
59364
59358
|
t1 = true;
|
|
59365
59359
|
return t1;
|
|
59366
59360
|
},
|
|
@@ -60533,7 +60527,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
60533
60527
|
if (t2 == null)
|
|
60534
60528
|
t2 = $async$self.node.queries;
|
|
60535
60529
|
$async$goto = 2;
|
|
60536
|
-
return A._asyncAwait(t1._async_evaluate$_withMediaQueries$1$
|
|
60530
|
+
return A._asyncAwait(t1._async_evaluate$_withMediaQueries$1$3(t2, $async$self.mergedSources, new A._EvaluateVisitor_visitCssMediaRule__closure0(t1, $async$self.node), type$.Null), $async$call$0);
|
|
60537
60531
|
case 2:
|
|
60538
60532
|
// returning from await.
|
|
60539
60533
|
// implicit return
|
|
@@ -60640,9 +60634,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
60640
60634
|
A._EvaluateVisitor_visitCssMediaRule_closure4.prototype = {
|
|
60641
60635
|
call$1(node) {
|
|
60642
60636
|
var t1;
|
|
60643
|
-
if (!type$.CssStyleRule._is(node))
|
|
60644
|
-
t1 = this.
|
|
60645
|
-
|
|
60637
|
+
if (!type$.CssStyleRule._is(node)) {
|
|
60638
|
+
t1 = this.mergedSources;
|
|
60639
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
60640
|
+
} else
|
|
60646
60641
|
t1 = true;
|
|
60647
60642
|
return t1;
|
|
60648
60643
|
},
|
|
@@ -61755,7 +61750,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
61755
61750
|
return null;
|
|
61756
61751
|
},
|
|
61757
61752
|
visitMediaRule$1(node) {
|
|
61758
|
-
var queries, mergedQueries, t1, _this = this;
|
|
61753
|
+
var queries, mergedQueries, t1, mergedSources, t2, t3, _this = this;
|
|
61759
61754
|
if (_this._declarationName != null)
|
|
61760
61755
|
throw A.wrapException(_this._evaluate$_exception$2(string$.Media_, node.span));
|
|
61761
61756
|
queries = _this._visitMediaQueries$1(node.query);
|
|
@@ -61763,8 +61758,20 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
61763
61758
|
t1 = mergedQueries == null;
|
|
61764
61759
|
if (!t1 && J.get$isEmpty$asx(mergedQueries))
|
|
61765
61760
|
return null;
|
|
61761
|
+
if (t1)
|
|
61762
|
+
mergedSources = B.Set_empty0;
|
|
61763
|
+
else {
|
|
61764
|
+
t2 = _this._mediaQuerySources;
|
|
61765
|
+
t2.toString;
|
|
61766
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
|
|
61767
|
+
t3 = _this._mediaQueries;
|
|
61768
|
+
t3.toString;
|
|
61769
|
+
t2.addAll$1(0, t3);
|
|
61770
|
+
t2.addAll$1(0, queries);
|
|
61771
|
+
mergedSources = t2;
|
|
61772
|
+
}
|
|
61766
61773
|
t1 = t1 ? queries : mergedQueries;
|
|
61767
|
-
_this._withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure0(_this, mergedQueries, queries, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure1(
|
|
61774
|
+
_this._withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure0(_this, mergedQueries, queries, mergedSources, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure1(mergedSources), type$.ModifiableCssMediaRule, type$.Null);
|
|
61768
61775
|
return null;
|
|
61769
61776
|
},
|
|
61770
61777
|
_visitMediaQueries$1(interpolation) {
|
|
@@ -62476,15 +62483,27 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
62476
62483
|
this._withParent$2$4$scopeWhen$through(A.ModifiableCssKeyframeBlock$(node.selector, node.span), new A._EvaluateVisitor_visitCssKeyframeBlock_closure(this, node), false, new A._EvaluateVisitor_visitCssKeyframeBlock_closure0(), type$.ModifiableCssKeyframeBlock, type$.Null);
|
|
62477
62484
|
},
|
|
62478
62485
|
visitCssMediaRule$1(node) {
|
|
62479
|
-
var mergedQueries, t1, _this = this;
|
|
62486
|
+
var mergedQueries, t1, mergedSources, t2, t3, _this = this;
|
|
62480
62487
|
if (_this._declarationName != null)
|
|
62481
62488
|
throw A.wrapException(_this._evaluate$_exception$2(string$.Media_, node.span));
|
|
62482
62489
|
mergedQueries = A.NullableExtension_andThen(_this._mediaQueries, new A._EvaluateVisitor_visitCssMediaRule_closure(_this, node));
|
|
62483
62490
|
t1 = mergedQueries == null;
|
|
62484
62491
|
if (!t1 && J.get$isEmpty$asx(mergedQueries))
|
|
62485
62492
|
return;
|
|
62493
|
+
if (t1)
|
|
62494
|
+
mergedSources = B.Set_empty0;
|
|
62495
|
+
else {
|
|
62496
|
+
t2 = _this._mediaQuerySources;
|
|
62497
|
+
t2.toString;
|
|
62498
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
|
|
62499
|
+
t3 = _this._mediaQueries;
|
|
62500
|
+
t3.toString;
|
|
62501
|
+
t2.addAll$1(0, t3);
|
|
62502
|
+
t2.addAll$1(0, node.queries);
|
|
62503
|
+
mergedSources = t2;
|
|
62504
|
+
}
|
|
62486
62505
|
t1 = t1 ? node.queries : mergedQueries;
|
|
62487
|
-
_this._withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure0(_this, mergedQueries, node), false, new A._EvaluateVisitor_visitCssMediaRule_closure1(
|
|
62506
|
+
_this._withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure0(_this, mergedQueries, node, mergedSources), false, new A._EvaluateVisitor_visitCssMediaRule_closure1(mergedSources), type$.ModifiableCssMediaRule, type$.Null);
|
|
62488
62507
|
},
|
|
62489
62508
|
visitCssStyleRule$1(node) {
|
|
62490
62509
|
var t1, styleRule, t2, t3, t4, t5, originalSelector, rule, oldAtRootExcludingStyleRule, _this = this,
|
|
@@ -62631,16 +62650,19 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
62631
62650
|
_withStyleRule$2(rule, callback) {
|
|
62632
62651
|
return this._withStyleRule$1$2(rule, callback, type$.dynamic);
|
|
62633
62652
|
},
|
|
62634
|
-
_withMediaQueries$1$
|
|
62635
|
-
var result,
|
|
62636
|
-
oldMediaQueries =
|
|
62637
|
-
|
|
62653
|
+
_withMediaQueries$1$3(queries, sources, callback) {
|
|
62654
|
+
var result, _this = this,
|
|
62655
|
+
oldMediaQueries = _this._mediaQueries,
|
|
62656
|
+
oldSources = _this._mediaQuerySources;
|
|
62657
|
+
_this._mediaQueries = queries;
|
|
62658
|
+
_this._mediaQuerySources = sources;
|
|
62638
62659
|
result = callback.call$0();
|
|
62639
|
-
|
|
62660
|
+
_this._mediaQueries = oldMediaQueries;
|
|
62661
|
+
_this._mediaQuerySources = oldSources;
|
|
62640
62662
|
return result;
|
|
62641
62663
|
},
|
|
62642
|
-
_withMediaQueries$
|
|
62643
|
-
return this._withMediaQueries$1$
|
|
62664
|
+
_withMediaQueries$3(queries, sources, callback) {
|
|
62665
|
+
return this._withMediaQueries$1$3(queries, sources, callback, type$.dynamic);
|
|
62644
62666
|
},
|
|
62645
62667
|
_withStackFrame$1$3(member, nodeWithSpan, callback) {
|
|
62646
62668
|
var oldMember, result, _this = this,
|
|
@@ -63255,7 +63277,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
63255
63277
|
};
|
|
63256
63278
|
A._EvaluateVisitor__scopeForAtRoot_closure1.prototype = {
|
|
63257
63279
|
call$1(callback) {
|
|
63258
|
-
return this.$this._withMediaQueries$
|
|
63280
|
+
return this.$this._withMediaQueries$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure(this.innerScope, callback));
|
|
63259
63281
|
},
|
|
63260
63282
|
$signature: 26
|
|
63261
63283
|
};
|
|
@@ -63669,7 +63691,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
63669
63691
|
t2 = _this.mergedQueries;
|
|
63670
63692
|
if (t2 == null)
|
|
63671
63693
|
t2 = _this.queries;
|
|
63672
|
-
t1._withMediaQueries$
|
|
63694
|
+
t1._withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitMediaRule__closure(t1, _this.node));
|
|
63673
63695
|
},
|
|
63674
63696
|
$signature: 1
|
|
63675
63697
|
};
|
|
@@ -63697,9 +63719,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
63697
63719
|
A._EvaluateVisitor_visitMediaRule_closure1.prototype = {
|
|
63698
63720
|
call$1(node) {
|
|
63699
63721
|
var t1;
|
|
63700
|
-
if (!type$.CssStyleRule._is(node))
|
|
63701
|
-
t1 = this.
|
|
63702
|
-
|
|
63722
|
+
if (!type$.CssStyleRule._is(node)) {
|
|
63723
|
+
t1 = this.mergedSources;
|
|
63724
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
63725
|
+
} else
|
|
63703
63726
|
t1 = true;
|
|
63704
63727
|
return t1;
|
|
63705
63728
|
},
|
|
@@ -64220,7 +64243,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
64220
64243
|
t2 = _this.mergedQueries;
|
|
64221
64244
|
if (t2 == null)
|
|
64222
64245
|
t2 = _this.node.queries;
|
|
64223
|
-
t1._withMediaQueries$
|
|
64246
|
+
t1._withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitCssMediaRule__closure(t1, _this.node));
|
|
64224
64247
|
},
|
|
64225
64248
|
$signature: 1
|
|
64226
64249
|
};
|
|
@@ -64252,9 +64275,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
64252
64275
|
A._EvaluateVisitor_visitCssMediaRule_closure1.prototype = {
|
|
64253
64276
|
call$1(node) {
|
|
64254
64277
|
var t1;
|
|
64255
|
-
if (!type$.CssStyleRule._is(node))
|
|
64256
|
-
t1 = this.
|
|
64257
|
-
|
|
64278
|
+
if (!type$.CssStyleRule._is(node)) {
|
|
64279
|
+
t1 = this.mergedSources;
|
|
64280
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
64281
|
+
} else
|
|
64258
64282
|
t1 = true;
|
|
64259
64283
|
return t1;
|
|
64260
64284
|
},
|
|
@@ -67364,11 +67388,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
67364
67388
|
A.LazyTrace.prototype = {
|
|
67365
67389
|
get$_lazy_trace$_trace() {
|
|
67366
67390
|
var result, _this = this,
|
|
67367
|
-
value = _this.
|
|
67391
|
+
value = _this.__LazyTrace__trace_FI;
|
|
67368
67392
|
if (value === $) {
|
|
67369
67393
|
result = _this._thunk.call$0();
|
|
67370
|
-
A.
|
|
67371
|
-
_this.
|
|
67394
|
+
_this.__LazyTrace__trace_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
67395
|
+
_this.__LazyTrace__trace_FI = result;
|
|
67372
67396
|
value = result;
|
|
67373
67397
|
}
|
|
67374
67398
|
return value;
|
|
@@ -67751,11 +67775,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
67751
67775
|
return true;
|
|
67752
67776
|
},
|
|
67753
67777
|
error$3$length$position(_, message, $length, position) {
|
|
67754
|
-
var
|
|
67778
|
+
var match, t2, _this = this,
|
|
67755
67779
|
t1 = _this.string;
|
|
67756
67780
|
A.validateErrorArgs(t1, null, position, $length);
|
|
67757
|
-
|
|
67758
|
-
match = t2 ? _this.get$lastMatch() : null;
|
|
67781
|
+
match = position == null && $length == null ? _this.get$lastMatch() : null;
|
|
67759
67782
|
if (position == null)
|
|
67760
67783
|
position = match == null ? _this._string_scanner$_position : match.start;
|
|
67761
67784
|
if ($length == null)
|
|
@@ -68097,10 +68120,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
68097
68120
|
t4 = t4 || t3 >= 128;
|
|
68098
68121
|
} else
|
|
68099
68122
|
t4 = true;
|
|
68100
|
-
if (!t4)
|
|
68101
|
-
|
|
68102
|
-
|
|
68103
|
-
} else
|
|
68123
|
+
if (!t4)
|
|
68124
|
+
t3 = t3 >= 48 && t3 <= 57 || t3 === 45;
|
|
68125
|
+
else
|
|
68104
68126
|
t3 = true;
|
|
68105
68127
|
} else
|
|
68106
68128
|
t3 = false;
|
|
@@ -70821,7 +70843,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
70821
70843
|
visitMediaRule$body$_EvaluateVisitor0(node) {
|
|
70822
70844
|
var $async$goto = 0,
|
|
70823
70845
|
$async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value_2),
|
|
70824
|
-
$async$returnValue, $async$self = this, queries, mergedQueries, t1;
|
|
70846
|
+
$async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2, t3;
|
|
70825
70847
|
var $async$visitMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
70826
70848
|
if ($async$errorCode === 1)
|
|
70827
70849
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -70844,9 +70866,21 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
70844
70866
|
$async$goto = 1;
|
|
70845
70867
|
break;
|
|
70846
70868
|
}
|
|
70869
|
+
if (t1)
|
|
70870
|
+
mergedSources = B.Set_empty4;
|
|
70871
|
+
else {
|
|
70872
|
+
t2 = $async$self._async_evaluate0$_mediaQuerySources;
|
|
70873
|
+
t2.toString;
|
|
70874
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
|
|
70875
|
+
t3 = $async$self._async_evaluate0$_mediaQueries;
|
|
70876
|
+
t3.toString;
|
|
70877
|
+
t2.addAll$1(0, t3);
|
|
70878
|
+
t2.addAll$1(0, queries);
|
|
70879
|
+
mergedSources = t2;
|
|
70880
|
+
}
|
|
70847
70881
|
t1 = t1 ? queries : mergedQueries;
|
|
70848
70882
|
$async$goto = 4;
|
|
70849
|
-
return A._asyncAwait($async$self._async_evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure9($async$self, mergedQueries, queries, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure10(
|
|
70883
|
+
return A._asyncAwait($async$self._async_evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure9($async$self, mergedQueries, queries, mergedSources, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure10(mergedSources), type$.ModifiableCssMediaRule_2, type$.Null), $async$visitMediaRule$1);
|
|
70850
70884
|
case 4:
|
|
70851
70885
|
// returning from await.
|
|
70852
70886
|
$async$returnValue = null;
|
|
@@ -71721,7 +71755,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
71721
71755
|
visitCalculationExpression$body$_EvaluateVisitor0(node) {
|
|
71722
71756
|
var $async$goto = 0,
|
|
71723
71757
|
$async$completer = A._makeAsyncAwaitCompleter(type$.Value_2),
|
|
71724
|
-
$async$returnValue, $async$
|
|
71758
|
+
$async$returnValue, $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
|
|
71725
71759
|
var $async$visitCalculationExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
71726
71760
|
if ($async$errorCode === 1)
|
|
71727
71761
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -72327,7 +72361,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
72327
72361
|
_runBuiltInCallable$body$_EvaluateVisitor0($arguments, callable, nodeWithSpan) {
|
|
72328
72362
|
var $async$goto = 0,
|
|
72329
72363
|
$async$completer = A._makeAsyncAwaitCompleter(type$.Value_2),
|
|
72330
|
-
$async$returnValue, $async$handler = 2, $async$currentError, $async$
|
|
72364
|
+
$async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, callback, result, error, stackTrace, error0, stackTrace0, error1, stackTrace1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, t4, t5, t6, message0, evaluated, oldCallableNode, $async$exception;
|
|
72331
72365
|
var $async$_async_evaluate0$_runBuiltInCallable$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
72332
72366
|
if ($async$errorCode === 1) {
|
|
72333
72367
|
$async$currentError = $async$result;
|
|
@@ -72940,7 +72974,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
72940
72974
|
visitCssMediaRule$body$_EvaluateVisitor0(node) {
|
|
72941
72975
|
var $async$goto = 0,
|
|
72942
72976
|
$async$completer = A._makeAsyncAwaitCompleter(type$.void),
|
|
72943
|
-
$async$returnValue, $async$self = this, mergedQueries, t1;
|
|
72977
|
+
$async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3;
|
|
72944
72978
|
var $async$visitCssMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
72945
72979
|
if ($async$errorCode === 1)
|
|
72946
72980
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -72957,9 +72991,21 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
72957
72991
|
$async$goto = 1;
|
|
72958
72992
|
break;
|
|
72959
72993
|
}
|
|
72994
|
+
if (t1)
|
|
72995
|
+
mergedSources = B.Set_empty4;
|
|
72996
|
+
else {
|
|
72997
|
+
t2 = $async$self._async_evaluate0$_mediaQuerySources;
|
|
72998
|
+
t2.toString;
|
|
72999
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
|
|
73000
|
+
t3 = $async$self._async_evaluate0$_mediaQueries;
|
|
73001
|
+
t3.toString;
|
|
73002
|
+
t2.addAll$1(0, t3);
|
|
73003
|
+
t2.addAll$1(0, node.queries);
|
|
73004
|
+
mergedSources = t2;
|
|
73005
|
+
}
|
|
72960
73006
|
t1 = t1 ? node.queries : mergedQueries;
|
|
72961
73007
|
$async$goto = 3;
|
|
72962
|
-
return A._asyncAwait($async$self._async_evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure9($async$self, mergedQueries, node), false, new A._EvaluateVisitor_visitCssMediaRule_closure10(
|
|
73008
|
+
return A._asyncAwait($async$self._async_evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure9($async$self, mergedQueries, node, mergedSources), false, new A._EvaluateVisitor_visitCssMediaRule_closure10(mergedSources), type$.ModifiableCssMediaRule_2, type$.Null), $async$visitCssMediaRule$1);
|
|
72963
73009
|
case 3:
|
|
72964
73010
|
// returning from await.
|
|
72965
73011
|
case 1:
|
|
@@ -73380,14 +73426,14 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
73380
73426
|
});
|
|
73381
73427
|
return A._asyncStartSync($async$_async_evaluate0$_withStyleRule$1$2, $async$completer);
|
|
73382
73428
|
},
|
|
73383
|
-
_async_evaluate0$_withMediaQueries$1$
|
|
73384
|
-
return this._withMediaQueries$body$_EvaluateVisitor0(queries, callback, $T, $T);
|
|
73429
|
+
_async_evaluate0$_withMediaQueries$1$3(queries, sources, callback, $T) {
|
|
73430
|
+
return this._withMediaQueries$body$_EvaluateVisitor0(queries, sources, callback, $T, $T);
|
|
73385
73431
|
},
|
|
73386
|
-
_withMediaQueries$body$_EvaluateVisitor0(queries, callback, $T, $async$type) {
|
|
73432
|
+
_withMediaQueries$body$_EvaluateVisitor0(queries, sources, callback, $T, $async$type) {
|
|
73387
73433
|
var $async$goto = 0,
|
|
73388
73434
|
$async$completer = A._makeAsyncAwaitCompleter($async$type),
|
|
73389
|
-
$async$returnValue, $async$self = this, result, oldMediaQueries;
|
|
73390
|
-
var $async$_async_evaluate0$_withMediaQueries$1$
|
|
73435
|
+
$async$returnValue, $async$self = this, result, oldMediaQueries, oldSources;
|
|
73436
|
+
var $async$_async_evaluate0$_withMediaQueries$1$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
73391
73437
|
if ($async$errorCode === 1)
|
|
73392
73438
|
return A._asyncRethrow($async$result, $async$completer);
|
|
73393
73439
|
while (true)
|
|
@@ -73395,13 +73441,16 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
73395
73441
|
case 0:
|
|
73396
73442
|
// Function start
|
|
73397
73443
|
oldMediaQueries = $async$self._async_evaluate0$_mediaQueries;
|
|
73444
|
+
oldSources = $async$self._async_evaluate0$_mediaQuerySources;
|
|
73398
73445
|
$async$self._async_evaluate0$_mediaQueries = queries;
|
|
73446
|
+
$async$self._async_evaluate0$_mediaQuerySources = sources;
|
|
73399
73447
|
$async$goto = 3;
|
|
73400
|
-
return A._asyncAwait(callback.call$0(), $async$_async_evaluate0$_withMediaQueries$1$
|
|
73448
|
+
return A._asyncAwait(callback.call$0(), $async$_async_evaluate0$_withMediaQueries$1$3);
|
|
73401
73449
|
case 3:
|
|
73402
73450
|
// returning from await.
|
|
73403
73451
|
result = $async$result;
|
|
73404
73452
|
$async$self._async_evaluate0$_mediaQueries = oldMediaQueries;
|
|
73453
|
+
$async$self._async_evaluate0$_mediaQuerySources = oldSources;
|
|
73405
73454
|
$async$returnValue = result;
|
|
73406
73455
|
// goto return
|
|
73407
73456
|
$async$goto = 1;
|
|
@@ -73411,7 +73460,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
73411
73460
|
return A._asyncReturn($async$returnValue, $async$completer);
|
|
73412
73461
|
}
|
|
73413
73462
|
});
|
|
73414
|
-
return A._asyncStartSync($async$_async_evaluate0$_withMediaQueries$1$
|
|
73463
|
+
return A._asyncStartSync($async$_async_evaluate0$_withMediaQueries$1$3, $async$completer);
|
|
73415
73464
|
},
|
|
73416
73465
|
_async_evaluate0$_withStackFrame$1$3(member, nodeWithSpan, callback, $T) {
|
|
73417
73466
|
return this._withStackFrame$body$_EvaluateVisitor0(member, nodeWithSpan, callback, $T, $T);
|
|
@@ -73566,7 +73615,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
73566
73615
|
_addExceptionSpanAsync$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
|
|
73567
73616
|
var $async$goto = 0,
|
|
73568
73617
|
$async$completer = A._makeAsyncAwaitCompleter($async$type),
|
|
73569
|
-
$async$returnValue, $async$handler = 2, $async$currentError, $async$
|
|
73618
|
+
$async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
|
|
73570
73619
|
var $async$_async_evaluate0$_addExceptionSpanAsync$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
73571
73620
|
if ($async$errorCode === 1) {
|
|
73572
73621
|
$async$currentError = $async$result;
|
|
@@ -73635,7 +73684,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
73635
73684
|
_addErrorSpan$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
|
|
73636
73685
|
var $async$goto = 0,
|
|
73637
73686
|
$async$completer = A._makeAsyncAwaitCompleter($async$type),
|
|
73638
|
-
$async$returnValue, $async$handler = 2, $async$currentError, $async$
|
|
73687
|
+
$async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
|
|
73639
73688
|
var $async$_async_evaluate0$_addErrorSpan$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
73640
73689
|
if ($async$errorCode === 1) {
|
|
73641
73690
|
$async$currentError = $async$result;
|
|
@@ -74385,7 +74434,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
74385
74434
|
};
|
|
74386
74435
|
A._EvaluateVisitor__scopeForAtRoot_closure19.prototype = {
|
|
74387
74436
|
call$1(callback) {
|
|
74388
|
-
return this.$this._async_evaluate0$_withMediaQueries$1$
|
|
74437
|
+
return this.$this._async_evaluate0$_withMediaQueries$1$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure2(this.innerScope, callback), type$.Null);
|
|
74389
74438
|
},
|
|
74390
74439
|
$signature: 32
|
|
74391
74440
|
};
|
|
@@ -75221,7 +75270,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
75221
75270
|
if (t2 == null)
|
|
75222
75271
|
t2 = $async$self.queries;
|
|
75223
75272
|
$async$goto = 2;
|
|
75224
|
-
return A._asyncAwait(t1._async_evaluate0$_withMediaQueries$1$
|
|
75273
|
+
return A._asyncAwait(t1._async_evaluate0$_withMediaQueries$1$3(t2, $async$self.mergedSources, new A._EvaluateVisitor_visitMediaRule__closure2(t1, $async$self.node), type$.Null), $async$call$0);
|
|
75225
75274
|
case 2:
|
|
75226
75275
|
// returning from await.
|
|
75227
75276
|
// implicit return
|
|
@@ -75332,9 +75381,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
75332
75381
|
A._EvaluateVisitor_visitMediaRule_closure10.prototype = {
|
|
75333
75382
|
call$1(node) {
|
|
75334
75383
|
var t1;
|
|
75335
|
-
if (!type$.CssStyleRule_2._is(node))
|
|
75336
|
-
t1 = this.
|
|
75337
|
-
|
|
75384
|
+
if (!type$.CssStyleRule_2._is(node)) {
|
|
75385
|
+
t1 = this.mergedSources;
|
|
75386
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
75387
|
+
} else
|
|
75338
75388
|
t1 = true;
|
|
75339
75389
|
return t1;
|
|
75340
75390
|
},
|
|
@@ -76507,7 +76557,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
76507
76557
|
if (t2 == null)
|
|
76508
76558
|
t2 = $async$self.node.queries;
|
|
76509
76559
|
$async$goto = 2;
|
|
76510
|
-
return A._asyncAwait(t1._async_evaluate0$_withMediaQueries$1$
|
|
76560
|
+
return A._asyncAwait(t1._async_evaluate0$_withMediaQueries$1$3(t2, $async$self.mergedSources, new A._EvaluateVisitor_visitCssMediaRule__closure2(t1, $async$self.node), type$.Null), $async$call$0);
|
|
76511
76561
|
case 2:
|
|
76512
76562
|
// returning from await.
|
|
76513
76563
|
// implicit return
|
|
@@ -76614,9 +76664,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
76614
76664
|
A._EvaluateVisitor_visitCssMediaRule_closure10.prototype = {
|
|
76615
76665
|
call$1(node) {
|
|
76616
76666
|
var t1;
|
|
76617
|
-
if (!type$.CssStyleRule_2._is(node))
|
|
76618
|
-
t1 = this.
|
|
76619
|
-
|
|
76667
|
+
if (!type$.CssStyleRule_2._is(node)) {
|
|
76668
|
+
t1 = this.mergedSources;
|
|
76669
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
76670
|
+
} else
|
|
76620
76671
|
t1 = true;
|
|
76621
76672
|
return t1;
|
|
76622
76673
|
},
|
|
@@ -79103,7 +79154,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
79103
79154
|
t4 = t3.item1;
|
|
79104
79155
|
t3 = t3.item2;
|
|
79105
79156
|
if (!this.asynch)
|
|
79106
|
-
t2.push(A.
|
|
79157
|
+
t2.push(new A.BuiltInCallable0(t4, A._setArrayType([new A.Tuple2(t3, new A._parseFunctions__closure2(t1, callback), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)));
|
|
79107
79158
|
else
|
|
79108
79159
|
t2.push(new A.AsyncBuiltInCallable0(t4, t3, new A._parseFunctions__closure3(t1, callback)));
|
|
79109
79160
|
},
|
|
@@ -79207,11 +79258,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
79207
79258
|
A.ComplexSelector0.prototype = {
|
|
79208
79259
|
get$specificity() {
|
|
79209
79260
|
var result, _this = this,
|
|
79210
|
-
value = _this._complex$
|
|
79261
|
+
value = _this._complex$__ComplexSelector_specificity_FI;
|
|
79211
79262
|
if (value === $) {
|
|
79212
79263
|
result = B.JSArray_methods.fold$2(_this.components, 0, new A.ComplexSelector_specificity_closure0());
|
|
79213
|
-
|
|
79214
|
-
_this._complex$
|
|
79264
|
+
_this._complex$__ComplexSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
79265
|
+
_this._complex$__ComplexSelector_specificity_FI = result;
|
|
79215
79266
|
value = result;
|
|
79216
79267
|
}
|
|
79217
79268
|
return value;
|
|
@@ -79334,11 +79385,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
79334
79385
|
A.CompoundSelector0.prototype = {
|
|
79335
79386
|
get$specificity() {
|
|
79336
79387
|
var result, _this = this,
|
|
79337
|
-
value = _this._compound$
|
|
79388
|
+
value = _this._compound$__CompoundSelector_specificity_FI;
|
|
79338
79389
|
if (value === $) {
|
|
79339
79390
|
result = B.JSArray_methods.fold$2(_this.components, 0, new A.CompoundSelector_specificity_closure0());
|
|
79340
|
-
|
|
79341
|
-
_this._compound$
|
|
79391
|
+
_this._compound$__CompoundSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
79392
|
+
_this._compound$__CompoundSelector_specificity_FI = result;
|
|
79342
79393
|
value = result;
|
|
79343
79394
|
}
|
|
79344
79395
|
return value;
|
|
@@ -81124,7 +81175,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
81124
81175
|
return null;
|
|
81125
81176
|
},
|
|
81126
81177
|
visitMediaRule$1(node) {
|
|
81127
|
-
var queries, mergedQueries, t1, _this = this;
|
|
81178
|
+
var queries, mergedQueries, t1, mergedSources, t2, t3, _this = this;
|
|
81128
81179
|
if (_this._evaluate0$_declarationName != null)
|
|
81129
81180
|
throw A.wrapException(_this._evaluate0$_exception$2(string$.Media_, node.span));
|
|
81130
81181
|
queries = _this._evaluate0$_visitMediaQueries$1(node.query);
|
|
@@ -81132,8 +81183,20 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
81132
81183
|
t1 = mergedQueries == null;
|
|
81133
81184
|
if (!t1 && J.get$isEmpty$asx(mergedQueries))
|
|
81134
81185
|
return null;
|
|
81186
|
+
if (t1)
|
|
81187
|
+
mergedSources = B.Set_empty4;
|
|
81188
|
+
else {
|
|
81189
|
+
t2 = _this._evaluate0$_mediaQuerySources;
|
|
81190
|
+
t2.toString;
|
|
81191
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
|
|
81192
|
+
t3 = _this._evaluate0$_mediaQueries;
|
|
81193
|
+
t3.toString;
|
|
81194
|
+
t2.addAll$1(0, t3);
|
|
81195
|
+
t2.addAll$1(0, queries);
|
|
81196
|
+
mergedSources = t2;
|
|
81197
|
+
}
|
|
81135
81198
|
t1 = t1 ? queries : mergedQueries;
|
|
81136
|
-
_this._evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure6(_this, mergedQueries, queries, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure7(
|
|
81199
|
+
_this._evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitMediaRule_closure6(_this, mergedQueries, queries, mergedSources, node), node.hasDeclarations, new A._EvaluateVisitor_visitMediaRule_closure7(mergedSources), type$.ModifiableCssMediaRule_2, type$.Null);
|
|
81137
81200
|
return null;
|
|
81138
81201
|
},
|
|
81139
81202
|
_evaluate0$_visitMediaQueries$1(interpolation) {
|
|
@@ -81845,15 +81908,27 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
81845
81908
|
this._evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssKeyframeBlock$0(node.selector, node.span), new A._EvaluateVisitor_visitCssKeyframeBlock_closure3(this, node), false, new A._EvaluateVisitor_visitCssKeyframeBlock_closure4(), type$.ModifiableCssKeyframeBlock_2, type$.Null);
|
|
81846
81909
|
},
|
|
81847
81910
|
visitCssMediaRule$1(node) {
|
|
81848
|
-
var mergedQueries, t1, _this = this;
|
|
81911
|
+
var mergedQueries, t1, mergedSources, t2, t3, _this = this;
|
|
81849
81912
|
if (_this._evaluate0$_declarationName != null)
|
|
81850
81913
|
throw A.wrapException(_this._evaluate0$_exception$2(string$.Media_, node.span));
|
|
81851
81914
|
mergedQueries = A.NullableExtension_andThen0(_this._evaluate0$_mediaQueries, new A._EvaluateVisitor_visitCssMediaRule_closure5(_this, node));
|
|
81852
81915
|
t1 = mergedQueries == null;
|
|
81853
81916
|
if (!t1 && J.get$isEmpty$asx(mergedQueries))
|
|
81854
81917
|
return;
|
|
81918
|
+
if (t1)
|
|
81919
|
+
mergedSources = B.Set_empty4;
|
|
81920
|
+
else {
|
|
81921
|
+
t2 = _this._evaluate0$_mediaQuerySources;
|
|
81922
|
+
t2.toString;
|
|
81923
|
+
t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
|
|
81924
|
+
t3 = _this._evaluate0$_mediaQueries;
|
|
81925
|
+
t3.toString;
|
|
81926
|
+
t2.addAll$1(0, t3);
|
|
81927
|
+
t2.addAll$1(0, node.queries);
|
|
81928
|
+
mergedSources = t2;
|
|
81929
|
+
}
|
|
81855
81930
|
t1 = t1 ? node.queries : mergedQueries;
|
|
81856
|
-
_this._evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure6(_this, mergedQueries, node), false, new A._EvaluateVisitor_visitCssMediaRule_closure7(
|
|
81931
|
+
_this._evaluate0$_withParent$2$4$scopeWhen$through(A.ModifiableCssMediaRule$0(t1, node.span), new A._EvaluateVisitor_visitCssMediaRule_closure6(_this, mergedQueries, node, mergedSources), false, new A._EvaluateVisitor_visitCssMediaRule_closure7(mergedSources), type$.ModifiableCssMediaRule_2, type$.Null);
|
|
81857
81932
|
},
|
|
81858
81933
|
visitCssStyleRule$1(node) {
|
|
81859
81934
|
var t1, styleRule, t2, t3, t4, t5, originalSelector, rule, oldAtRootExcludingStyleRule, _this = this,
|
|
@@ -82000,16 +82075,19 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
82000
82075
|
_evaluate0$_withStyleRule$2(rule, callback) {
|
|
82001
82076
|
return this._evaluate0$_withStyleRule$1$2(rule, callback, type$.dynamic);
|
|
82002
82077
|
},
|
|
82003
|
-
_evaluate0$_withMediaQueries$1$
|
|
82004
|
-
var result,
|
|
82005
|
-
oldMediaQueries =
|
|
82006
|
-
|
|
82078
|
+
_evaluate0$_withMediaQueries$1$3(queries, sources, callback) {
|
|
82079
|
+
var result, _this = this,
|
|
82080
|
+
oldMediaQueries = _this._evaluate0$_mediaQueries,
|
|
82081
|
+
oldSources = _this._evaluate0$_mediaQuerySources;
|
|
82082
|
+
_this._evaluate0$_mediaQueries = queries;
|
|
82083
|
+
_this._evaluate0$_mediaQuerySources = sources;
|
|
82007
82084
|
result = callback.call$0();
|
|
82008
|
-
|
|
82085
|
+
_this._evaluate0$_mediaQueries = oldMediaQueries;
|
|
82086
|
+
_this._evaluate0$_mediaQuerySources = oldSources;
|
|
82009
82087
|
return result;
|
|
82010
82088
|
},
|
|
82011
|
-
_evaluate0$_withMediaQueries$
|
|
82012
|
-
return this._evaluate0$_withMediaQueries$1$
|
|
82089
|
+
_evaluate0$_withMediaQueries$3(queries, sources, callback) {
|
|
82090
|
+
return this._evaluate0$_withMediaQueries$1$3(queries, sources, callback, type$.dynamic);
|
|
82013
82091
|
},
|
|
82014
82092
|
_evaluate0$_withStackFrame$1$3(member, nodeWithSpan, callback) {
|
|
82015
82093
|
var oldMember, result, _this = this,
|
|
@@ -82595,7 +82673,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
82595
82673
|
};
|
|
82596
82674
|
A._EvaluateVisitor__scopeForAtRoot_closure13.prototype = {
|
|
82597
82675
|
call$1(callback) {
|
|
82598
|
-
return this.$this._evaluate0$_withMediaQueries$
|
|
82676
|
+
return this.$this._evaluate0$_withMediaQueries$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure1(this.innerScope, callback));
|
|
82599
82677
|
},
|
|
82600
82678
|
$signature: 26
|
|
82601
82679
|
};
|
|
@@ -83008,7 +83086,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
83008
83086
|
t2 = _this.mergedQueries;
|
|
83009
83087
|
if (t2 == null)
|
|
83010
83088
|
t2 = _this.queries;
|
|
83011
|
-
t1._evaluate0$_withMediaQueries$
|
|
83089
|
+
t1._evaluate0$_withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitMediaRule__closure1(t1, _this.node));
|
|
83012
83090
|
},
|
|
83013
83091
|
$signature: 1
|
|
83014
83092
|
};
|
|
@@ -83036,9 +83114,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
83036
83114
|
A._EvaluateVisitor_visitMediaRule_closure7.prototype = {
|
|
83037
83115
|
call$1(node) {
|
|
83038
83116
|
var t1;
|
|
83039
|
-
if (!type$.CssStyleRule_2._is(node))
|
|
83040
|
-
t1 = this.
|
|
83041
|
-
|
|
83117
|
+
if (!type$.CssStyleRule_2._is(node)) {
|
|
83118
|
+
t1 = this.mergedSources;
|
|
83119
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
83120
|
+
} else
|
|
83042
83121
|
t1 = true;
|
|
83043
83122
|
return t1;
|
|
83044
83123
|
},
|
|
@@ -83559,7 +83638,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
83559
83638
|
t2 = _this.mergedQueries;
|
|
83560
83639
|
if (t2 == null)
|
|
83561
83640
|
t2 = _this.node.queries;
|
|
83562
|
-
t1._evaluate0$_withMediaQueries$
|
|
83641
|
+
t1._evaluate0$_withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitCssMediaRule__closure1(t1, _this.node));
|
|
83563
83642
|
},
|
|
83564
83643
|
$signature: 1
|
|
83565
83644
|
};
|
|
@@ -83591,9 +83670,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
83591
83670
|
A._EvaluateVisitor_visitCssMediaRule_closure7.prototype = {
|
|
83592
83671
|
call$1(node) {
|
|
83593
83672
|
var t1;
|
|
83594
|
-
if (!type$.CssStyleRule_2._is(node))
|
|
83595
|
-
t1 = this.
|
|
83596
|
-
|
|
83673
|
+
if (!type$.CssStyleRule_2._is(node)) {
|
|
83674
|
+
t1 = this.mergedSources;
|
|
83675
|
+
t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
|
|
83676
|
+
} else
|
|
83597
83677
|
t1 = true;
|
|
83598
83678
|
return t1;
|
|
83599
83679
|
},
|
|
@@ -86352,11 +86432,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
86352
86432
|
J.set$context$x(J.get$options$x(context), context);
|
|
86353
86433
|
fiber = J.get$fiber$x(t1);
|
|
86354
86434
|
if (fiber != null)
|
|
86355
|
-
_this.result.push(A.
|
|
86435
|
+
_this.result.push(new A.BuiltInCallable0(tuple.item1, A._setArrayType([new A.Tuple2(tuple.item2, new A._parseFunctions__closure(fiber, callback, context), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)));
|
|
86356
86436
|
else {
|
|
86357
86437
|
t1 = _this.result;
|
|
86358
86438
|
if (!_this.asynch)
|
|
86359
|
-
t1.push(A.
|
|
86439
|
+
t1.push(new A.BuiltInCallable0(tuple.item1, A._setArrayType([new A.Tuple2(tuple.item2, new A._parseFunctions__closure0(callback, context), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)));
|
|
86360
86440
|
else
|
|
86361
86441
|
t1.push(new A.AsyncBuiltInCallable0(tuple.item1, tuple.item2, new A._parseFunctions__closure1(callback, context)));
|
|
86362
86442
|
}
|
|
@@ -87283,20 +87363,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
87283
87363
|
};
|
|
87284
87364
|
A._merge_closure1.prototype = {
|
|
87285
87365
|
call$1($arguments) {
|
|
87286
|
-
var t2,
|
|
87366
|
+
var t2,
|
|
87287
87367
|
t1 = J.getInterceptor$asx($arguments),
|
|
87288
87368
|
map1 = t1.$index($arguments, 0).assertMap$1("map1"),
|
|
87289
87369
|
map2 = t1.$index($arguments, 1).assertMap$1("map2");
|
|
87290
87370
|
t1 = type$.Value_2;
|
|
87291
|
-
t2 = A.LinkedHashMap_LinkedHashMap$
|
|
87292
|
-
|
|
87293
|
-
t4 = t3.get$current(t3);
|
|
87294
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
87295
|
-
}
|
|
87296
|
-
for (t3 = map2._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
|
|
87297
|
-
t4 = t3.get$current(t3);
|
|
87298
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
87299
|
-
}
|
|
87371
|
+
t2 = A.LinkedHashMap_LinkedHashMap$of(map1._map0$_contents, t1, t1);
|
|
87372
|
+
t2.addAll$1(0, map2._map0$_contents);
|
|
87300
87373
|
return new A.SassMap0(A.ConstantMap_ConstantMap$from(t2, t1, t1));
|
|
87301
87374
|
},
|
|
87302
87375
|
$signature: 38
|
|
@@ -87319,20 +87392,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
87319
87392
|
};
|
|
87320
87393
|
A._merge__closure0.prototype = {
|
|
87321
87394
|
call$1(oldValue) {
|
|
87322
|
-
var t1, t2,
|
|
87395
|
+
var t1, t2,
|
|
87323
87396
|
nestedMap = oldValue.tryMap$0();
|
|
87324
87397
|
if (nestedMap == null)
|
|
87325
87398
|
return this.map2;
|
|
87326
87399
|
t1 = type$.Value_2;
|
|
87327
|
-
t2 = A.LinkedHashMap_LinkedHashMap$
|
|
87328
|
-
|
|
87329
|
-
t4 = t3.get$current(t3);
|
|
87330
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
87331
|
-
}
|
|
87332
|
-
for (t3 = this.map2._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
|
|
87333
|
-
t4 = t3.get$current(t3);
|
|
87334
|
-
t2.$indexSet(0, t4.key, t4.value);
|
|
87335
|
-
}
|
|
87400
|
+
t2 = A.LinkedHashMap_LinkedHashMap$of(nestedMap._map0$_contents, t1, t1);
|
|
87401
|
+
t2.addAll$1(0, this.map2._map0$_contents);
|
|
87336
87402
|
return new A.SassMap0(A.ConstantMap_ConstantMap$from(t2, t1, t1));
|
|
87337
87403
|
},
|
|
87338
87404
|
$signature: 461
|
|
@@ -87551,16 +87617,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
87551
87617
|
};
|
|
87552
87618
|
A.legacyMapClass_closure4.prototype = {
|
|
87553
87619
|
call$3(thisArg, index, value) {
|
|
87554
|
-
var t3,
|
|
87620
|
+
var t3,
|
|
87555
87621
|
t1 = J.getInterceptor$x(thisArg),
|
|
87556
87622
|
t2 = t1.get$dartValue(thisArg)._map0$_contents,
|
|
87557
87623
|
key = J.elementAt$1$ax(t2.get$keys(t2), index);
|
|
87558
87624
|
t2 = type$.Value_2;
|
|
87559
|
-
t3 = A.LinkedHashMap_LinkedHashMap$
|
|
87560
|
-
for (t4 = t1.get$dartValue(thisArg)._map0$_contents, t4 = t4.get$entries(t4), t4 = t4.get$iterator(t4); t4.moveNext$0();) {
|
|
87561
|
-
t5 = t4.get$current(t4);
|
|
87562
|
-
t3.$indexSet(0, t5.key, t5.value);
|
|
87563
|
-
}
|
|
87625
|
+
t3 = A.LinkedHashMap_LinkedHashMap$of(t1.get$dartValue(thisArg)._map0$_contents, t2, t2);
|
|
87564
87626
|
t3.$indexSet(0, key, A.unwrapValue(value));
|
|
87565
87627
|
t1.set$dartValue(thisArg, new A.SassMap0(A.ConstantMap_ConstantMap$from(t3, t2, t2)));
|
|
87566
87628
|
},
|
|
@@ -88114,7 +88176,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
88114
88176
|
return this._media_query0$_name;
|
|
88115
88177
|
}
|
|
88116
88178
|
};
|
|
88117
|
-
A.MediaQuerySuccessfulMergeResult0.prototype = {
|
|
88179
|
+
A.MediaQuerySuccessfulMergeResult0.prototype = {
|
|
88180
|
+
toString$0(_) {
|
|
88181
|
+
return this.query.toString$0(0);
|
|
88182
|
+
}
|
|
88183
|
+
};
|
|
88118
88184
|
A.MediaQueryParser0.prototype = {
|
|
88119
88185
|
parse$0() {
|
|
88120
88186
|
return this.wrapSpanFormatException$1(new A.MediaQueryParser_parse_closure0(this));
|
|
@@ -88421,11 +88487,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
88421
88487
|
A.MixinRule0.prototype = {
|
|
88422
88488
|
get$hasContent() {
|
|
88423
88489
|
var result, _this = this,
|
|
88424
|
-
value = _this._mixin_rule$
|
|
88490
|
+
value = _this._mixin_rule$__MixinRule_hasContent_FI;
|
|
88425
88491
|
if (value === $) {
|
|
88426
88492
|
result = J.$eq$(B.C__HasContentVisitor0.visitChildren$1(_this.children), true);
|
|
88427
|
-
|
|
88428
|
-
_this._mixin_rule$
|
|
88493
|
+
_this._mixin_rule$__MixinRule_hasContent_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
88494
|
+
_this._mixin_rule$__MixinRule_hasContent_FI = result;
|
|
88429
88495
|
value = result;
|
|
88430
88496
|
}
|
|
88431
88497
|
return value;
|
|
@@ -89953,10 +90019,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
89953
90019
|
t2 = t2 || next >= 128;
|
|
89954
90020
|
} else
|
|
89955
90021
|
t2 = true;
|
|
89956
|
-
if (!t2)
|
|
89957
|
-
t2 = next >= 48 && next <= 57;
|
|
89958
|
-
|
|
89959
|
-
} else
|
|
90022
|
+
if (!t2)
|
|
90023
|
+
t2 = next >= 48 && next <= 57 || next === 45;
|
|
90024
|
+
else
|
|
89960
90025
|
t2 = true;
|
|
89961
90026
|
if (t2)
|
|
89962
90027
|
text._contents += A.Primitives_stringFromCharCode(t1.readChar$0());
|
|
@@ -90515,11 +90580,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
90515
90580
|
},
|
|
90516
90581
|
get$specificity() {
|
|
90517
90582
|
var result, _this = this,
|
|
90518
|
-
value = _this._pseudo$
|
|
90583
|
+
value = _this._pseudo$__PseudoSelector_specificity_FI;
|
|
90519
90584
|
if (value === $) {
|
|
90520
90585
|
result = new A.PseudoSelector_specificity_closure0(_this).call$0();
|
|
90521
|
-
|
|
90522
|
-
_this._pseudo$
|
|
90586
|
+
_this._pseudo$__PseudoSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
90587
|
+
_this._pseudo$__PseudoSelector_specificity_FI = result;
|
|
90523
90588
|
value = result;
|
|
90524
90589
|
}
|
|
90525
90590
|
return value;
|
|
@@ -94136,12 +94201,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
94136
94201
|
A.SassString0.prototype = {
|
|
94137
94202
|
get$_string0$_sassLength() {
|
|
94138
94203
|
var t1, result, _this = this,
|
|
94139
|
-
value = _this._string0$
|
|
94204
|
+
value = _this._string0$__SassString__sassLength_FI;
|
|
94140
94205
|
if (value === $) {
|
|
94141
94206
|
t1 = new A.Runes(_this._string0$_text);
|
|
94142
94207
|
result = t1.get$length(t1);
|
|
94143
|
-
|
|
94144
|
-
_this._string0$
|
|
94208
|
+
_this._string0$__SassString__sassLength_FI !== $ && A.throwUnnamedLateFieldADI();
|
|
94209
|
+
_this._string0$__SassString__sassLength_FI = result;
|
|
94145
94210
|
value = result;
|
|
94146
94211
|
}
|
|
94147
94212
|
return value;
|
|
@@ -99434,7 +99499,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
99434
99499
|
_inherit = hunkHelpers.inherit,
|
|
99435
99500
|
_inheritMany = hunkHelpers.inheritMany;
|
|
99436
99501
|
_inherit(A.Object, null);
|
|
99437
|
-
_inheritMany(A.Object, [A.JS_CONST, J.Interceptor, J.ArrayIterator, A.Iterable, A.CastIterator, A.Closure, A.MapMixin, A.Error, A._ListBase_Object_ListMixin, A.SentinelValue, A.ListIterator, A.Iterator, A.ExpandIterator, A.EmptyIterator, A.FollowedByIterator, A.WhereTypeIterator, A.FixedLengthListMixin, A.UnmodifiableListMixin, A.Symbol, A.MapView, A.ConstantMap, A.JSInvocationMirror, A.TypeErrorDecoder, A.NullThrownFromJavaScriptException, A.ExceptionAndStackTrace, A._StackTrace, A._Required, A.LinkedHashMapCell, A.LinkedHashMapKeyIterator, A.JSSyntaxRegExp, A._MatchImplementation, A._AllMatchesIterator, A.StringMatch, A._StringAllMatchesIterator, A._Cell, A.Rti, A._FunctionParameters, A._Type, A._TimerImpl, A._AsyncAwaitCompleter, A._IterationMarker, A._SyncStarIterator, A.AsyncError, A._Completer, A._FutureListener, A._Future, A._AsyncCallbackEntry, A.Stream, A.StreamTransformerBase, A._StreamController, A._SyncStreamControllerDispatch, A._AsyncStreamControllerDispatch, A._BufferingStreamSubscription, A._AddStreamState, A._DelayedEvent, A._DelayedDone, A._PendingEvents, A._StreamIterator, A._ZoneFunction, A.
|
|
99502
|
+
_inheritMany(A.Object, [A.JS_CONST, J.Interceptor, J.ArrayIterator, A.Iterable, A.CastIterator, A.Closure, A.MapMixin, A.Error, A._ListBase_Object_ListMixin, A.SentinelValue, A.ListIterator, A.Iterator, A.ExpandIterator, A.EmptyIterator, A.FollowedByIterator, A.WhereTypeIterator, A.FixedLengthListMixin, A.UnmodifiableListMixin, A.Symbol, A.MapView, A.ConstantMap, A.JSInvocationMirror, A.TypeErrorDecoder, A.NullThrownFromJavaScriptException, A.ExceptionAndStackTrace, A._StackTrace, A._Required, A.LinkedHashMapCell, A.LinkedHashMapKeyIterator, A.JSSyntaxRegExp, A._MatchImplementation, A._AllMatchesIterator, A.StringMatch, A._StringAllMatchesIterator, A._Cell, A.Rti, A._FunctionParameters, A._Type, A._TimerImpl, A._AsyncAwaitCompleter, A._IterationMarker, A._SyncStarIterator, A.AsyncError, A._Completer, A._FutureListener, A._Future, A._AsyncCallbackEntry, A.Stream, A.StreamTransformerBase, A._StreamController, A._SyncStreamControllerDispatch, A._AsyncStreamControllerDispatch, A._BufferingStreamSubscription, A._AddStreamState, A._DelayedEvent, A._DelayedDone, A._PendingEvents, A._StreamIterator, A._ZoneFunction, A._ZoneSpecification, A._ZoneDelegate, A._Zone, A._HashMapKeyIterator, A.__SetBase_Object_SetMixin, A._LinkedHashSetCell, A._LinkedHashSetIterator, A.ListMixin, A._MapBaseValueIterator, A._UnmodifiableMapMixin, A._ListQueueIterator, A.SetMixin, A._UnmodifiableSetMixin, A.Codec, A._Base64Encoder, A.ChunkedConversionSink, A._JsonStringifier, A.StringConversionSinkMixin, A._Utf8Encoder, A._Utf8Decoder, A.DateTime, A.Duration, A._Enum, A.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.MapEntry, A.Null, A._StringStackTrace, A.RuneIterator, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, A.Expando, A._JSRandom, A.ArgParser, A.ArgResults, A.Option, A.OptionType, A.Parser0, A._Usage, A.ErrorResult, A.ValueResult, A.StreamCompleter, A.StreamGroup, A._StreamGroupState, A.StreamQueue, A._NextRequest, A.Repl, A.ReplAdapter, A.DefaultEquality, A.IterableEquality, A.ListEquality, A._MapEntry, A.MapEquality, A._QueueList_Object_ListMixin, A._DelegatingIterableBase, A.UnmodifiableSetMixin, A.Context, A._PathDirection, A._PathRelation, A.Style, A.ParsedPath, A.PathException, A.CssMediaQuery, A._SingletonCssMediaQueryMergeResult, A.MediaQuerySuccessfulMergeResult, A.AstNode, A.ModifiableCssValue, A.__IsInvisibleVisitor_Object_EveryCssVisitor, A.CssValue, A._FakeAstNode, A.Argument, A.ArgumentDeclaration, A.ArgumentInvocation, A.AtRootQuery, A.ConfiguredVariable, A.BinaryOperationExpression, A.BooleanExpression, A.CalculationExpression, A.ColorExpression, A.FunctionExpression, A.IfExpression, A.InterpolatedFunctionExpression, A.ListExpression, A.MapExpression, A.NullExpression, A.NumberExpression, A.ParenthesizedExpression, A.SelectorExpression, A.StringExpression, A.SupportsExpression, A.UnaryOperationExpression, A.ValueExpression, A.VariableExpression, A.DynamicImport, A.StaticImport, A.Interpolation, A.ParentStatement, A.ContentRule, A.DebugRule, A.ErrorRule, A.ExtendRule, A.ForwardRule, A.IfRule, A.IfRuleClause, A.ImportRule, A.IncludeRule, A.LoudComment, A.__HasContentVisitor_Object_StatementSearchVisitor, A.ReturnRule, A.SilentComment, A.UseRule, A.VariableDeclaration, A.WarnRule, A.SupportsAnything, A.SupportsDeclaration, A.SupportsFunction, A.SupportsInterpolation, A.SupportsNegation, A.SupportsOperation, A.Selector, A.__IsInvisibleVisitor_Object_AnySelectorVisitor, A.__IsBogusVisitor_Object_AnySelectorVisitor, A.__IsUselessVisitor_Object_AnySelectorVisitor, A.ComplexSelectorComponent, A.QualifiedName, A.AsyncEnvironment, A._EnvironmentModule0, A.AsyncImportCache, A.AsyncBuiltInCallable, A.BuiltInCallable, A.PlainCssCallable, A.UserDefinedCallable, A.CompileResult, A.Configuration, A.ConfiguredValue, A.Environment, A._EnvironmentModule, A.SourceSpanException, A.SassScriptException, A.ExecutableOptions, A.UsageException, A._Watcher, A.EmptyExtensionStore, A.Extension, A.Extender, A.ExtensionStore, A.ImportCache, A.AsyncImporter, A.ImporterResult, A.InterpolationBuffer, A.FileSystemException, A.Stderr, A._QuietLogger, A.StderrLogger, A.TerseLogger, A.TrackingLogger, A.BuiltInModule, A.ForwardedModuleView, A.ShadowedModuleView, A.Parser, A.StylesheetGraph, A.StylesheetNode, A.MultiDirWatcher, A.MultiSpan, A.NoSourceMapBuffer, A.SourceMapBuffer, A.Value, A.CalculationOperation, A.CalculationInterpolation, A._ColorFormatEnum, A.SpanColorFormat, A.AnySelectorVisitor, A._EvaluateVisitor0, A._ImportedCssVisitor0, A.EvaluateResult, A._EvaluationContext0, A._ArgumentResults0, A._LoadedStylesheet0, A._CloneCssVisitor, A.Evaluator, A._EvaluateVisitor, A._ImportedCssVisitor, A._EvaluationContext, A._ArgumentResults, A._LoadedStylesheet, A.EveryCssVisitor, A.__FindDependenciesVisitor_Object_RecursiveStatementVisitor, A.RecursiveStatementVisitor, A._SerializeVisitor, A.SerializeResult, A.StatementSearchVisitor, A.Entry, A.Mapping, A.TargetLineEntry, A.TargetEntry, A.SourceFile, A.SourceLocationMixin, A.SourceSpanMixin, A.Highlighter, A._Highlight, A._Line, A.SourceLocation, A.Chain, A.Frame, A.LazyTrace, A.Trace, A.UnparsedFrame, A.StringScanner, A._SpanScannerState, A.AsciiGlyphSet, A.UnicodeGlyphSet, A.Tuple2, A.Tuple3, A.Tuple4, A.WatchEvent, A.ChangeType, A.AnySelectorVisitor0, A.SupportsAnything0, A.Argument0, A.ArgumentDeclaration0, A.ArgumentInvocation0, A.Value0, A.AsyncImporter0, A.AsyncBuiltInCallable0, A.AsyncEnvironment0, A._EnvironmentModule2, A._EvaluateVisitor2, A._ImportedCssVisitor2, A.EvaluateResult0, A._EvaluationContext2, A._ArgumentResults2, A._LoadedStylesheet2, A.AsyncImportCache0, A.Parser1, A.AtRootQuery0, A.ParentStatement0, A.AstNode0, A.Selector0, A.BinaryOperationExpression0, A.BooleanExpression0, A.BuiltInCallable0, A.BuiltInModule0, A.CalculationExpression0, A.CalculationOperation0, A.CalculationInterpolation0, A._CloneCssVisitor0, A.ColorExpression0, A._ColorFormatEnum0, A.SpanColorFormat0, A.CompileResult0, A.ComplexSelectorComponent0, A.Configuration0, A.ConfiguredValue0, A.ConfiguredVariable0, A.ContentRule0, A.DebugRule0, A.SupportsDeclaration0, A.DynamicImport0, A.EmptyExtensionStore0, A.Environment0, A._EnvironmentModule1, A.ErrorRule0, A._EvaluateVisitor1, A._ImportedCssVisitor1, A._EvaluationContext1, A._ArgumentResults1, A._LoadedStylesheet1, A.EveryCssVisitor0, A.SassScriptException0, A.ExtendRule0, A.Extension0, A.Extender0, A.ExtensionStore0, A.ForwardRule0, A.ForwardedModuleView0, A.FunctionExpression0, A.SupportsFunction0, A.IfExpression0, A.IfRule0, A.IfRuleClause0, A.NodeImporter, A.ImportCache0, A.ImportRule0, A.IncludeRule0, A.InterpolatedFunctionExpression0, A.Interpolation0, A.SupportsInterpolation0, A.InterpolationBuffer0, A.ListExpression0, A._QuietLogger0, A.LoudComment0, A.MapExpression0, A.CssMediaQuery0, A._SingletonCssMediaQueryMergeResult0, A.MediaQuerySuccessfulMergeResult0, A.__HasContentVisitor_Object_StatementSearchVisitor0, A.MultiSpan0, A.SupportsNegation0, A.NoSourceMapBuffer0, A._FakeAstNode0, A.__IsInvisibleVisitor_Object_EveryCssVisitor0, A.FileSystemException0, A.Stderr0, A.NodeToDartLogger, A.NullExpression0, A.NumberExpression0, A.SupportsOperation0, A.ParenthesizedExpression0, A.PlainCssCallable0, A.QualifiedName0, A.ImporterResult0, A.ReturnRule0, A.__IsInvisibleVisitor_Object_AnySelectorVisitor0, A.__IsBogusVisitor_Object_AnySelectorVisitor0, A.__IsUselessVisitor_Object_AnySelectorVisitor0, A.SelectorExpression0, A._SerializeVisitor0, A.SerializeResult0, A.ShadowedModuleView0, A.SilentComment0, A.SourceMapBuffer0, A.StatementSearchVisitor0, A.StaticImport0, A.StderrLogger0, A.StringExpression0, A.SupportsExpression0, A.TerseLogger0, A.UnaryOperationExpression0, A.UseRule0, A.UserDefinedCallable0, A.CssValue0, A.ValueExpression0, A.ModifiableCssValue0, A.VariableExpression0, A.VariableDeclaration0, A.WarnRule0]);
|
|
99438
99503
|
_inheritMany(J.Interceptor, [J.JSBool, J.JSNull, J.JavaScriptObject, J.JSArray, J.JSNumber, J.JSString, A.NativeTypedData]);
|
|
99439
99504
|
_inherit(J.LegacyJavaScriptObject, J.JavaScriptObject);
|
|
99440
99505
|
_inheritMany(J.LegacyJavaScriptObject, [J.PlainJavaScriptObject, J.UnknownJavaScriptObject, J.JavaScriptFunction, A.Stdin, A.Stdout, A.ReadlineModule, A.ReadlineOptions, A.ReadlineInterface, A.BufferModule, A.BufferConstants, A.Buffer, A.ConsoleModule, A.Console, A.EventEmitter, A.FS, A.FSConstants, A.FSWatcher, A.ReadStream, A.ReadStreamOptions, A.WriteStream, A.WriteStreamOptions, A.FileOptions, A.StatOptions, A.MkdirOptions, A.RmdirOptions, A.WatchOptions, A.WatchFileOptions, A.Stats, A.Promise, A.Date, A.JsError, A.Atomics, A.Modules, A.Module1, A.Net, A.Socket, A.NetAddress, A.NetServer, A.NodeJsError, A.Process, A.CPUUsage, A.Release, A.StreamModule, A.Readable, A.Writable, A.Duplex, A.Transform, A.WritableOptions, A.ReadableOptions, A.Immediate, A.Timeout, A.TTY, A.Util, A.JSArray0, A.Chokidar, A.ChokidarOptions, A.ChokidarWatcher, A.JSFunction, A.NodeImporterResult, A.RenderContext, A.RenderContextOptions, A.RenderContextResult, A.RenderContextResultStats, A.JSClass, A.JSUrl, A._PropertyDescriptor, A.JSArray1, A.Chokidar0, A.ChokidarOptions0, A.ChokidarWatcher0, A._NodeSassColor, A._Channels, A.CompileOptions, A.NodeCompileResult, A.Exports, A.LoggerNamespace, A.FiberClass, A.Fiber, A.JSFunction0, A.ImmutableList, A.ImmutableMap, A.NodeImporter0, A.CanonicalizeOptions, A.NodeImporterResult0, A.NodeImporterResult1, A._NodeSassList, A._ConstructorOptions, A.NodeLogger, A.WarnOptions, A.DebugOptions, A._NodeSassMap, A._NodeSassNumber, A._ConstructorOptions0, A.JSClass0, A.RenderContext0, A.RenderContextOptions0, A.RenderContextResult0, A.RenderContextResultStats0, A.RenderOptions, A.RenderResult, A.RenderResultStats, A._Exports, A._NodeSassString, A._ConstructorOptions1, A.Types, A.JSUrl0, A._PropertyDescriptor0]);
|
|
@@ -99484,7 +99549,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
99484
99549
|
_inheritMany(A._BufferingStreamSubscription, [A._ControllerSubscription, A._ForwardingStreamSubscription]);
|
|
99485
99550
|
_inherit(A._StreamControllerAddStreamState, A._AddStreamState);
|
|
99486
99551
|
_inheritMany(A._DelayedEvent, [A._DelayedData, A._DelayedError]);
|
|
99487
|
-
_inherit(A._StreamImplEvents, A._PendingEvents);
|
|
99488
99552
|
_inherit(A._ExpandStream, A._ForwardingStream);
|
|
99489
99553
|
_inheritMany(A._Zone, [A._CustomZone, A._RootZone]);
|
|
99490
99554
|
_inherit(A._IdentityHashMap, A._HashMap);
|
|
@@ -99628,7 +99692,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
99628
99692
|
arrayRti: Symbol("$ti")
|
|
99629
99693
|
};
|
|
99630
99694
|
A._Universe_addRules(init.typeUniverse, JSON.parse('{"PlainJavaScriptObject":"LegacyJavaScriptObject","UnknownJavaScriptObject":"LegacyJavaScriptObject","JavaScriptFunction":"LegacyJavaScriptObject","Stdin":"LegacyJavaScriptObject","Stdout":"LegacyJavaScriptObject","ReadlineModule":"LegacyJavaScriptObject","ReadlineOptions":"LegacyJavaScriptObject","ReadlineInterface":"LegacyJavaScriptObject","BufferModule":"LegacyJavaScriptObject","BufferConstants":"LegacyJavaScriptObject","Buffer":"LegacyJavaScriptObject","ConsoleModule":"LegacyJavaScriptObject","Console":"LegacyJavaScriptObject","EventEmitter":"LegacyJavaScriptObject","FS":"LegacyJavaScriptObject","FSConstants":"LegacyJavaScriptObject","FSWatcher":"LegacyJavaScriptObject","ReadStream":"LegacyJavaScriptObject","ReadStreamOptions":"LegacyJavaScriptObject","WriteStream":"LegacyJavaScriptObject","WriteStreamOptions":"LegacyJavaScriptObject","FileOptions":"LegacyJavaScriptObject","StatOptions":"LegacyJavaScriptObject","MkdirOptions":"LegacyJavaScriptObject","RmdirOptions":"LegacyJavaScriptObject","WatchOptions":"LegacyJavaScriptObject","WatchFileOptions":"LegacyJavaScriptObject","Stats":"LegacyJavaScriptObject","Promise":"LegacyJavaScriptObject","Date":"LegacyJavaScriptObject","JsError":"LegacyJavaScriptObject","Atomics":"LegacyJavaScriptObject","Modules":"LegacyJavaScriptObject","Module1":"LegacyJavaScriptObject","Net":"LegacyJavaScriptObject","Socket":"LegacyJavaScriptObject","NetAddress":"LegacyJavaScriptObject","NetServer":"LegacyJavaScriptObject","NodeJsError":"LegacyJavaScriptObject","JsAssertionError":"LegacyJavaScriptObject","JsRangeError":"LegacyJavaScriptObject","JsReferenceError":"LegacyJavaScriptObject","JsSyntaxError":"LegacyJavaScriptObject","JsTypeError":"LegacyJavaScriptObject","JsSystemError":"LegacyJavaScriptObject","Process":"LegacyJavaScriptObject","CPUUsage":"LegacyJavaScriptObject","Release":"LegacyJavaScriptObject","StreamModule":"LegacyJavaScriptObject","Readable":"LegacyJavaScriptObject","Writable":"LegacyJavaScriptObject","Duplex":"LegacyJavaScriptObject","Transform":"LegacyJavaScriptObject","WritableOptions":"LegacyJavaScriptObject","ReadableOptions":"LegacyJavaScriptObject","Immediate":"LegacyJavaScriptObject","Timeout":"LegacyJavaScriptObject","TTY":"LegacyJavaScriptObject","TTYReadStream":"LegacyJavaScriptObject","TTYWriteStream":"LegacyJavaScriptObject","Util":"LegacyJavaScriptObject","JSArray0":"LegacyJavaScriptObject","Chokidar":"LegacyJavaScriptObject","ChokidarOptions":"LegacyJavaScriptObject","ChokidarWatcher":"LegacyJavaScriptObject","JSFunction":"LegacyJavaScriptObject","NodeImporterResult":"LegacyJavaScriptObject","RenderContext":"LegacyJavaScriptObject","RenderContextOptions":"LegacyJavaScriptObject","RenderContextResult":"LegacyJavaScriptObject","RenderContextResultStats":"LegacyJavaScriptObject","JSClass":"LegacyJavaScriptObject","JSUrl":"LegacyJavaScriptObject","_PropertyDescriptor":"LegacyJavaScriptObject","JSArray1":"LegacyJavaScriptObject","Chokidar0":"LegacyJavaScriptObject","ChokidarOptions0":"LegacyJavaScriptObject","ChokidarWatcher0":"LegacyJavaScriptObject","_NodeSassColor":"LegacyJavaScriptObject","_Channels":"LegacyJavaScriptObject","CompileOptions":"LegacyJavaScriptObject","CompileStringOptions":"LegacyJavaScriptObject","NodeCompileResult":"LegacyJavaScriptObject","_NodeException":"LegacyJavaScriptObject","Exports":"LegacyJavaScriptObject","LoggerNamespace":"LegacyJavaScriptObject","Fiber":"LegacyJavaScriptObject","FiberClass":"LegacyJavaScriptObject","JSFunction0":"LegacyJavaScriptObject","ImmutableList":"LegacyJavaScriptObject","ImmutableMap":"LegacyJavaScriptObject","NodeImporter0":"LegacyJavaScriptObject","CanonicalizeOptions":"LegacyJavaScriptObject","NodeImporterResult0":"LegacyJavaScriptObject","NodeImporterResult1":"LegacyJavaScriptObject","_NodeSassList":"LegacyJavaScriptObject","_ConstructorOptions":"LegacyJavaScriptObject","WarnOptions":"LegacyJavaScriptObject","DebugOptions":"LegacyJavaScriptObject","NodeLogger":"LegacyJavaScriptObject","_NodeSassMap":"LegacyJavaScriptObject","_NodeSassNumber":"LegacyJavaScriptObject","_ConstructorOptions0":"LegacyJavaScriptObject","JSClass0":"LegacyJavaScriptObject","RenderContext0":"LegacyJavaScriptObject","RenderContextOptions0":"LegacyJavaScriptObject","RenderContextResult0":"LegacyJavaScriptObject","RenderContextResultStats0":"LegacyJavaScriptObject","RenderOptions":"LegacyJavaScriptObject","RenderResult":"LegacyJavaScriptObject","RenderResultStats":"LegacyJavaScriptObject","_Exports":"LegacyJavaScriptObject","_NodeSassString":"LegacyJavaScriptObject","_ConstructorOptions1":"LegacyJavaScriptObject","Types":"LegacyJavaScriptObject","JSUrl0":"LegacyJavaScriptObject","_PropertyDescriptor0":"LegacyJavaScriptObject","NativeFloat32List":"NativeTypedArrayOfDouble","JSBool":{"bool":[]},"JSNull":{"Null":[]},"LegacyJavaScriptObject":{"Promise":[],"JsSystemError":[],"_NodeSassColor":[],"_Channels":[],"CompileOptions":[],"CompileStringOptions":[],"NodeCompileResult":[],"_NodeException":[],"Fiber":[],"JSFunction0":[],"ImmutableList":[],"ImmutableMap":[],"NodeImporter0":[],"NodeImporterResult0":[],"NodeImporterResult1":[],"_NodeSassList":[],"_ConstructorOptions":[],"WarnOptions":[],"DebugOptions":[],"_NodeSassMap":[],"_NodeSassNumber":[],"_ConstructorOptions0":[],"JSClass0":[],"RenderContextOptions0":[],"RenderOptions":[],"RenderResult":[],"_NodeSassString":[],"_ConstructorOptions1":[],"JSUrl0":[]},"JSArray":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"JSUnmodifiableArray":{"JSArray":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"JSNumber":{"double":[],"num":[],"Comparable":["num"]},"JSInt":{"double":[],"int":[],"num":[],"Comparable":["num"]},"JSNumNotInt":{"double":[],"num":[],"Comparable":["num"]},"JSString":{"String":[],"Comparable":["String"]},"_CastIterableBase":{"Iterable":["2"]},"CastIterable":{"_CastIterableBase":["1","2"],"Iterable":["2"],"Iterable.E":"2"},"_EfficientLengthCastIterable":{"CastIterable":["1","2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_CastListBase":{"ListMixin":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"]},"CastList":{"_CastListBase":["1","2"],"ListMixin":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2","ListMixin.E":"2"},"CastSet":{"Set":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"CastMap":{"MapMixin":["3","4"],"Map":["3","4"],"MapMixin.K":"3","MapMixin.V":"4"},"LateError":{"Error":[]},"CodeUnits":{"ListMixin":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"EfficientLengthIterable":{"Iterable":["1"]},"ListIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"SubListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"MappedIterable":{"Iterable":["2"],"Iterable.E":"2"},"EfficientLengthMappedIterable":{"MappedIterable":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MappedListIterable":{"ListIterable":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2","ListIterable.E":"2"},"WhereIterable":{"Iterable":["1"],"Iterable.E":"1"},"ExpandIterable":{"Iterable":["2"],"Iterable.E":"2"},"TakeIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthTakeIterable":{"TakeIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthSkipIterable":{"SkipIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipWhileIterable":{"Iterable":["1"],"Iterable.E":"1"},"EmptyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"FollowedByIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthFollowedByIterable":{"FollowedByIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"WhereTypeIterable":{"Iterable":["1"],"Iterable.E":"1"},"UnmodifiableListBase":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"ReversedListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"Symbol":{"Symbol0":[]},"ConstantMapView":{"UnmodifiableMapView":["1","2"],"Map":["1","2"]},"ConstantMap":{"Map":["1","2"]},"ConstantStringMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"_ConstantMapKeyIterable":{"Iterable":["1"],"Iterable.E":"1"},"GeneralConstantMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"Instantiation":{"Function":[]},"Instantiation1":{"Function":[]},"NullError":{"TypeError":[],"Error":[]},"JsNoSuchMethodError":{"Error":[]},"UnknownJsTypeError":{"Error":[]},"NullThrownFromJavaScriptException":{"Exception":[]},"_StackTrace":{"StackTrace":[]},"Closure":{"Function":[]},"Closure0Args":{"Function":[]},"Closure2Args":{"Function":[]},"TearOffClosure":{"Function":[]},"StaticClosure":{"Function":[]},"BoundClosure":{"Function":[]},"RuntimeError":{"Error":[]},"JsLinkedHashMap":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"LinkedHashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_MatchImplementation":{"RegExpMatch":[],"Match":[]},"_AllMatchesIterable":{"Iterable":["RegExpMatch"],"Iterable.E":"RegExpMatch"},"StringMatch":{"Match":[]},"_StringAllMatchesIterable":{"Iterable":["Match"],"Iterable.E":"Match"},"NativeTypedArray":{"JavaScriptIndexingBehavior":["1"]},"NativeTypedArrayOfDouble":{"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"NativeTypedArrayOfInt":{"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"NativeInt16List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeInt32List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeInt8List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint16List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint32List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint8ClampedList":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"NativeUint8List":{"NativeTypedArrayOfInt":[],"ListMixin":["int"],"Uint8List":[],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListMixin.E":"int"},"_Type":{"Type":[]},"_Error":{"Error":[]},"_TypeError":{"TypeError":[],"Error":[]},"AsyncError":{"Error":[]},"_Future":{"Future":["1"]},"_SyncStarIterable":{"Iterable":["1"],"Iterable.E":"1"},"_AsyncCompleter":{"_Completer":["1"]},"_SyncCompleter":{"_Completer":["1"]},"_StreamController":{"EventSink":["1"]},"_AsyncStreamController":{"_StreamController":["1"],"EventSink":["1"]},"_SyncStreamController":{"_StreamController":["1"],"EventSink":["1"]},"_ControllerStream":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_ControllerSubscription":{"_BufferingStreamSubscription":["1"],"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_BufferingStreamSubscription":{"StreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamImpl":{"Stream":["1"]},"_ForwardingStream":{"Stream":["2"]},"_ForwardingStreamSubscription":{"_BufferingStreamSubscription":["2"],"StreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_ExpandStream":{"_ForwardingStream":["1","2"],"Stream":["2"],"Stream.T":"2"},"_ZoneSpecification":{"ZoneSpecification":[]},"_ZoneDelegate":{"ZoneDelegate":[]},"_Zone":{"Zone":[]},"_CustomZone":{"Zone":[]},"_RootZone":{"Zone":[]},"Queue":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"_HashMap":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_IdentityHashMap":{"_HashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_HashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_LinkedIdentityHashMap":{"JsLinkedHashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_LinkedCustomHashMap":{"JsLinkedHashMap":["1","2"],"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"_LinkedHashSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_LinkedIdentityHashSet":{"_LinkedHashSet":["1"],"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"UnmodifiableListView":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1"},"IterableBase":{"Iterable":["1"]},"ListBase":{"ListMixin":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapBase":{"MapMixin":["1","2"],"Map":["1","2"]},"MapMixin":{"Map":["1","2"]},"UnmodifiableMapBase":{"MapMixin":["1","2"],"Map":["1","2"]},"_MapBaseValueIterable":{"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MapView":{"Map":["1","2"]},"UnmodifiableMapView":{"Map":["1","2"]},"ListQueue":{"ListIterable":["1"],"Queue":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"_SetBase":{"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_UnmodifiableSet":{"_SetBase":["1"],"SetMixin":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"AsciiCodec":{"Codec":["String","List<int>"]},"_UnicodeSubsetEncoder":{"Converter":["String","List<int>"]},"AsciiEncoder":{"Converter":["String","List<int>"]},"Base64Codec":{"Codec":["List<int>","String"]},"Base64Encoder":{"Converter":["List<int>","String"]},"Encoding":{"Codec":["String","List<int>"]},"JsonUnsupportedObjectError":{"Error":[]},"JsonCyclicError":{"Error":[]},"JsonCodec":{"Codec":["Object?","String"]},"JsonEncoder":{"Converter":["Object?","String"]},"Utf8Codec":{"Codec":["String","List<int>"]},"Utf8Encoder":{"Converter":["String","List<int>"]},"Utf8Decoder":{"Converter":["List<int>","String"]},"DateTime":{"Comparable":["DateTime"]},"double":{"num":[],"Comparable":["num"]},"Duration":{"Comparable":["Duration"]},"int":{"num":[],"Comparable":["num"]},"List":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"num":{"Comparable":["num"]},"RegExpMatch":{"Match":[]},"Set":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"String":{"Comparable":["String"]},"AssertionError":{"Error":[]},"TypeError":{"Error":[]},"NullThrownError":{"Error":[]},"ArgumentError":{"Error":[]},"RangeError":{"Error":[]},"IndexError":{"RangeError":[],"Error":[]},"NoSuchMethodError":{"Error":[]},"UnsupportedError":{"Error":[]},"UnimplementedError":{"Error":[]},"StateError":{"Error":[]},"ConcurrentModificationError":{"Error":[]},"OutOfMemoryError":{"Error":[]},"StackOverflowError":{"Error":[]},"CyclicInitializationError":{"Error":[]},"_Exception":{"Exception":[]},"FormatException":{"Exception":[]},"_GeneratorIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"_StringStackTrace":{"StackTrace":[]},"Runes":{"Iterable":["int"],"Iterable.E":"int"},"_Uri":{"Uri":[]},"_SimpleUri":{"Uri":[]},"_DataUri":{"Uri":[]},"ArgParserException":{"FormatException":[],"Exception":[]},"ErrorResult":{"Result":["0&"]},"ValueResult":{"Result":["1"]},"_CompleterStream":{"Stream":["1"],"Stream.T":"1"},"_NextRequest":{"_EventRequest":["1"]},"EmptyUnmodifiableSet":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"QueueList":{"ListMixin":["1"],"List":["1"],"Queue":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListMixin.E":"1","QueueList.E":"1"},"_CastQueueList":{"QueueList":["2"],"ListMixin":["2"],"List":["2"],"Queue":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListMixin.E":"2","QueueList.E":"2"},"UnmodifiableSetView":{"DelegatingSet":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapKeySet":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_DelegatingIterableBase":{"Iterable":["1"]},"DelegatingSet":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"PathException":{"Exception":[]},"PathMap":{"Map":["String?","1"]},"PosixStyle":{"InternalStyle":[]},"UrlStyle":{"InternalStyle":[]},"WindowsStyle":{"InternalStyle":[]},"ModifiableCssAtRule":{"ModifiableCssParentNode":[],"CssAtRule":[],"ModifiableCssNode":[],"CssParentNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssComment":{"ModifiableCssNode":[],"CssComment":[],"CssNode":[],"AstNode":[]},"ModifiableCssDeclaration":{"ModifiableCssNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssImport":{"ModifiableCssNode":[],"CssImport":[],"CssNode":[],"AstNode":[]},"ModifiableCssKeyframeBlock":{"ModifiableCssParentNode":[],"ModifiableCssNode":[],"CssParentNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssMediaRule":{"ModifiableCssParentNode":[],"CssMediaRule":[],"ModifiableCssNode":[],"CssParentNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssNode":{"CssNode":[],"AstNode":[]},"ModifiableCssParentNode":{"ModifiableCssNode":[],"CssParentNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssStyleRule":{"ModifiableCssParentNode":[],"CssStyleRule":[],"ModifiableCssNode":[],"CssParentNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssStylesheet":{"ModifiableCssParentNode":[],"CssStylesheet":[],"ModifiableCssNode":[],"CssParentNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssSupportsRule":{"ModifiableCssParentNode":[],"CssSupportsRule":[],"ModifiableCssNode":[],"CssParentNode":[],"CssNode":[],"AstNode":[]},"ModifiableCssValue":{"CssValue":["1"],"AstNode":[]},"CssNode":{"AstNode":[]},"CssParentNode":{"CssNode":[],"AstNode":[]},"CssStylesheet":{"CssParentNode":[],"CssNode":[],"AstNode":[]},"CssValue":{"AstNode":[]},"_FakeAstNode":{"AstNode":[]},"Argument":{"AstNode":[]},"ArgumentDeclaration":{"AstNode":[]},"ArgumentInvocation":{"AstNode":[]},"ConfiguredVariable":{"AstNode":[]},"BinaryOperationExpression":{"Expression":[],"AstNode":[]},"BooleanExpression":{"Expression":[],"AstNode":[]},"CalculationExpression":{"Expression":[],"AstNode":[]},"ColorExpression":{"Expression":[],"AstNode":[]},"FunctionExpression":{"Expression":[],"AstNode":[]},"IfExpression":{"Expression":[],"AstNode":[]},"InterpolatedFunctionExpression":{"Expression":[],"AstNode":[]},"ListExpression":{"Expression":[],"AstNode":[]},"MapExpression":{"Expression":[],"AstNode":[]},"NullExpression":{"Expression":[],"AstNode":[]},"NumberExpression":{"Expression":[],"AstNode":[]},"ParenthesizedExpression":{"Expression":[],"AstNode":[]},"SelectorExpression":{"Expression":[],"AstNode":[]},"StringExpression":{"Expression":[],"AstNode":[]},"SupportsExpression":{"Expression":[],"AstNode":[]},"UnaryOperationExpression":{"Expression":[],"AstNode":[]},"ValueExpression":{"Expression":[],"AstNode":[]},"VariableExpression":{"Expression":[],"AstNode":[]},"DynamicImport":{"Import":[],"AstNode":[]},"StaticImport":{"Import":[],"AstNode":[]},"Interpolation":{"AstNode":[]},"AtRootRule":{"Statement":[],"AstNode":[]},"AtRule":{"Statement":[],"AstNode":[]},"CallableDeclaration":{"Statement":[],"AstNode":[]},"ContentBlock":{"Statement":[],"AstNode":[]},"ContentRule":{"Statement":[],"AstNode":[]},"DebugRule":{"Statement":[],"AstNode":[]},"Declaration":{"Statement":[],"AstNode":[]},"EachRule":{"Statement":[],"AstNode":[]},"ErrorRule":{"Statement":[],"AstNode":[]},"ExtendRule":{"Statement":[],"AstNode":[]},"ForRule":{"Statement":[],"AstNode":[]},"ForwardRule":{"Statement":[],"AstNode":[]},"FunctionRule":{"Statement":[],"AstNode":[]},"IfRule":{"Statement":[],"AstNode":[]},"ImportRule":{"Statement":[],"AstNode":[]},"IncludeRule":{"Statement":[],"AstNode":[]},"LoudComment":{"Statement":[],"AstNode":[]},"MediaRule":{"Statement":[],"AstNode":[]},"MixinRule":{"Statement":[],"AstNode":[]},"_HasContentVisitor":{"StatementSearchVisitor":["bool"],"StatementSearchVisitor.T":"bool"},"ParentStatement":{"Statement":[],"AstNode":[]},"ReturnRule":{"Statement":[],"AstNode":[]},"SilentComment":{"Statement":[],"AstNode":[]},"StyleRule":{"Statement":[],"AstNode":[]},"Stylesheet":{"Statement":[],"AstNode":[]},"SupportsRule":{"Statement":[],"AstNode":[]},"UseRule":{"Statement":[],"AstNode":[]},"VariableDeclaration":{"Statement":[],"AstNode":[]},"WarnRule":{"Statement":[],"AstNode":[]},"WhileRule":{"Statement":[],"AstNode":[]},"SupportsAnything":{"AstNode":[]},"SupportsDeclaration":{"AstNode":[]},"SupportsFunction":{"AstNode":[]},"SupportsInterpolation":{"AstNode":[]},"SupportsNegation":{"AstNode":[]},"SupportsOperation":{"AstNode":[]},"AttributeSelector":{"SimpleSelector":[]},"ClassSelector":{"SimpleSelector":[]},"IDSelector":{"SimpleSelector":[]},"ParentSelector":{"SimpleSelector":[]},"PlaceholderSelector":{"SimpleSelector":[]},"PseudoSelector":{"SimpleSelector":[]},"TypeSelector":{"SimpleSelector":[]},"UniversalSelector":{"SimpleSelector":[]},"_EnvironmentModule0":{"Module":["AsyncCallable"]},"AsyncBuiltInCallable":{"AsyncCallable":[]},"BuiltInCallable":{"Callable":[],"AsyncBuiltInCallable":[],"AsyncCallable":[]},"PlainCssCallable":{"Callable":[],"AsyncCallable":[]},"UserDefinedCallable":{"Callable":[],"AsyncCallable":[]},"ExplicitConfiguration":{"Configuration":[]},"_EnvironmentModule":{"Module":["Callable"]},"SassRuntimeException":{"Exception":[]},"SassException":{"Exception":[]},"MultiSpanSassException":{"Exception":[]},"MultiSpanSassRuntimeException":{"SassRuntimeException":[],"Exception":[]},"SassFormatException":{"SourceSpanFormatException":[],"FormatException":[],"Exception":[]},"UsageException":{"Exception":[]},"EmptyExtensionStore":{"ExtensionStore":[]},"MergedExtension":{"Extension":[]},"Importer":{"AsyncImporter":[]},"FilesystemImporter":{"Importer":[],"AsyncImporter":[]},"BuiltInModule":{"Module":["1"]},"ForwardedModuleView":{"Module":["1"]},"ShadowedModuleView":{"Module":["1"]},"LimitedMapView":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"MergedMapView":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"MultiSpan":{"FileSpan":[],"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"PrefixedMapView":{"MapMixin":["String","1"],"Map":["String","1"],"MapMixin.K":"String","MapMixin.V":"1"},"_PrefixedKeys":{"Iterable":["String"],"Iterable.E":"String"},"PublicMemberMapView":{"MapMixin":["String","1"],"Map":["String","1"],"MapMixin.K":"String","MapMixin.V":"1"},"UnprefixedMapView":{"MapMixin":["String","1"],"Map":["String","1"],"MapMixin.K":"String","MapMixin.V":"1"},"_UnprefixedKeys":{"Iterable":["String"],"Iterable.E":"String"},"SassArgumentList":{"SassList":[],"Value":[]},"SassBoolean":{"Value":[]},"SassCalculation":{"Value":[]},"SassColor":{"Value":[]},"SassFunction":{"Value":[]},"SassList":{"Value":[]},"SassMap":{"Value":[]},"_SassNull":{"Value":[]},"SassNumber":{"Value":[]},"ComplexSassNumber":{"SassNumber":[],"Value":[]},"SingleUnitSassNumber":{"SassNumber":[],"Value":[]},"UnitlessSassNumber":{"SassNumber":[],"Value":[]},"SassString":{"Value":[]},"_EvaluationContext0":{"EvaluationContext":[]},"_EvaluationContext":{"EvaluationContext":[]},"Entry":{"Comparable":["Entry"]},"FileLocation":{"SourceLocation":[],"Comparable":["SourceLocation"]},"FileSpan":{"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"_FileSpan":{"FileSpan":[],"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceLocation":{"Comparable":["SourceLocation"]},"SourceLocationMixin":{"SourceLocation":[],"Comparable":["SourceLocation"]},"SourceSpan":{"Comparable":["SourceSpan"]},"SourceSpanBase":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanException":{"Exception":[]},"SourceSpanFormatException":{"FormatException":[],"Exception":[]},"SourceSpanMixin":{"SourceSpan":[],"Comparable":["SourceSpan"]},"SourceSpanWithContext":{"SourceSpan":[],"Comparable":["SourceSpan"]},"Chain":{"StackTrace":[]},"LazyTrace":{"Trace":[],"StackTrace":[]},"Trace":{"StackTrace":[]},"UnparsedFrame":{"Frame":[]},"StringScannerException":{"SourceSpanFormatException":[],"FormatException":[],"Exception":[]},"SupportsAnything0":{"AstNode0":[]},"Argument0":{"AstNode0":[]},"ArgumentDeclaration0":{"AstNode0":[]},"ArgumentInvocation0":{"AstNode0":[]},"SassArgumentList0":{"SassList0":[],"Value0":[]},"NodeToDartAsyncImporter":{"AsyncImporter0":[]},"AsyncBuiltInCallable0":{"AsyncCallable0":[]},"_EnvironmentModule2":{"Module0":["AsyncCallable0"]},"_EvaluationContext2":{"EvaluationContext0":[]},"NodeToDartAsyncFileImporter":{"AsyncImporter0":[]},"AtRootRule0":{"Statement0":[],"AstNode0":[]},"ModifiableCssAtRule0":{"ModifiableCssParentNode0":[],"CssAtRule0":[],"ModifiableCssNode0":[],"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"AtRule0":{"Statement0":[],"AstNode0":[]},"AttributeSelector0":{"SimpleSelector0":[]},"BinaryOperationExpression0":{"Expression0":[],"AstNode0":[]},"BooleanExpression0":{"Expression0":[],"AstNode0":[]},"SassBoolean0":{"Value0":[]},"BuiltInCallable0":{"Callable0":[],"AsyncBuiltInCallable0":[],"AsyncCallable0":[]},"BuiltInModule0":{"Module0":["1"]},"CalculationExpression0":{"Expression0":[],"AstNode0":[]},"SassCalculation0":{"Value0":[]},"CallableDeclaration0":{"Statement0":[],"AstNode0":[]},"ClassSelector0":{"SimpleSelector0":[]},"ColorExpression0":{"Expression0":[],"AstNode0":[]},"SassColor0":{"Value0":[]},"ModifiableCssComment0":{"ModifiableCssNode0":[],"CssComment0":[],"CssNode0":[],"AstNode0":[]},"ComplexSassNumber0":{"SassNumber0":[],"Value0":[]},"ExplicitConfiguration0":{"Configuration0":[]},"ConfiguredVariable0":{"AstNode0":[]},"ContentBlock0":{"Statement0":[],"AstNode0":[]},"ContentRule0":{"Statement0":[],"AstNode0":[]},"DebugRule0":{"Statement0":[],"AstNode0":[]},"ModifiableCssDeclaration0":{"ModifiableCssNode0":[],"CssNode0":[],"AstNode0":[]},"Declaration0":{"Statement0":[],"AstNode0":[]},"SupportsDeclaration0":{"AstNode0":[]},"DynamicImport0":{"Import0":[],"AstNode0":[]},"EachRule0":{"Statement0":[],"AstNode0":[]},"EmptyExtensionStore0":{"ExtensionStore0":[]},"_EnvironmentModule1":{"Module0":["Callable0"]},"ErrorRule0":{"Statement0":[],"AstNode0":[]},"_EvaluationContext1":{"EvaluationContext0":[]},"SassRuntimeException0":{"Exception":[]},"SassException0":{"Exception":[]},"MultiSpanSassException0":{"Exception":[]},"MultiSpanSassRuntimeException0":{"SassRuntimeException0":[],"Exception":[]},"SassFormatException0":{"SourceSpanFormatException":[],"FormatException":[],"Exception":[]},"ExtendRule0":{"Statement0":[],"AstNode0":[]},"NodeToDartFileImporter":{"Importer0":[],"AsyncImporter0":[]},"FilesystemImporter0":{"Importer0":[],"AsyncImporter0":[]},"ForRule0":{"Statement0":[],"AstNode0":[]},"ForwardRule0":{"Statement0":[],"AstNode0":[]},"ForwardedModuleView0":{"Module0":["1"]},"FunctionExpression0":{"Expression0":[],"AstNode0":[]},"SupportsFunction0":{"AstNode0":[]},"SassFunction0":{"Value0":[]},"FunctionRule0":{"Statement0":[],"AstNode0":[]},"IDSelector0":{"SimpleSelector0":[]},"IfExpression0":{"Expression0":[],"AstNode0":[]},"IfRule0":{"Statement0":[],"AstNode0":[]},"ModifiableCssImport0":{"ModifiableCssNode0":[],"CssImport0":[],"CssNode0":[],"AstNode0":[]},"ImportRule0":{"Statement0":[],"AstNode0":[]},"Importer0":{"AsyncImporter0":[]},"IncludeRule0":{"Statement0":[],"AstNode0":[]},"InterpolatedFunctionExpression0":{"Expression0":[],"AstNode0":[]},"Interpolation0":{"AstNode0":[]},"SupportsInterpolation0":{"AstNode0":[]},"ModifiableCssKeyframeBlock0":{"ModifiableCssParentNode0":[],"ModifiableCssNode0":[],"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"LimitedMapView0":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"ListExpression0":{"Expression0":[],"AstNode0":[]},"SassList0":{"Value0":[]},"LoudComment0":{"Statement0":[],"AstNode0":[]},"MapExpression0":{"Expression0":[],"AstNode0":[]},"SassMap0":{"Value0":[]},"ModifiableCssMediaRule0":{"ModifiableCssParentNode0":[],"CssMediaRule0":[],"ModifiableCssNode0":[],"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"MediaRule0":{"Statement0":[],"AstNode0":[]},"MergedExtension0":{"Extension0":[]},"MergedMapView0":{"MapMixin":["1","2"],"Map":["1","2"],"MapMixin.K":"1","MapMixin.V":"2"},"MixinRule0":{"Statement0":[],"AstNode0":[]},"_HasContentVisitor0":{"StatementSearchVisitor0":["bool"],"StatementSearchVisitor0.T":"bool"},"MultiSpan0":{"FileSpan":[],"SourceSpanWithContext":[],"SourceSpan":[],"Comparable":["SourceSpan"]},"SupportsNegation0":{"AstNode0":[]},"NoOpImporter":{"Importer0":[],"AsyncImporter0":[]},"_FakeAstNode0":{"AstNode0":[]},"CssNode0":{"AstNode0":[]},"CssParentNode0":{"CssNode0":[],"AstNode0":[]},"ModifiableCssNode0":{"CssNode0":[],"AstNode0":[]},"ModifiableCssParentNode0":{"ModifiableCssNode0":[],"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"NullExpression0":{"Expression0":[],"AstNode0":[]},"_SassNull0":{"Value0":[]},"NumberExpression0":{"Expression0":[],"AstNode0":[]},"SassNumber0":{"Value0":[]},"SupportsOperation0":{"AstNode0":[]},"ParentSelector0":{"SimpleSelector0":[]},"ParentStatement0":{"Statement0":[],"AstNode0":[]},"ParenthesizedExpression0":{"Expression0":[],"AstNode0":[]},"PlaceholderSelector0":{"SimpleSelector0":[]},"PlainCssCallable0":{"Callable0":[],"AsyncCallable0":[]},"PrefixedMapView0":{"MapMixin":["String","1"],"Map":["String","1"],"MapMixin.K":"String","MapMixin.V":"1"},"_PrefixedKeys0":{"Iterable":["String"],"Iterable.E":"String"},"PseudoSelector0":{"SimpleSelector0":[]},"PublicMemberMapView0":{"MapMixin":["String","1"],"Map":["String","1"],"MapMixin.K":"String","MapMixin.V":"1"},"ReturnRule0":{"Statement0":[],"AstNode0":[]},"SelectorExpression0":{"Expression0":[],"AstNode0":[]},"ShadowedModuleView0":{"Module0":["1"]},"SilentComment0":{"Statement0":[],"AstNode0":[]},"SingleUnitSassNumber0":{"SassNumber0":[],"Value0":[]},"StaticImport0":{"Import0":[],"AstNode0":[]},"StringExpression0":{"Expression0":[],"AstNode0":[]},"SassString0":{"Value0":[]},"ModifiableCssStyleRule0":{"ModifiableCssParentNode0":[],"CssStyleRule0":[],"ModifiableCssNode0":[],"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"StyleRule0":{"Statement0":[],"AstNode0":[]},"CssStylesheet0":{"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"ModifiableCssStylesheet0":{"ModifiableCssParentNode0":[],"CssStylesheet0":[],"ModifiableCssNode0":[],"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"Stylesheet0":{"Statement0":[],"AstNode0":[]},"SupportsExpression0":{"Expression0":[],"AstNode0":[]},"ModifiableCssSupportsRule0":{"ModifiableCssParentNode0":[],"CssSupportsRule0":[],"ModifiableCssNode0":[],"CssParentNode0":[],"CssNode0":[],"AstNode0":[]},"SupportsRule0":{"Statement0":[],"AstNode0":[]},"NodeToDartImporter":{"Importer0":[],"AsyncImporter0":[]},"TypeSelector0":{"SimpleSelector0":[]},"UnaryOperationExpression0":{"Expression0":[],"AstNode0":[]},"UnitlessSassNumber0":{"SassNumber0":[],"Value0":[]},"UniversalSelector0":{"SimpleSelector0":[]},"UnprefixedMapView0":{"MapMixin":["String","1"],"Map":["String","1"],"MapMixin.K":"String","MapMixin.V":"1"},"_UnprefixedKeys0":{"Iterable":["String"],"Iterable.E":"String"},"UseRule0":{"Statement0":[],"AstNode0":[]},"UserDefinedCallable0":{"Callable0":[],"AsyncCallable0":[]},"CssValue0":{"AstNode0":[]},"ValueExpression0":{"Expression0":[],"AstNode0":[]},"ModifiableCssValue0":{"CssValue0":["1"],"AstNode0":[]},"VariableExpression0":{"Expression0":[],"AstNode0":[]},"VariableDeclaration0":{"Statement0":[],"AstNode0":[]},"WarnRule0":{"Statement0":[],"AstNode0":[]},"WhileRule0":{"Statement0":[],"AstNode0":[]},"Uint8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Expression":{"AstNode":[]},"Import":{"AstNode":[]},"Statement":{"AstNode":[]},"Callable":{"AsyncCallable":[]},"Callable0":{"AsyncCallable0":[]},"Expression0":{"AstNode0":[]},"Import0":{"AstNode0":[]},"Statement0":{"AstNode0":[]}}'));
|
|
99631
|
-
A._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"ArrayIterator":1,"ListIterator":1,"MappedIterator":2,"WhereIterator":1,"ExpandIterator":2,"TakeIterator":1,"SkipIterator":1,"SkipWhileIterator":1,"EmptyIterator":1,"FollowedByIterator":1,"FixedLengthListMixin":1,"UnmodifiableListMixin":1,"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"LinkedHashMapKeyIterator":1,"NativeTypedArray":1,"EventSink":1,"_SyncStarIterator":1,"StreamTransformerBase":2,"_SyncStreamControllerDispatch":1,"_AsyncStreamControllerDispatch":1,"_AddStreamState":1,"_StreamControllerAddStreamState":1,"_DelayedEvent":1,"_DelayedData":1,"_PendingEvents":1,"
|
|
99695
|
+
A._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"ArrayIterator":1,"ListIterator":1,"MappedIterator":2,"WhereIterator":1,"ExpandIterator":2,"TakeIterator":1,"SkipIterator":1,"SkipWhileIterator":1,"EmptyIterator":1,"FollowedByIterator":1,"FixedLengthListMixin":1,"UnmodifiableListMixin":1,"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"LinkedHashMapKeyIterator":1,"NativeTypedArray":1,"EventSink":1,"_SyncStarIterator":1,"StreamTransformerBase":2,"_SyncStreamControllerDispatch":1,"_AsyncStreamControllerDispatch":1,"_AddStreamState":1,"_StreamControllerAddStreamState":1,"_DelayedEvent":1,"_DelayedData":1,"_PendingEvents":1,"_StreamIterator":1,"_ZoneFunction":1,"Queue":1,"_HashMapKeyIterator":1,"_LinkedHashSetIterator":1,"IterableBase":1,"ListBase":1,"MapBase":2,"UnmodifiableMapBase":2,"_MapBaseValueIterator":2,"_UnmodifiableMapMixin":2,"MapView":2,"_ListQueueIterator":1,"_UnmodifiableSetMixin":1,"_ListBase_Object_ListMixin":1,"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":2,"__SetBase_Object_SetMixin":1,"__UnmodifiableSet__SetBase__UnmodifiableSetMixin":1,"ChunkedConversionSink":1,"_StringSinkConversionSink":1,"Iterator":1,"Expando":1,"_EventRequest":1,"_EmptyUnmodifiableSet_IterableBase_UnmodifiableSetMixin":1,"DefaultEquality":1,"IterableEquality":1,"ListEquality":1,"MapEquality":2,"_QueueList_Object_ListMixin":1,"UnmodifiableSetMixin":1,"_UnmodifiableSetView_DelegatingSet_UnmodifiableSetMixin":1,"_DelegatingIterableBase":1,"_MapKeySet__DelegatingIterableBase_UnmodifiableSetMixin":1,"ParentStatement":1,"ParentStatement0":1}'));
|
|
99632
99696
|
var string$ = {
|
|
99633
99697
|
x0a_BUG_: "\n\nBUG: This should include a source span!",
|
|
99634
99698
|
x0a_More: "\n\nMore info and automated migrator: https://sass-lang.com/d/slash-div",
|
|
@@ -99984,8 +100048,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
99984
100048
|
JSArray_Tuple2_Expression_Expression_2: findType("JSArray<Tuple2<Expression0,Expression0>>"),
|
|
99985
100049
|
JSArray_Tuple2_String_AstNode: findType("JSArray<Tuple2<String,AstNode>>"),
|
|
99986
100050
|
JSArray_Tuple2_String_AstNode_2: findType("JSArray<Tuple2<String,AstNode0>>"),
|
|
99987
|
-
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("JSArray<Tuple2<
|
|
99988
|
-
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("JSArray<Tuple2<
|
|
100051
|
+
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("JSArray<Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>>"),
|
|
100052
|
+
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("JSArray<Tuple2<ArgumentDeclaration,Value(List<Value>)>>"),
|
|
99989
100053
|
JSArray_Tuple4_of_Uri_and_bool_and_Importer_and_nullable_Uri: findType("JSArray<Tuple4<Uri,bool,Importer,Uri?>>"),
|
|
99990
100054
|
JSArray_Uri: findType("JSArray<Uri>"),
|
|
99991
100055
|
JSArray_UseRule: findType("JSArray<UseRule>"),
|
|
@@ -100159,8 +100223,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
100159
100223
|
Tuple2_Uri_bool: findType("Tuple2<Uri,bool>"),
|
|
100160
100224
|
Tuple2_of_ArgumentDeclaration_and_FutureOr_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration,Value/(List<Value>)>"),
|
|
100161
100225
|
Tuple2_of_ArgumentDeclaration_and_FutureOr_Value_Function_List_Value_2: findType("Tuple2<ArgumentDeclaration0,Value0/(List<Value0>)>"),
|
|
100162
|
-
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("Tuple2<
|
|
100163
|
-
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("Tuple2<
|
|
100226
|
+
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>"),
|
|
100227
|
+
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("Tuple2<ArgumentDeclaration,Value(List<Value>)>"),
|
|
100164
100228
|
Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList: findType("Tuple2<ExtensionStore,Map<CssValue<SelectorList>,ModifiableCssValue<SelectorList>>>"),
|
|
100165
100229
|
Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList_2: findType("Tuple2<ExtensionStore0,Map<CssValue0<SelectorList0>,ModifiableCssValue0<SelectorList0>>>"),
|
|
100166
100230
|
Tuple2_of_List_Expression_and_Map_String_Expression: findType("Tuple2<List<Expression>,Map<String,Expression>>"),
|
|
@@ -100661,21 +100725,27 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
100661
100725
|
B.List_is_matches_where = A._setArrayType(makeConstList(["is", "matches", "where"]), type$.JSArray_String);
|
|
100662
100726
|
B.Map_YEyLX = new A.ConstantStringMap(3, {is: null, matches: null, where: null}, B.List_is_matches_where, type$.ConstantStringMap_String_Null);
|
|
100663
100727
|
B.Set_YEQji = new A._UnmodifiableSet(B.Map_YEyLX, type$._UnmodifiableSet_String);
|
|
100664
|
-
B.List_empty28 = A._setArrayType(makeConstList([]), type$.
|
|
100665
|
-
B.Map_empty15 = new A.ConstantStringMap(0, {}, B.List_empty28, A.findType("ConstantStringMap<
|
|
100666
|
-
B.Set_empty0 = new A._UnmodifiableSet(B.Map_empty15, A.findType("_UnmodifiableSet<
|
|
100667
|
-
B.List_empty29 = A._setArrayType(makeConstList([]), type$.
|
|
100668
|
-
B.Map_empty16 = new A.ConstantStringMap(0, {}, B.List_empty29, A.findType("ConstantStringMap<
|
|
100669
|
-
B.
|
|
100670
|
-
B.List_empty30 = A._setArrayType(makeConstList([]), type$.
|
|
100671
|
-
B.Map_empty17 = new A.ConstantStringMap(0, {}, B.List_empty30, A.findType("ConstantStringMap<
|
|
100672
|
-
B.
|
|
100673
|
-
B.List_empty31 = A._setArrayType(makeConstList([]), type$.
|
|
100674
|
-
B.Map_empty18 = new A.ConstantStringMap(0, {}, B.List_empty31, A.findType("ConstantStringMap<
|
|
100675
|
-
B.
|
|
100676
|
-
B.List_empty32 = A._setArrayType(makeConstList([]), type$.
|
|
100677
|
-
B.Map_empty19 = new A.ConstantStringMap(0, {}, B.List_empty32, A.findType("ConstantStringMap<
|
|
100678
|
-
B.
|
|
100728
|
+
B.List_empty28 = A._setArrayType(makeConstList([]), type$.JSArray_CssMediaQuery);
|
|
100729
|
+
B.Map_empty15 = new A.ConstantStringMap(0, {}, B.List_empty28, A.findType("ConstantStringMap<CssMediaQuery,Null>"));
|
|
100730
|
+
B.Set_empty0 = new A._UnmodifiableSet(B.Map_empty15, A.findType("_UnmodifiableSet<CssMediaQuery>"));
|
|
100731
|
+
B.List_empty29 = A._setArrayType(makeConstList([]), type$.JSArray_CssMediaQuery_2);
|
|
100732
|
+
B.Map_empty16 = new A.ConstantStringMap(0, {}, B.List_empty29, A.findType("ConstantStringMap<CssMediaQuery0,Null>"));
|
|
100733
|
+
B.Set_empty4 = new A._UnmodifiableSet(B.Map_empty16, A.findType("_UnmodifiableSet<CssMediaQuery0>"));
|
|
100734
|
+
B.List_empty30 = A._setArrayType(makeConstList([]), type$.JSArray_Module_AsyncCallable);
|
|
100735
|
+
B.Map_empty17 = new A.ConstantStringMap(0, {}, B.List_empty30, A.findType("ConstantStringMap<Module<AsyncCallable>,Null>"));
|
|
100736
|
+
B.Set_empty1 = new A._UnmodifiableSet(B.Map_empty17, A.findType("_UnmodifiableSet<Module<AsyncCallable>>"));
|
|
100737
|
+
B.List_empty31 = A._setArrayType(makeConstList([]), type$.JSArray_Module_Callable);
|
|
100738
|
+
B.Map_empty18 = new A.ConstantStringMap(0, {}, B.List_empty31, A.findType("ConstantStringMap<Module<Callable>,Null>"));
|
|
100739
|
+
B.Set_empty = new A._UnmodifiableSet(B.Map_empty18, A.findType("_UnmodifiableSet<Module<Callable>>"));
|
|
100740
|
+
B.List_empty32 = A._setArrayType(makeConstList([]), type$.JSArray_Module_AsyncCallable_2);
|
|
100741
|
+
B.Map_empty19 = new A.ConstantStringMap(0, {}, B.List_empty32, A.findType("ConstantStringMap<Module0<AsyncCallable0>,Null>"));
|
|
100742
|
+
B.Set_empty5 = new A._UnmodifiableSet(B.Map_empty19, A.findType("_UnmodifiableSet<Module0<AsyncCallable0>>"));
|
|
100743
|
+
B.List_empty33 = A._setArrayType(makeConstList([]), type$.JSArray_Module_Callable_2);
|
|
100744
|
+
B.Map_empty20 = new A.ConstantStringMap(0, {}, B.List_empty33, A.findType("ConstantStringMap<Module0<Callable0>,Null>"));
|
|
100745
|
+
B.Set_empty3 = new A._UnmodifiableSet(B.Map_empty20, A.findType("_UnmodifiableSet<Module0<Callable0>>"));
|
|
100746
|
+
B.List_empty34 = A._setArrayType(makeConstList([]), type$.JSArray_StylesheetNode);
|
|
100747
|
+
B.Map_empty21 = new A.ConstantStringMap(0, {}, B.List_empty34, A.findType("ConstantStringMap<StylesheetNode,Null>"));
|
|
100748
|
+
B.Set_empty2 = new A._UnmodifiableSet(B.Map_empty21, A.findType("_UnmodifiableSet<StylesheetNode>"));
|
|
100679
100749
|
B.StderrLogger_false = new A.StderrLogger(false);
|
|
100680
100750
|
B.StderrLogger_false0 = new A.StderrLogger0(false);
|
|
100681
100751
|
B.Symbol__evaluationContext = new A.Symbol("_evaluationContext");
|
|
@@ -100687,12 +100757,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
100687
100757
|
B.Syntax_SCSS_scss0 = new A.Syntax0("SCSS", "scss");
|
|
100688
100758
|
B.Syntax_Sass_sass = new A.Syntax("Sass", "sass");
|
|
100689
100759
|
B.Syntax_Sass_sass0 = new A.Syntax0("Sass", "sass");
|
|
100690
|
-
B.
|
|
100691
|
-
B.
|
|
100692
|
-
B.Tuple2_EmptyExtensionStore_Map_empty = new A.Tuple2(B.C_EmptyExtensionStore, B.
|
|
100693
|
-
B.
|
|
100694
|
-
B.
|
|
100695
|
-
B.Tuple2_EmptyExtensionStore_Map_empty0 = new A.Tuple2(B.C_EmptyExtensionStore0, B.
|
|
100760
|
+
B.List_empty35 = A._setArrayType(makeConstList([]), A.findType("JSArray<CssValue<SelectorList>>"));
|
|
100761
|
+
B.Map_empty22 = new A.ConstantStringMap(0, {}, B.List_empty35, A.findType("ConstantStringMap<CssValue<SelectorList>,ModifiableCssValue<SelectorList>>"));
|
|
100762
|
+
B.Tuple2_EmptyExtensionStore_Map_empty = new A.Tuple2(B.C_EmptyExtensionStore, B.Map_empty22, type$.Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList);
|
|
100763
|
+
B.List_empty36 = A._setArrayType(makeConstList([]), A.findType("JSArray<CssValue0<SelectorList0>>"));
|
|
100764
|
+
B.Map_empty23 = new A.ConstantStringMap(0, {}, B.List_empty36, A.findType("ConstantStringMap<CssValue0<SelectorList0>,ModifiableCssValue0<SelectorList0>>"));
|
|
100765
|
+
B.Tuple2_EmptyExtensionStore_Map_empty0 = new A.Tuple2(B.C_EmptyExtensionStore0, B.Map_empty23, type$.Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList_2);
|
|
100696
100766
|
B.Type_Null_Yyn = A.typeLiteral("Null");
|
|
100697
100767
|
B.Type_Object_xQ6 = A.typeLiteral("Object");
|
|
100698
100768
|
B.UnaryOperator_Ix1 = new A.UnaryOperator("divide", "/", "divide");
|
|
@@ -100731,12 +100801,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
100731
100801
|
B._PathRelation_equal = new A._PathRelation("equal");
|
|
100732
100802
|
B._PathRelation_inconclusive = new A._PathRelation("inconclusive");
|
|
100733
100803
|
B._PathRelation_within = new A._PathRelation("within");
|
|
100734
|
-
B._RegisterBinaryZoneFunction_kGu = new A._RegisterBinaryZoneFunction(B.C__RootZone, A.async___rootRegisterBinaryCallback$closure());
|
|
100735
|
-
B._RegisterNullaryZoneFunction__RootZone__rootRegisterCallback = new A._RegisterNullaryZoneFunction(B.C__RootZone, A.async___rootRegisterCallback$closure());
|
|
100736
|
-
B._RegisterUnaryZoneFunction_Bqo = new A._RegisterUnaryZoneFunction(B.C__RootZone, A.async___rootRegisterUnaryCallback$closure());
|
|
100737
|
-
B._RunBinaryZoneFunction__RootZone__rootRunBinary = new A._RunBinaryZoneFunction(B.C__RootZone, A.async___rootRunBinary$closure());
|
|
100738
|
-
B._RunNullaryZoneFunction__RootZone__rootRun = new A._RunNullaryZoneFunction(B.C__RootZone, A.async___rootRun$closure());
|
|
100739
|
-
B._RunUnaryZoneFunction__RootZone__rootRunUnary = new A._RunUnaryZoneFunction(B.C__RootZone, A.async___rootRunUnary$closure());
|
|
100740
100804
|
B._SingletonCssMediaQueryMergeResult_empty = new A._SingletonCssMediaQueryMergeResult("empty");
|
|
100741
100805
|
B._SingletonCssMediaQueryMergeResult_empty0 = new A._SingletonCssMediaQueryMergeResult0("empty");
|
|
100742
100806
|
B._SingletonCssMediaQueryMergeResult_unrepresentable = new A._SingletonCssMediaQueryMergeResult("unrepresentable");
|
|
@@ -100747,11 +100811,17 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
100747
100811
|
B._StreamGroupState_paused = new A._StreamGroupState("paused");
|
|
100748
100812
|
B._StringStackTrace_3uE = new A._StringStackTrace("");
|
|
100749
100813
|
B._ZoneFunction_3bB = new A._ZoneFunction(B.C__RootZone, A.async___rootCreatePeriodicTimer$closure());
|
|
100814
|
+
B._ZoneFunction_7G2 = new A._ZoneFunction(B.C__RootZone, A.async___rootRegisterBinaryCallback$closure());
|
|
100815
|
+
B._ZoneFunction_Eeh = new A._ZoneFunction(B.C__RootZone, A.async___rootRegisterUnaryCallback$closure());
|
|
100750
100816
|
B._ZoneFunction_NMc = new A._ZoneFunction(B.C__RootZone, A.async___rootHandleUncaughtError$closure());
|
|
100751
100817
|
B._ZoneFunction__RootZone__rootCreateTimer = new A._ZoneFunction(B.C__RootZone, A.async___rootCreateTimer$closure());
|
|
100752
100818
|
B._ZoneFunction__RootZone__rootErrorCallback = new A._ZoneFunction(B.C__RootZone, A.async___rootErrorCallback$closure());
|
|
100753
100819
|
B._ZoneFunction__RootZone__rootFork = new A._ZoneFunction(B.C__RootZone, A.async___rootFork$closure());
|
|
100754
100820
|
B._ZoneFunction__RootZone__rootPrint = new A._ZoneFunction(B.C__RootZone, A.async___rootPrint$closure());
|
|
100821
|
+
B._ZoneFunction__RootZone__rootRegisterCallback = new A._ZoneFunction(B.C__RootZone, A.async___rootRegisterCallback$closure());
|
|
100822
|
+
B._ZoneFunction__RootZone__rootRun = new A._ZoneFunction(B.C__RootZone, A.async___rootRun$closure());
|
|
100823
|
+
B._ZoneFunction__RootZone__rootRunBinary = new A._ZoneFunction(B.C__RootZone, A.async___rootRunBinary$closure());
|
|
100824
|
+
B._ZoneFunction__RootZone__rootRunUnary = new A._ZoneFunction(B.C__RootZone, A.async___rootRunUnary$closure());
|
|
100755
100825
|
B._ZoneFunction__RootZone__rootScheduleMicrotask = new A._ZoneFunction(B.C__RootZone, A.async___rootScheduleMicrotask$closure());
|
|
100756
100826
|
B._ZoneSpecification_ALf = new A._ZoneSpecification(null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
100757
100827
|
})();
|