sass 1.54.5 → 1.54.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sass.dart.js +539 -467
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.17.6.
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, t1, $constructor, constructorName;
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
- t1 = dispatchName !== "Object" && dispatchName !== "";
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
- var t1 = A._isBool(object) || typeof object == "number" || typeof object == "string";
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, null, A._arrayInstanceType(segments)._precomputed1), t1 = new A.ListIterator(t1, t1.get$length(t1)), t2 = A._instanceType(t1)._precomputed1; t1.moveNext$0();) {
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", null));
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
- _.___Uri_hashCode = _.___Uri_pathSegments = _.___Uri__text = $;
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
- _.___Uri_hashCode = _.___Uri_pathSegments = _.___Uri__text = $;
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
- _.___Usage__columnWidths = $;
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
- _.__StreamGroup__controller = $;
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
- _.__Repl__adapter = $;
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
- _.__MixinRule_hasContent = $;
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
- _.__ComplexSelector_specificity = $;
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.__CompoundSelector_specificity = $;
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
- _.__PseudoSelector_specificity = $;
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.Set_empty0;
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$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value));
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$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value));
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$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value);
8935
- 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; t2.moveNext$0();) {
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, $async$next = [], syntax, result, importCache, error, exception, t2, t3, t4, t5, t6, t7, t8, t9, result0, logger, terseLogger, stylesheet, css, buffer, sourceName, t1, importer, $async$exception;
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
- _.__ExecutableOptions_interactive = $;
9467
+ _.__ExecutableOptions_interactive_FI = $;
9494
9468
  _._sourcesToDestinations = null;
9495
- _.__ExecutableOptions__sourceDirectoriesToDestinations = $;
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 = type$.String;
9523
- t2 = A._lateReadCheck(options.__ExecutableOptions__sourceDirectoriesToDestinations, "_sourceDirectoriesToDestinations").cast$2$0(0, t1, t1);
9524
- t2 = A.List_List$of(t2.get$keys(t2), true, t1);
9525
- for (options._ensureSources$0(), t3 = options._sourcesToDestinations.cast$2$0(0, t1, t1), t3 = J.get$iterator$ax(t3.get$keys(t3)); t3.moveNext$0();) {
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
- t2.push($.$get$context().dirname$1(t4));
9503
+ t1.push($.$get$context().dirname$1(t4));
9528
9504
  }
9529
9505
  t3 = options._options;
9530
- B.JSArray_methods.addAll$1(t2, type$.List_String._as(t3.$index(0, "load-path")));
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.__StreamGroup__controller = A.StreamController_StreamController(t5.get$_onCancel(), t5.get$_onListen(), t5.get$_onPause(), t5.get$_onResume(), true, type$.WatchEvent);
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(t2, new A.watch_closure(dirWatcher), A._arrayInstanceType(t2)._eval$1("MappedListIterable<1,Future<~>>")), type$.void), $async$watch);
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, t1, t1), t1 = t1.get$entries(t1), t1 = t1.get$iterator(t1);
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 = A._lateReadCheck(dirWatcher._group.__StreamGroup__controller, "_controller");
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
- var t1 = map.get$isNotEmpty(map) && blocklist.any$1(0, map.get$containsKey());
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
- _.__SassString__sassLength = $;
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
- _.node = t3;
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.mergedQueries = t0;
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
- this.$this = t0;
13585
- this.mergedQueries = t1;
13586
- this.node = t2;
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.mergedQueries = t0;
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
- _.node = t3;
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.mergedQueries = t0;
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
- this.$this = t0;
14255
- this.mergedQueries = t1;
14256
- this.node = t2;
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.mergedQueries = t0;
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.__LazyTrace__trace = $;
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.Set_empty3;
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
- _.node = t3;
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.mergedQueries = t0;
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
- this.$this = t0;
16293
- this.mergedQueries = t1;
16294
- this.node = t2;
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.mergedQueries = t0;
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$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
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$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
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$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2);
16570
- 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_2; t2.moveNext$0();) {
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$__ComplexSelector_specificity = $;
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$__CompoundSelector_specificity = $;
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.Set_empty2;
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
- _.node = t3;
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.mergedQueries = t0;
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
- this.$this = t0;
18609
- this.mergedQueries = t1;
18610
- this.node = t2;
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.mergedQueries = t0;
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$__MixinRule_hasContent = $;
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.5\t(Sass Compiler)\t[Dart]\ndart2js\t2.17.6\t(Dart Compiler)\t[Dart]");
21113
+ J.set$info$x(self.exports, "dart-sass\t1.54.9\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$__PseudoSelector_specificity = $;
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, $async$next = [], 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;
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
- t4 = A._isBool(t3) || typeof t3 == "number" || t4;
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
- t4 = A._isBool(t3) || typeof t3 == "number" || t4;
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.5 compiled with dart2js 2.17.6";
21777
+ $async$returnValue = "1.54.9 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
- var t1 = map.get$isNotEmpty(map) && blocklist.any$1(0, map.get$containsKey());
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$__SassString__sassLength = $;
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.__Repl__adapter = new A.ReplAdapter(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 = new A._StreamIterator(A.checkNotNullable(A._lateReadCheck(repl.__Repl__adapter, "_adapter").runAsync$0(), "stream", type$.Object));
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
- t6 = A._isBool(t5) || typeof t5 == "number" || t6;
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._StreamImplEvents() : events;
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._StreamImplEvents() : events;
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._StreamImplEvents();
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._RunNullaryZoneFunction__RootZone__rootRun;
29889
+ return B._ZoneFunction__RootZone__rootRun;
29911
29890
  },
29912
29891
  get$_runUnary() {
29913
- return B._RunUnaryZoneFunction__RootZone__rootRunUnary;
29892
+ return B._ZoneFunction__RootZone__rootRunUnary;
29914
29893
  },
29915
29894
  get$_runBinary() {
29916
- return B._RunBinaryZoneFunction__RootZone__rootRunBinary;
29895
+ return B._ZoneFunction__RootZone__rootRunBinary;
29917
29896
  },
29918
29897
  get$_registerCallback() {
29919
- return B._RegisterNullaryZoneFunction__RootZone__rootRegisterCallback;
29898
+ return B._ZoneFunction__RootZone__rootRegisterCallback;
29920
29899
  },
29921
29900
  get$_registerUnaryCallback() {
29922
- return B._RegisterUnaryZoneFunction_Bqo;
29901
+ return B._ZoneFunction_Eeh;
29923
29902
  },
29924
29903
  get$_registerBinaryCallback() {
29925
- return B._RegisterBinaryZoneFunction_kGu;
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 "" + hours + ":" + minutesPadding + minutes + ":" + secondsPadding + seconds + "." + B.JSString_methods.padLeft$2(B.JSInt_methods.toString$0(microseconds % 1000000), 6, "0");
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.___Uri__text;
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._lateInitializeOnceCheck(value, "_text");
32750
- value = _this.___Uri__text = t1.charCodeAt(0) == 0 ? t1 : t1;
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.___Uri_pathSegments;
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._lateInitializeOnceCheck(_this.___Uri_pathSegments, "pathSegments");
32763
- value = _this.___Uri_pathSegments = result;
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.___Uri_hashCode;
32749
+ value = _this.___Uri_hashCode_FI;
32770
32750
  if (value === $) {
32771
32751
  result = B.JSString_methods.get$hashCode(_this.get$_text());
32772
- A._lateInitializeOnceCheck(_this.___Uri_hashCode, "hashCode");
32773
- _this.___Uri_hashCode = result;
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.set$length(t3, 0);
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.___Usage__columnWidths;
33734
+ value = _this.___Usage__columnWidths_FI;
33755
33735
  if (value === $) {
33756
33736
  result = _this._calculateColumnWidths$0();
33757
- A._lateInitializeOnceCheck(_this.___Usage__columnWidths, "_columnWidths");
33758
- _this.___Usage__columnWidths = result;
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 = A._lateReadCheck(this.__StreamGroup__controller, "_controller");
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 _this = this,
34076
- _s11_ = "_controller",
34077
- t1 = A._lateReadCheck(_this.__StreamGroup__controller, _s11_),
34078
- subscription = stream.listen$3$onDone$onError(0, t1.get$add(t1), new A.StreamGroup__listenToStream_closure(_this, stream), A._lateReadCheck(_this.__StreamGroup__controller, _s11_).get$addError());
34079
- if (_this._stream_group$_state === B._StreamGroupState_paused)
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$next = [], $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;
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
- t4 = t3 >= 48 && t3 <= 57;
36174
- t3 = t4 || t3 === 45;
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.__MixinRule_hasContent;
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._lateInitializeOnceCheck(_this.__MixinRule_hasContent, "hasContent");
37233
- _this.__MixinRule_hasContent = result;
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.__ComplexSelector_specificity;
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._lateInitializeOnceCheck(_this.__ComplexSelector_specificity, "specificity");
37667
- _this.__ComplexSelector_specificity = result;
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.__CompoundSelector_specificity;
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._lateInitializeOnceCheck(_this.__CompoundSelector_specificity, "specificity");
37794
- _this.__CompoundSelector_specificity = result;
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.__PseudoSelector_specificity;
38128
+ value = _this.__PseudoSelector_specificity_FI;
38145
38129
  if (value === $) {
38146
38130
  result = new A.PseudoSelector_specificity_closure(_this).call$0();
38147
- A._lateInitializeOnceCheck(_this.__PseudoSelector_specificity, "specificity");
38148
- _this.__PseudoSelector_specificity = result;
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.__ExecutableOptions_interactive;
40616
+ value = _this.__ExecutableOptions_interactive_FI;
40633
40617
  if (value === $) {
40634
40618
  result = new A.ExecutableOptions_interactive_closure(_this).call$0();
40635
- A._lateInitializeOnceCheck(_this.__ExecutableOptions_interactive, "interactive");
40636
- _this.__ExecutableOptions_interactive = result;
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._lateWriteOnceCheck(_this.__ExecutableOptions__sourceDirectoriesToDestinations, _s32_);
40736
- _this.__ExecutableOptions__sourceDirectoriesToDestinations = B.Map_empty5;
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._lateWriteOnceCheck(_this.__ExecutableOptions__sourceDirectoriesToDestinations, _s32_);
40771
- _this.__ExecutableOptions__sourceDirectoriesToDestinations = new A.UnmodifiableMapView(new A.PathMap(t3, t4), type$.UnmodifiableMapView_of_nullable_String_and_String);
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$next = [], $async$self = this, error, stackTrace, error0, stackTrace0, path, exception, t1, t2, $async$exception;
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 = A._lateReadCheck(watcher._group.__StreamGroup__controller, "_controller");
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
- for (t1._ensureSources$0(), t1 = A._lateReadCheck(t1.__ExecutableOptions__sourceDirectoriesToDestinations, "_sourceDirectoriesToDestinations").cast$2$0(0, t2, t2), t1 = t1.get$entries(t1), t1 = t1.get$iterator(t1), t2 = type$.JSArray_nullable_String, t4 = type$.WhereTypeIterable_String; t1.moveNext$0();) {
41519
- t5 = t1.get$current(t1);
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], t2);
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, t3, t4,
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$_empty(t1, t1);
43695
- for (t3 = map1._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
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, t3, t4,
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$_empty(t1, t1);
43731
- for (t3 = nestedMap._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
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
- t2 = t2 || next === 45;
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());
@@ -49468,7 +49445,7 @@ self.readline = _cli_pkg_requires.readline;
49468
49445
  return new A.StringExpression(buffer.interpolation$1(t1.spanFrom$1(new A._SpanScannerState(t1, t2))), true);
49469
49446
  },
49470
49447
  identifierLike$0() {
49471
- var invocation, color, specialFunction, _this = this,
49448
+ var invocation, expression, color, specialFunction, _this = this,
49472
49449
  t1 = _this.scanner,
49473
49450
  start = new A._SpanScannerState(t1, t1._string_scanner$_position),
49474
49451
  identifier = _this.interpolatedIdentifier$0(),
@@ -49482,7 +49459,8 @@ self.readline = _cli_pkg_requires.readline;
49482
49459
  return new A.IfExpression(invocation, identifier.span.expand$1(0, invocation.span));
49483
49460
  } else if (plain === "not") {
49484
49461
  _this.whitespace$0();
49485
- return new A.UnaryOperationExpression(B.UnaryOperator_not_not_not, _this._singleExpression$0(), identifier.span);
49462
+ expression = _this._singleExpression$0();
49463
+ return new A.UnaryOperationExpression(B.UnaryOperator_not_not_not, expression, identifier.span.expand$1(0, expression.get$span(expression)));
49486
49464
  }
49487
49465
  lower._value = plain.toLowerCase();
49488
49466
  if (t1.peekChar$0() !== 40) {
@@ -51067,12 +51045,12 @@ self.readline = _cli_pkg_requires.readline;
51067
51045
  var stylesheet, _this = this,
51068
51046
  t1 = _this._nodes;
51069
51047
  if (t1.$index(0, canonicalUrl) != null)
51070
- return B.Set_empty1;
51048
+ return B.Set_empty2;
51071
51049
  stylesheet = _this._ignoreErrors$1(new A.StylesheetGraph_addCanonical_closure(_this, importer, canonicalUrl, originalUrl));
51072
51050
  if (stylesheet == null)
51073
- return B.Set_empty1;
51051
+ return B.Set_empty2;
51074
51052
  t1.$indexSet(0, canonicalUrl, A.StylesheetNode$_(stylesheet, importer, canonicalUrl, _this._upstreamNodes$3(stylesheet, importer, canonicalUrl)));
51075
- return recanonicalize ? _this._recanonicalizeImports$2(importer, canonicalUrl) : B.Set_empty1;
51053
+ return recanonicalize ? _this._recanonicalizeImports$2(importer, canonicalUrl) : B.Set_empty2;
51076
51054
  },
51077
51055
  addCanonical$3(importer, canonicalUrl, originalUrl) {
51078
51056
  return this.addCanonical$4$recanonicalize(importer, canonicalUrl, originalUrl, true);
@@ -51265,20 +51243,16 @@ self.readline = _cli_pkg_requires.readline;
51265
51243
  },
51266
51244
  _replaceUpstream$2(newUpstream, newUpstreamImports) {
51267
51245
  var t3, oldUpstream, newUpstreamSet, _this = this,
51268
- t1 = type$.nullable_StylesheetNode,
51269
- t2 = A.LinkedHashSet_LinkedHashSet$_empty(t1);
51270
- for (t3 = _this._upstream, t3 = t3.get$values(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();)
51271
- t2.add$1(0, t3.get$current(t3));
51272
- for (t3 = _this._upstreamImports, t3 = t3.get$values(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();)
51273
- t2.add$1(0, t3.get$current(t3));
51246
+ t1 = _this._upstream,
51247
+ t2 = type$.nullable_StylesheetNode;
51248
+ t1 = A.LinkedHashSet_LinkedHashSet$of(t1.get$values(t1), t2);
51249
+ t3 = _this._upstreamImports;
51250
+ t1.addAll$1(0, t3.get$values(t3));
51274
51251
  t3 = type$.StylesheetNode;
51275
- oldUpstream = A.SetExtension_removeNull(t2, t3);
51276
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(t1);
51277
- for (t2 = newUpstream.get$values(newUpstream), t2 = t2.get$iterator(t2); t2.moveNext$0();)
51278
- t1.add$1(0, t2.get$current(t2));
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);
51252
+ oldUpstream = A.SetExtension_removeNull(t1, t3);
51253
+ t2 = A.LinkedHashSet_LinkedHashSet$of(newUpstream.get$values(newUpstream), t2);
51254
+ t2.addAll$1(0, newUpstreamImports.get$values(newUpstreamImports));
51255
+ newUpstreamSet = A.SetExtension_removeNull(t2, t3);
51282
51256
  for (t1 = oldUpstream.difference$1(newUpstreamSet), t1 = t1.get$iterator(t1); t1.moveNext$0();)
51283
51257
  t1.get$current(t1)._downstream.remove$1(0, _this);
51284
51258
  for (t1 = newUpstreamSet.difference$1(oldUpstream), t1 = t1.get$iterator(t1); t1.moveNext$0();)
@@ -51287,15 +51261,8 @@ self.readline = _cli_pkg_requires.readline;
51287
51261
  _this._upstreamImports = newUpstreamImports;
51288
51262
  },
51289
51263
  _stylesheet_graph$_remove$0() {
51290
- var t2, t3, t4, _i, url, _this = this,
51291
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.nullable_StylesheetNode);
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();) {
51264
+ var t1, t2, t3, t4, _i, url, _this = this;
51265
+ 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
51266
  t3 = t1._collection$_current;
51300
51267
  if (t3 == null)
51301
51268
  t3 = t2._as(t3);
@@ -53171,12 +53138,12 @@ self.readline = _cli_pkg_requires.readline;
53171
53138
  A.SassString.prototype = {
53172
53139
  get$_sassLength() {
53173
53140
  var t1, result, _this = this,
53174
- value = _this.__SassString__sassLength;
53141
+ value = _this.__SassString__sassLength_FI;
53175
53142
  if (value === $) {
53176
53143
  t1 = new A.Runes(_this._string$_text);
53177
53144
  result = t1.get$length(t1);
53178
- A._lateInitializeOnceCheck(_this.__SassString__sassLength, "_sassLength");
53179
- _this.__SassString__sassLength = result;
53145
+ _this.__SassString__sassLength_FI !== $ && A.throwUnnamedLateFieldADI();
53146
+ _this.__SassString__sassLength_FI = result;
53180
53147
  value = result;
53181
53148
  }
53182
53149
  return value;
@@ -54845,7 +54812,7 @@ self.readline = _cli_pkg_requires.readline;
54845
54812
  visitMediaRule$body$_EvaluateVisitor(node) {
54846
54813
  var $async$goto = 0,
54847
54814
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value),
54848
- $async$returnValue, $async$self = this, queries, mergedQueries, t1;
54815
+ $async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2, t3;
54849
54816
  var $async$visitMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
54850
54817
  if ($async$errorCode === 1)
54851
54818
  return A._asyncRethrow($async$result, $async$completer);
@@ -54868,9 +54835,21 @@ self.readline = _cli_pkg_requires.readline;
54868
54835
  $async$goto = 1;
54869
54836
  break;
54870
54837
  }
54838
+ if (t1)
54839
+ mergedSources = B.Set_empty0;
54840
+ else {
54841
+ t2 = $async$self._async_evaluate$_mediaQuerySources;
54842
+ t2.toString;
54843
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
54844
+ t3 = $async$self._async_evaluate$_mediaQueries;
54845
+ t3.toString;
54846
+ t2.addAll$1(0, t3);
54847
+ t2.addAll$1(0, queries);
54848
+ mergedSources = t2;
54849
+ }
54871
54850
  t1 = t1 ? queries : mergedQueries;
54872
54851
  $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(mergedQueries), type$.ModifiableCssMediaRule, type$.Null), $async$visitMediaRule$1);
54852
+ 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
54853
  case 4:
54875
54854
  // returning from await.
54876
54855
  $async$returnValue = null;
@@ -55745,7 +55724,7 @@ self.readline = _cli_pkg_requires.readline;
55745
55724
  visitCalculationExpression$body$_EvaluateVisitor(node) {
55746
55725
  var $async$goto = 0,
55747
55726
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value),
55748
- $async$returnValue, $async$next = [], $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
55727
+ $async$returnValue, $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
55749
55728
  var $async$visitCalculationExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
55750
55729
  if ($async$errorCode === 1)
55751
55730
  return A._asyncRethrow($async$result, $async$completer);
@@ -56351,7 +56330,7 @@ self.readline = _cli_pkg_requires.readline;
56351
56330
  _runBuiltInCallable$body$_EvaluateVisitor($arguments, callable, nodeWithSpan) {
56352
56331
  var $async$goto = 0,
56353
56332
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value),
56354
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $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;
56333
+ $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
56334
  var $async$_async_evaluate$_runBuiltInCallable$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
56356
56335
  if ($async$errorCode === 1) {
56357
56336
  $async$currentError = $async$result;
@@ -56964,7 +56943,7 @@ self.readline = _cli_pkg_requires.readline;
56964
56943
  visitCssMediaRule$body$_EvaluateVisitor(node) {
56965
56944
  var $async$goto = 0,
56966
56945
  $async$completer = A._makeAsyncAwaitCompleter(type$.void),
56967
- $async$returnValue, $async$self = this, mergedQueries, t1;
56946
+ $async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3;
56968
56947
  var $async$visitCssMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
56969
56948
  if ($async$errorCode === 1)
56970
56949
  return A._asyncRethrow($async$result, $async$completer);
@@ -56981,9 +56960,21 @@ self.readline = _cli_pkg_requires.readline;
56981
56960
  $async$goto = 1;
56982
56961
  break;
56983
56962
  }
56963
+ if (t1)
56964
+ mergedSources = B.Set_empty0;
56965
+ else {
56966
+ t2 = $async$self._async_evaluate$_mediaQuerySources;
56967
+ t2.toString;
56968
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
56969
+ t3 = $async$self._async_evaluate$_mediaQueries;
56970
+ t3.toString;
56971
+ t2.addAll$1(0, t3);
56972
+ t2.addAll$1(0, node.queries);
56973
+ mergedSources = t2;
56974
+ }
56984
56975
  t1 = t1 ? node.queries : mergedQueries;
56985
56976
  $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(mergedQueries), type$.ModifiableCssMediaRule, type$.Null), $async$visitCssMediaRule$1);
56977
+ 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
56978
  case 3:
56988
56979
  // returning from await.
56989
56980
  case 1:
@@ -57404,14 +57395,14 @@ self.readline = _cli_pkg_requires.readline;
57404
57395
  });
57405
57396
  return A._asyncStartSync($async$_async_evaluate$_withStyleRule$1$2, $async$completer);
57406
57397
  },
57407
- _async_evaluate$_withMediaQueries$1$2(queries, callback, $T) {
57408
- return this._withMediaQueries$body$_EvaluateVisitor(queries, callback, $T, $T);
57398
+ _async_evaluate$_withMediaQueries$1$3(queries, sources, callback, $T) {
57399
+ return this._withMediaQueries$body$_EvaluateVisitor(queries, sources, callback, $T, $T);
57409
57400
  },
57410
- _withMediaQueries$body$_EvaluateVisitor(queries, callback, $T, $async$type) {
57401
+ _withMediaQueries$body$_EvaluateVisitor(queries, sources, callback, $T, $async$type) {
57411
57402
  var $async$goto = 0,
57412
57403
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
57413
- $async$returnValue, $async$self = this, result, oldMediaQueries;
57414
- var $async$_async_evaluate$_withMediaQueries$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
57404
+ $async$returnValue, $async$self = this, result, oldMediaQueries, oldSources;
57405
+ var $async$_async_evaluate$_withMediaQueries$1$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
57415
57406
  if ($async$errorCode === 1)
57416
57407
  return A._asyncRethrow($async$result, $async$completer);
57417
57408
  while (true)
@@ -57419,13 +57410,16 @@ self.readline = _cli_pkg_requires.readline;
57419
57410
  case 0:
57420
57411
  // Function start
57421
57412
  oldMediaQueries = $async$self._async_evaluate$_mediaQueries;
57413
+ oldSources = $async$self._async_evaluate$_mediaQuerySources;
57422
57414
  $async$self._async_evaluate$_mediaQueries = queries;
57415
+ $async$self._async_evaluate$_mediaQuerySources = sources;
57423
57416
  $async$goto = 3;
57424
- return A._asyncAwait(callback.call$0(), $async$_async_evaluate$_withMediaQueries$1$2);
57417
+ return A._asyncAwait(callback.call$0(), $async$_async_evaluate$_withMediaQueries$1$3);
57425
57418
  case 3:
57426
57419
  // returning from await.
57427
57420
  result = $async$result;
57428
57421
  $async$self._async_evaluate$_mediaQueries = oldMediaQueries;
57422
+ $async$self._async_evaluate$_mediaQuerySources = oldSources;
57429
57423
  $async$returnValue = result;
57430
57424
  // goto return
57431
57425
  $async$goto = 1;
@@ -57435,7 +57429,7 @@ self.readline = _cli_pkg_requires.readline;
57435
57429
  return A._asyncReturn($async$returnValue, $async$completer);
57436
57430
  }
57437
57431
  });
57438
- return A._asyncStartSync($async$_async_evaluate$_withMediaQueries$1$2, $async$completer);
57432
+ return A._asyncStartSync($async$_async_evaluate$_withMediaQueries$1$3, $async$completer);
57439
57433
  },
57440
57434
  _async_evaluate$_withStackFrame$1$3(member, nodeWithSpan, callback, $T) {
57441
57435
  return this._withStackFrame$body$_EvaluateVisitor(member, nodeWithSpan, callback, $T, $T);
@@ -57590,7 +57584,7 @@ self.readline = _cli_pkg_requires.readline;
57590
57584
  _addExceptionSpanAsync$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
57591
57585
  var $async$goto = 0,
57592
57586
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
57593
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
57587
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
57594
57588
  var $async$_addExceptionSpanAsync$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
57595
57589
  if ($async$errorCode === 1) {
57596
57590
  $async$currentError = $async$result;
@@ -57659,7 +57653,7 @@ self.readline = _cli_pkg_requires.readline;
57659
57653
  _addErrorSpan$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
57660
57654
  var $async$goto = 0,
57661
57655
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
57662
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
57656
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
57663
57657
  var $async$_async_evaluate$_addErrorSpan$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
57664
57658
  if ($async$errorCode === 1) {
57665
57659
  $async$currentError = $async$result;
@@ -58410,7 +58404,7 @@ self.readline = _cli_pkg_requires.readline;
58410
58404
  };
58411
58405
  A._EvaluateVisitor__scopeForAtRoot_closure7.prototype = {
58412
58406
  call$1(callback) {
58413
- return this.$this._async_evaluate$_withMediaQueries$1$2(null, new A._EvaluateVisitor__scopeForAtRoot__closure0(this.innerScope, callback), type$.Null);
58407
+ return this.$this._async_evaluate$_withMediaQueries$1$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure0(this.innerScope, callback), type$.Null);
58414
58408
  },
58415
58409
  $signature: 32
58416
58410
  };
@@ -59247,7 +59241,7 @@ self.readline = _cli_pkg_requires.readline;
59247
59241
  if (t2 == null)
59248
59242
  t2 = $async$self.queries;
59249
59243
  $async$goto = 2;
59250
- return A._asyncAwait(t1._async_evaluate$_withMediaQueries$1$2(t2, new A._EvaluateVisitor_visitMediaRule__closure0(t1, $async$self.node), type$.Null), $async$call$0);
59244
+ 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
59245
  case 2:
59252
59246
  // returning from await.
59253
59247
  // implicit return
@@ -59358,9 +59352,10 @@ self.readline = _cli_pkg_requires.readline;
59358
59352
  A._EvaluateVisitor_visitMediaRule_closure4.prototype = {
59359
59353
  call$1(node) {
59360
59354
  var t1;
59361
- if (!type$.CssStyleRule._is(node))
59362
- t1 = this.mergedQueries != null && type$.CssMediaRule._is(node);
59363
- else
59355
+ if (!type$.CssStyleRule._is(node)) {
59356
+ t1 = this.mergedSources;
59357
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
59358
+ } else
59364
59359
  t1 = true;
59365
59360
  return t1;
59366
59361
  },
@@ -60533,7 +60528,7 @@ self.readline = _cli_pkg_requires.readline;
60533
60528
  if (t2 == null)
60534
60529
  t2 = $async$self.node.queries;
60535
60530
  $async$goto = 2;
60536
- return A._asyncAwait(t1._async_evaluate$_withMediaQueries$1$2(t2, new A._EvaluateVisitor_visitCssMediaRule__closure0(t1, $async$self.node), type$.Null), $async$call$0);
60531
+ 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
60532
  case 2:
60538
60533
  // returning from await.
60539
60534
  // implicit return
@@ -60640,9 +60635,10 @@ self.readline = _cli_pkg_requires.readline;
60640
60635
  A._EvaluateVisitor_visitCssMediaRule_closure4.prototype = {
60641
60636
  call$1(node) {
60642
60637
  var t1;
60643
- if (!type$.CssStyleRule._is(node))
60644
- t1 = this.mergedQueries != null && type$.CssMediaRule._is(node);
60645
- else
60638
+ if (!type$.CssStyleRule._is(node)) {
60639
+ t1 = this.mergedSources;
60640
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
60641
+ } else
60646
60642
  t1 = true;
60647
60643
  return t1;
60648
60644
  },
@@ -61755,7 +61751,7 @@ self.readline = _cli_pkg_requires.readline;
61755
61751
  return null;
61756
61752
  },
61757
61753
  visitMediaRule$1(node) {
61758
- var queries, mergedQueries, t1, _this = this;
61754
+ var queries, mergedQueries, t1, mergedSources, t2, t3, _this = this;
61759
61755
  if (_this._declarationName != null)
61760
61756
  throw A.wrapException(_this._evaluate$_exception$2(string$.Media_, node.span));
61761
61757
  queries = _this._visitMediaQueries$1(node.query);
@@ -61763,8 +61759,20 @@ self.readline = _cli_pkg_requires.readline;
61763
61759
  t1 = mergedQueries == null;
61764
61760
  if (!t1 && J.get$isEmpty$asx(mergedQueries))
61765
61761
  return null;
61762
+ if (t1)
61763
+ mergedSources = B.Set_empty0;
61764
+ else {
61765
+ t2 = _this._mediaQuerySources;
61766
+ t2.toString;
61767
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
61768
+ t3 = _this._mediaQueries;
61769
+ t3.toString;
61770
+ t2.addAll$1(0, t3);
61771
+ t2.addAll$1(0, queries);
61772
+ mergedSources = t2;
61773
+ }
61766
61774
  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(mergedQueries), type$.ModifiableCssMediaRule, type$.Null);
61775
+ _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
61776
  return null;
61769
61777
  },
61770
61778
  _visitMediaQueries$1(interpolation) {
@@ -62476,15 +62484,27 @@ self.readline = _cli_pkg_requires.readline;
62476
62484
  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
62485
  },
62478
62486
  visitCssMediaRule$1(node) {
62479
- var mergedQueries, t1, _this = this;
62487
+ var mergedQueries, t1, mergedSources, t2, t3, _this = this;
62480
62488
  if (_this._declarationName != null)
62481
62489
  throw A.wrapException(_this._evaluate$_exception$2(string$.Media_, node.span));
62482
62490
  mergedQueries = A.NullableExtension_andThen(_this._mediaQueries, new A._EvaluateVisitor_visitCssMediaRule_closure(_this, node));
62483
62491
  t1 = mergedQueries == null;
62484
62492
  if (!t1 && J.get$isEmpty$asx(mergedQueries))
62485
62493
  return;
62494
+ if (t1)
62495
+ mergedSources = B.Set_empty0;
62496
+ else {
62497
+ t2 = _this._mediaQuerySources;
62498
+ t2.toString;
62499
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery);
62500
+ t3 = _this._mediaQueries;
62501
+ t3.toString;
62502
+ t2.addAll$1(0, t3);
62503
+ t2.addAll$1(0, node.queries);
62504
+ mergedSources = t2;
62505
+ }
62486
62506
  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(mergedQueries), type$.ModifiableCssMediaRule, type$.Null);
62507
+ _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
62508
  },
62489
62509
  visitCssStyleRule$1(node) {
62490
62510
  var t1, styleRule, t2, t3, t4, t5, originalSelector, rule, oldAtRootExcludingStyleRule, _this = this,
@@ -62631,16 +62651,19 @@ self.readline = _cli_pkg_requires.readline;
62631
62651
  _withStyleRule$2(rule, callback) {
62632
62652
  return this._withStyleRule$1$2(rule, callback, type$.dynamic);
62633
62653
  },
62634
- _withMediaQueries$1$2(queries, callback) {
62635
- var result,
62636
- oldMediaQueries = this._mediaQueries;
62637
- this._mediaQueries = queries;
62654
+ _withMediaQueries$1$3(queries, sources, callback) {
62655
+ var result, _this = this,
62656
+ oldMediaQueries = _this._mediaQueries,
62657
+ oldSources = _this._mediaQuerySources;
62658
+ _this._mediaQueries = queries;
62659
+ _this._mediaQuerySources = sources;
62638
62660
  result = callback.call$0();
62639
- this._mediaQueries = oldMediaQueries;
62661
+ _this._mediaQueries = oldMediaQueries;
62662
+ _this._mediaQuerySources = oldSources;
62640
62663
  return result;
62641
62664
  },
62642
- _withMediaQueries$2(queries, callback) {
62643
- return this._withMediaQueries$1$2(queries, callback, type$.dynamic);
62665
+ _withMediaQueries$3(queries, sources, callback) {
62666
+ return this._withMediaQueries$1$3(queries, sources, callback, type$.dynamic);
62644
62667
  },
62645
62668
  _withStackFrame$1$3(member, nodeWithSpan, callback) {
62646
62669
  var oldMember, result, _this = this,
@@ -63255,7 +63278,7 @@ self.readline = _cli_pkg_requires.readline;
63255
63278
  };
63256
63279
  A._EvaluateVisitor__scopeForAtRoot_closure1.prototype = {
63257
63280
  call$1(callback) {
63258
- return this.$this._withMediaQueries$2(null, new A._EvaluateVisitor__scopeForAtRoot__closure(this.innerScope, callback));
63281
+ return this.$this._withMediaQueries$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure(this.innerScope, callback));
63259
63282
  },
63260
63283
  $signature: 26
63261
63284
  };
@@ -63669,7 +63692,7 @@ self.readline = _cli_pkg_requires.readline;
63669
63692
  t2 = _this.mergedQueries;
63670
63693
  if (t2 == null)
63671
63694
  t2 = _this.queries;
63672
- t1._withMediaQueries$2(t2, new A._EvaluateVisitor_visitMediaRule__closure(t1, _this.node));
63695
+ t1._withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitMediaRule__closure(t1, _this.node));
63673
63696
  },
63674
63697
  $signature: 1
63675
63698
  };
@@ -63697,9 +63720,10 @@ self.readline = _cli_pkg_requires.readline;
63697
63720
  A._EvaluateVisitor_visitMediaRule_closure1.prototype = {
63698
63721
  call$1(node) {
63699
63722
  var t1;
63700
- if (!type$.CssStyleRule._is(node))
63701
- t1 = this.mergedQueries != null && type$.CssMediaRule._is(node);
63702
- else
63723
+ if (!type$.CssStyleRule._is(node)) {
63724
+ t1 = this.mergedSources;
63725
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
63726
+ } else
63703
63727
  t1 = true;
63704
63728
  return t1;
63705
63729
  },
@@ -64220,7 +64244,7 @@ self.readline = _cli_pkg_requires.readline;
64220
64244
  t2 = _this.mergedQueries;
64221
64245
  if (t2 == null)
64222
64246
  t2 = _this.node.queries;
64223
- t1._withMediaQueries$2(t2, new A._EvaluateVisitor_visitCssMediaRule__closure(t1, _this.node));
64247
+ t1._withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitCssMediaRule__closure(t1, _this.node));
64224
64248
  },
64225
64249
  $signature: 1
64226
64250
  };
@@ -64252,9 +64276,10 @@ self.readline = _cli_pkg_requires.readline;
64252
64276
  A._EvaluateVisitor_visitCssMediaRule_closure1.prototype = {
64253
64277
  call$1(node) {
64254
64278
  var t1;
64255
- if (!type$.CssStyleRule._is(node))
64256
- t1 = this.mergedQueries != null && type$.CssMediaRule._is(node);
64257
- else
64279
+ if (!type$.CssStyleRule._is(node)) {
64280
+ t1 = this.mergedSources;
64281
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
64282
+ } else
64258
64283
  t1 = true;
64259
64284
  return t1;
64260
64285
  },
@@ -67364,11 +67389,11 @@ self.readline = _cli_pkg_requires.readline;
67364
67389
  A.LazyTrace.prototype = {
67365
67390
  get$_lazy_trace$_trace() {
67366
67391
  var result, _this = this,
67367
- value = _this.__LazyTrace__trace;
67392
+ value = _this.__LazyTrace__trace_FI;
67368
67393
  if (value === $) {
67369
67394
  result = _this._thunk.call$0();
67370
- A._lateInitializeOnceCheck(_this.__LazyTrace__trace, "_trace");
67371
- _this.__LazyTrace__trace = result;
67395
+ _this.__LazyTrace__trace_FI !== $ && A.throwUnnamedLateFieldADI();
67396
+ _this.__LazyTrace__trace_FI = result;
67372
67397
  value = result;
67373
67398
  }
67374
67399
  return value;
@@ -67751,11 +67776,10 @@ self.readline = _cli_pkg_requires.readline;
67751
67776
  return true;
67752
67777
  },
67753
67778
  error$3$length$position(_, message, $length, position) {
67754
- var t2, match, _this = this,
67779
+ var match, t2, _this = this,
67755
67780
  t1 = _this.string;
67756
67781
  A.validateErrorArgs(t1, null, position, $length);
67757
- t2 = position == null && $length == null;
67758
- match = t2 ? _this.get$lastMatch() : null;
67782
+ match = position == null && $length == null ? _this.get$lastMatch() : null;
67759
67783
  if (position == null)
67760
67784
  position = match == null ? _this._string_scanner$_position : match.start;
67761
67785
  if ($length == null)
@@ -68097,10 +68121,9 @@ self.readline = _cli_pkg_requires.readline;
68097
68121
  t4 = t4 || t3 >= 128;
68098
68122
  } else
68099
68123
  t4 = true;
68100
- if (!t4) {
68101
- t4 = t3 >= 48 && t3 <= 57;
68102
- t3 = t4 || t3 === 45;
68103
- } else
68124
+ if (!t4)
68125
+ t3 = t3 >= 48 && t3 <= 57 || t3 === 45;
68126
+ else
68104
68127
  t3 = true;
68105
68128
  } else
68106
68129
  t3 = false;
@@ -70821,7 +70844,7 @@ self.readline = _cli_pkg_requires.readline;
70821
70844
  visitMediaRule$body$_EvaluateVisitor0(node) {
70822
70845
  var $async$goto = 0,
70823
70846
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value_2),
70824
- $async$returnValue, $async$self = this, queries, mergedQueries, t1;
70847
+ $async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2, t3;
70825
70848
  var $async$visitMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
70826
70849
  if ($async$errorCode === 1)
70827
70850
  return A._asyncRethrow($async$result, $async$completer);
@@ -70844,9 +70867,21 @@ self.readline = _cli_pkg_requires.readline;
70844
70867
  $async$goto = 1;
70845
70868
  break;
70846
70869
  }
70870
+ if (t1)
70871
+ mergedSources = B.Set_empty4;
70872
+ else {
70873
+ t2 = $async$self._async_evaluate0$_mediaQuerySources;
70874
+ t2.toString;
70875
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
70876
+ t3 = $async$self._async_evaluate0$_mediaQueries;
70877
+ t3.toString;
70878
+ t2.addAll$1(0, t3);
70879
+ t2.addAll$1(0, queries);
70880
+ mergedSources = t2;
70881
+ }
70847
70882
  t1 = t1 ? queries : mergedQueries;
70848
70883
  $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(mergedQueries), type$.ModifiableCssMediaRule_2, type$.Null), $async$visitMediaRule$1);
70884
+ 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
70885
  case 4:
70851
70886
  // returning from await.
70852
70887
  $async$returnValue = null;
@@ -71721,7 +71756,7 @@ self.readline = _cli_pkg_requires.readline;
71721
71756
  visitCalculationExpression$body$_EvaluateVisitor0(node) {
71722
71757
  var $async$goto = 0,
71723
71758
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value_2),
71724
- $async$returnValue, $async$next = [], $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
71759
+ $async$returnValue, $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
71725
71760
  var $async$visitCalculationExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
71726
71761
  if ($async$errorCode === 1)
71727
71762
  return A._asyncRethrow($async$result, $async$completer);
@@ -72327,7 +72362,7 @@ self.readline = _cli_pkg_requires.readline;
72327
72362
  _runBuiltInCallable$body$_EvaluateVisitor0($arguments, callable, nodeWithSpan) {
72328
72363
  var $async$goto = 0,
72329
72364
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value_2),
72330
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $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;
72365
+ $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
72366
  var $async$_async_evaluate0$_runBuiltInCallable$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
72332
72367
  if ($async$errorCode === 1) {
72333
72368
  $async$currentError = $async$result;
@@ -72940,7 +72975,7 @@ self.readline = _cli_pkg_requires.readline;
72940
72975
  visitCssMediaRule$body$_EvaluateVisitor0(node) {
72941
72976
  var $async$goto = 0,
72942
72977
  $async$completer = A._makeAsyncAwaitCompleter(type$.void),
72943
- $async$returnValue, $async$self = this, mergedQueries, t1;
72978
+ $async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3;
72944
72979
  var $async$visitCssMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
72945
72980
  if ($async$errorCode === 1)
72946
72981
  return A._asyncRethrow($async$result, $async$completer);
@@ -72957,9 +72992,21 @@ self.readline = _cli_pkg_requires.readline;
72957
72992
  $async$goto = 1;
72958
72993
  break;
72959
72994
  }
72995
+ if (t1)
72996
+ mergedSources = B.Set_empty4;
72997
+ else {
72998
+ t2 = $async$self._async_evaluate0$_mediaQuerySources;
72999
+ t2.toString;
73000
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
73001
+ t3 = $async$self._async_evaluate0$_mediaQueries;
73002
+ t3.toString;
73003
+ t2.addAll$1(0, t3);
73004
+ t2.addAll$1(0, node.queries);
73005
+ mergedSources = t2;
73006
+ }
72960
73007
  t1 = t1 ? node.queries : mergedQueries;
72961
73008
  $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(mergedQueries), type$.ModifiableCssMediaRule_2, type$.Null), $async$visitCssMediaRule$1);
73009
+ 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
73010
  case 3:
72964
73011
  // returning from await.
72965
73012
  case 1:
@@ -73380,14 +73427,14 @@ self.readline = _cli_pkg_requires.readline;
73380
73427
  });
73381
73428
  return A._asyncStartSync($async$_async_evaluate0$_withStyleRule$1$2, $async$completer);
73382
73429
  },
73383
- _async_evaluate0$_withMediaQueries$1$2(queries, callback, $T) {
73384
- return this._withMediaQueries$body$_EvaluateVisitor0(queries, callback, $T, $T);
73430
+ _async_evaluate0$_withMediaQueries$1$3(queries, sources, callback, $T) {
73431
+ return this._withMediaQueries$body$_EvaluateVisitor0(queries, sources, callback, $T, $T);
73385
73432
  },
73386
- _withMediaQueries$body$_EvaluateVisitor0(queries, callback, $T, $async$type) {
73433
+ _withMediaQueries$body$_EvaluateVisitor0(queries, sources, callback, $T, $async$type) {
73387
73434
  var $async$goto = 0,
73388
73435
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
73389
- $async$returnValue, $async$self = this, result, oldMediaQueries;
73390
- var $async$_async_evaluate0$_withMediaQueries$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
73436
+ $async$returnValue, $async$self = this, result, oldMediaQueries, oldSources;
73437
+ var $async$_async_evaluate0$_withMediaQueries$1$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
73391
73438
  if ($async$errorCode === 1)
73392
73439
  return A._asyncRethrow($async$result, $async$completer);
73393
73440
  while (true)
@@ -73395,13 +73442,16 @@ self.readline = _cli_pkg_requires.readline;
73395
73442
  case 0:
73396
73443
  // Function start
73397
73444
  oldMediaQueries = $async$self._async_evaluate0$_mediaQueries;
73445
+ oldSources = $async$self._async_evaluate0$_mediaQuerySources;
73398
73446
  $async$self._async_evaluate0$_mediaQueries = queries;
73447
+ $async$self._async_evaluate0$_mediaQuerySources = sources;
73399
73448
  $async$goto = 3;
73400
- return A._asyncAwait(callback.call$0(), $async$_async_evaluate0$_withMediaQueries$1$2);
73449
+ return A._asyncAwait(callback.call$0(), $async$_async_evaluate0$_withMediaQueries$1$3);
73401
73450
  case 3:
73402
73451
  // returning from await.
73403
73452
  result = $async$result;
73404
73453
  $async$self._async_evaluate0$_mediaQueries = oldMediaQueries;
73454
+ $async$self._async_evaluate0$_mediaQuerySources = oldSources;
73405
73455
  $async$returnValue = result;
73406
73456
  // goto return
73407
73457
  $async$goto = 1;
@@ -73411,7 +73461,7 @@ self.readline = _cli_pkg_requires.readline;
73411
73461
  return A._asyncReturn($async$returnValue, $async$completer);
73412
73462
  }
73413
73463
  });
73414
- return A._asyncStartSync($async$_async_evaluate0$_withMediaQueries$1$2, $async$completer);
73464
+ return A._asyncStartSync($async$_async_evaluate0$_withMediaQueries$1$3, $async$completer);
73415
73465
  },
73416
73466
  _async_evaluate0$_withStackFrame$1$3(member, nodeWithSpan, callback, $T) {
73417
73467
  return this._withStackFrame$body$_EvaluateVisitor0(member, nodeWithSpan, callback, $T, $T);
@@ -73566,7 +73616,7 @@ self.readline = _cli_pkg_requires.readline;
73566
73616
  _addExceptionSpanAsync$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
73567
73617
  var $async$goto = 0,
73568
73618
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
73569
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
73619
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
73570
73620
  var $async$_async_evaluate0$_addExceptionSpanAsync$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
73571
73621
  if ($async$errorCode === 1) {
73572
73622
  $async$currentError = $async$result;
@@ -73635,7 +73685,7 @@ self.readline = _cli_pkg_requires.readline;
73635
73685
  _addErrorSpan$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
73636
73686
  var $async$goto = 0,
73637
73687
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
73638
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
73688
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
73639
73689
  var $async$_async_evaluate0$_addErrorSpan$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
73640
73690
  if ($async$errorCode === 1) {
73641
73691
  $async$currentError = $async$result;
@@ -74385,7 +74435,7 @@ self.readline = _cli_pkg_requires.readline;
74385
74435
  };
74386
74436
  A._EvaluateVisitor__scopeForAtRoot_closure19.prototype = {
74387
74437
  call$1(callback) {
74388
- return this.$this._async_evaluate0$_withMediaQueries$1$2(null, new A._EvaluateVisitor__scopeForAtRoot__closure2(this.innerScope, callback), type$.Null);
74438
+ return this.$this._async_evaluate0$_withMediaQueries$1$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure2(this.innerScope, callback), type$.Null);
74389
74439
  },
74390
74440
  $signature: 32
74391
74441
  };
@@ -75221,7 +75271,7 @@ self.readline = _cli_pkg_requires.readline;
75221
75271
  if (t2 == null)
75222
75272
  t2 = $async$self.queries;
75223
75273
  $async$goto = 2;
75224
- return A._asyncAwait(t1._async_evaluate0$_withMediaQueries$1$2(t2, new A._EvaluateVisitor_visitMediaRule__closure2(t1, $async$self.node), type$.Null), $async$call$0);
75274
+ 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
75275
  case 2:
75226
75276
  // returning from await.
75227
75277
  // implicit return
@@ -75332,9 +75382,10 @@ self.readline = _cli_pkg_requires.readline;
75332
75382
  A._EvaluateVisitor_visitMediaRule_closure10.prototype = {
75333
75383
  call$1(node) {
75334
75384
  var t1;
75335
- if (!type$.CssStyleRule_2._is(node))
75336
- t1 = this.mergedQueries != null && type$.CssMediaRule_2._is(node);
75337
- else
75385
+ if (!type$.CssStyleRule_2._is(node)) {
75386
+ t1 = this.mergedSources;
75387
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
75388
+ } else
75338
75389
  t1 = true;
75339
75390
  return t1;
75340
75391
  },
@@ -76507,7 +76558,7 @@ self.readline = _cli_pkg_requires.readline;
76507
76558
  if (t2 == null)
76508
76559
  t2 = $async$self.node.queries;
76509
76560
  $async$goto = 2;
76510
- return A._asyncAwait(t1._async_evaluate0$_withMediaQueries$1$2(t2, new A._EvaluateVisitor_visitCssMediaRule__closure2(t1, $async$self.node), type$.Null), $async$call$0);
76561
+ 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
76562
  case 2:
76512
76563
  // returning from await.
76513
76564
  // implicit return
@@ -76614,9 +76665,10 @@ self.readline = _cli_pkg_requires.readline;
76614
76665
  A._EvaluateVisitor_visitCssMediaRule_closure10.prototype = {
76615
76666
  call$1(node) {
76616
76667
  var t1;
76617
- if (!type$.CssStyleRule_2._is(node))
76618
- t1 = this.mergedQueries != null && type$.CssMediaRule_2._is(node);
76619
- else
76668
+ if (!type$.CssStyleRule_2._is(node)) {
76669
+ t1 = this.mergedSources;
76670
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
76671
+ } else
76620
76672
  t1 = true;
76621
76673
  return t1;
76622
76674
  },
@@ -79103,7 +79155,7 @@ self.readline = _cli_pkg_requires.readline;
79103
79155
  t4 = t3.item1;
79104
79156
  t3 = t3.item2;
79105
79157
  if (!this.asynch)
79106
- t2.push(A.BuiltInCallable$parsed(t4, t3, new A._parseFunctions__closure2(t1, callback)));
79158
+ 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
79159
  else
79108
79160
  t2.push(new A.AsyncBuiltInCallable0(t4, t3, new A._parseFunctions__closure3(t1, callback)));
79109
79161
  },
@@ -79207,11 +79259,11 @@ self.readline = _cli_pkg_requires.readline;
79207
79259
  A.ComplexSelector0.prototype = {
79208
79260
  get$specificity() {
79209
79261
  var result, _this = this,
79210
- value = _this._complex$__ComplexSelector_specificity;
79262
+ value = _this._complex$__ComplexSelector_specificity_FI;
79211
79263
  if (value === $) {
79212
79264
  result = B.JSArray_methods.fold$2(_this.components, 0, new A.ComplexSelector_specificity_closure0());
79213
- A._lateInitializeOnceCheck(_this._complex$__ComplexSelector_specificity, "specificity");
79214
- _this._complex$__ComplexSelector_specificity = result;
79265
+ _this._complex$__ComplexSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
79266
+ _this._complex$__ComplexSelector_specificity_FI = result;
79215
79267
  value = result;
79216
79268
  }
79217
79269
  return value;
@@ -79334,11 +79386,11 @@ self.readline = _cli_pkg_requires.readline;
79334
79386
  A.CompoundSelector0.prototype = {
79335
79387
  get$specificity() {
79336
79388
  var result, _this = this,
79337
- value = _this._compound$__CompoundSelector_specificity;
79389
+ value = _this._compound$__CompoundSelector_specificity_FI;
79338
79390
  if (value === $) {
79339
79391
  result = B.JSArray_methods.fold$2(_this.components, 0, new A.CompoundSelector_specificity_closure0());
79340
- A._lateInitializeOnceCheck(_this._compound$__CompoundSelector_specificity, "specificity");
79341
- _this._compound$__CompoundSelector_specificity = result;
79392
+ _this._compound$__CompoundSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
79393
+ _this._compound$__CompoundSelector_specificity_FI = result;
79342
79394
  value = result;
79343
79395
  }
79344
79396
  return value;
@@ -81124,7 +81176,7 @@ self.readline = _cli_pkg_requires.readline;
81124
81176
  return null;
81125
81177
  },
81126
81178
  visitMediaRule$1(node) {
81127
- var queries, mergedQueries, t1, _this = this;
81179
+ var queries, mergedQueries, t1, mergedSources, t2, t3, _this = this;
81128
81180
  if (_this._evaluate0$_declarationName != null)
81129
81181
  throw A.wrapException(_this._evaluate0$_exception$2(string$.Media_, node.span));
81130
81182
  queries = _this._evaluate0$_visitMediaQueries$1(node.query);
@@ -81132,8 +81184,20 @@ self.readline = _cli_pkg_requires.readline;
81132
81184
  t1 = mergedQueries == null;
81133
81185
  if (!t1 && J.get$isEmpty$asx(mergedQueries))
81134
81186
  return null;
81187
+ if (t1)
81188
+ mergedSources = B.Set_empty4;
81189
+ else {
81190
+ t2 = _this._evaluate0$_mediaQuerySources;
81191
+ t2.toString;
81192
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
81193
+ t3 = _this._evaluate0$_mediaQueries;
81194
+ t3.toString;
81195
+ t2.addAll$1(0, t3);
81196
+ t2.addAll$1(0, queries);
81197
+ mergedSources = t2;
81198
+ }
81135
81199
  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(mergedQueries), type$.ModifiableCssMediaRule_2, type$.Null);
81200
+ _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
81201
  return null;
81138
81202
  },
81139
81203
  _evaluate0$_visitMediaQueries$1(interpolation) {
@@ -81845,15 +81909,27 @@ self.readline = _cli_pkg_requires.readline;
81845
81909
  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
81910
  },
81847
81911
  visitCssMediaRule$1(node) {
81848
- var mergedQueries, t1, _this = this;
81912
+ var mergedQueries, t1, mergedSources, t2, t3, _this = this;
81849
81913
  if (_this._evaluate0$_declarationName != null)
81850
81914
  throw A.wrapException(_this._evaluate0$_exception$2(string$.Media_, node.span));
81851
81915
  mergedQueries = A.NullableExtension_andThen0(_this._evaluate0$_mediaQueries, new A._EvaluateVisitor_visitCssMediaRule_closure5(_this, node));
81852
81916
  t1 = mergedQueries == null;
81853
81917
  if (!t1 && J.get$isEmpty$asx(mergedQueries))
81854
81918
  return;
81919
+ if (t1)
81920
+ mergedSources = B.Set_empty4;
81921
+ else {
81922
+ t2 = _this._evaluate0$_mediaQuerySources;
81923
+ t2.toString;
81924
+ t2 = A.LinkedHashSet_LinkedHashSet$of(t2, type$.CssMediaQuery_2);
81925
+ t3 = _this._evaluate0$_mediaQueries;
81926
+ t3.toString;
81927
+ t2.addAll$1(0, t3);
81928
+ t2.addAll$1(0, node.queries);
81929
+ mergedSources = t2;
81930
+ }
81855
81931
  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(mergedQueries), type$.ModifiableCssMediaRule_2, type$.Null);
81932
+ _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
81933
  },
81858
81934
  visitCssStyleRule$1(node) {
81859
81935
  var t1, styleRule, t2, t3, t4, t5, originalSelector, rule, oldAtRootExcludingStyleRule, _this = this,
@@ -82000,16 +82076,19 @@ self.readline = _cli_pkg_requires.readline;
82000
82076
  _evaluate0$_withStyleRule$2(rule, callback) {
82001
82077
  return this._evaluate0$_withStyleRule$1$2(rule, callback, type$.dynamic);
82002
82078
  },
82003
- _evaluate0$_withMediaQueries$1$2(queries, callback) {
82004
- var result,
82005
- oldMediaQueries = this._evaluate0$_mediaQueries;
82006
- this._evaluate0$_mediaQueries = queries;
82079
+ _evaluate0$_withMediaQueries$1$3(queries, sources, callback) {
82080
+ var result, _this = this,
82081
+ oldMediaQueries = _this._evaluate0$_mediaQueries,
82082
+ oldSources = _this._evaluate0$_mediaQuerySources;
82083
+ _this._evaluate0$_mediaQueries = queries;
82084
+ _this._evaluate0$_mediaQuerySources = sources;
82007
82085
  result = callback.call$0();
82008
- this._evaluate0$_mediaQueries = oldMediaQueries;
82086
+ _this._evaluate0$_mediaQueries = oldMediaQueries;
82087
+ _this._evaluate0$_mediaQuerySources = oldSources;
82009
82088
  return result;
82010
82089
  },
82011
- _evaluate0$_withMediaQueries$2(queries, callback) {
82012
- return this._evaluate0$_withMediaQueries$1$2(queries, callback, type$.dynamic);
82090
+ _evaluate0$_withMediaQueries$3(queries, sources, callback) {
82091
+ return this._evaluate0$_withMediaQueries$1$3(queries, sources, callback, type$.dynamic);
82013
82092
  },
82014
82093
  _evaluate0$_withStackFrame$1$3(member, nodeWithSpan, callback) {
82015
82094
  var oldMember, result, _this = this,
@@ -82595,7 +82674,7 @@ self.readline = _cli_pkg_requires.readline;
82595
82674
  };
82596
82675
  A._EvaluateVisitor__scopeForAtRoot_closure13.prototype = {
82597
82676
  call$1(callback) {
82598
- return this.$this._evaluate0$_withMediaQueries$2(null, new A._EvaluateVisitor__scopeForAtRoot__closure1(this.innerScope, callback));
82677
+ return this.$this._evaluate0$_withMediaQueries$3(null, null, new A._EvaluateVisitor__scopeForAtRoot__closure1(this.innerScope, callback));
82599
82678
  },
82600
82679
  $signature: 26
82601
82680
  };
@@ -83008,7 +83087,7 @@ self.readline = _cli_pkg_requires.readline;
83008
83087
  t2 = _this.mergedQueries;
83009
83088
  if (t2 == null)
83010
83089
  t2 = _this.queries;
83011
- t1._evaluate0$_withMediaQueries$2(t2, new A._EvaluateVisitor_visitMediaRule__closure1(t1, _this.node));
83090
+ t1._evaluate0$_withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitMediaRule__closure1(t1, _this.node));
83012
83091
  },
83013
83092
  $signature: 1
83014
83093
  };
@@ -83036,9 +83115,10 @@ self.readline = _cli_pkg_requires.readline;
83036
83115
  A._EvaluateVisitor_visitMediaRule_closure7.prototype = {
83037
83116
  call$1(node) {
83038
83117
  var t1;
83039
- if (!type$.CssStyleRule_2._is(node))
83040
- t1 = this.mergedQueries != null && type$.CssMediaRule_2._is(node);
83041
- else
83118
+ if (!type$.CssStyleRule_2._is(node)) {
83119
+ t1 = this.mergedSources;
83120
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
83121
+ } else
83042
83122
  t1 = true;
83043
83123
  return t1;
83044
83124
  },
@@ -83559,7 +83639,7 @@ self.readline = _cli_pkg_requires.readline;
83559
83639
  t2 = _this.mergedQueries;
83560
83640
  if (t2 == null)
83561
83641
  t2 = _this.node.queries;
83562
- t1._evaluate0$_withMediaQueries$2(t2, new A._EvaluateVisitor_visitCssMediaRule__closure1(t1, _this.node));
83642
+ t1._evaluate0$_withMediaQueries$3(t2, _this.mergedSources, new A._EvaluateVisitor_visitCssMediaRule__closure1(t1, _this.node));
83563
83643
  },
83564
83644
  $signature: 1
83565
83645
  };
@@ -83591,9 +83671,10 @@ self.readline = _cli_pkg_requires.readline;
83591
83671
  A._EvaluateVisitor_visitCssMediaRule_closure7.prototype = {
83592
83672
  call$1(node) {
83593
83673
  var t1;
83594
- if (!type$.CssStyleRule_2._is(node))
83595
- t1 = this.mergedQueries != null && type$.CssMediaRule_2._is(node);
83596
- else
83674
+ if (!type$.CssStyleRule_2._is(node)) {
83675
+ t1 = this.mergedSources;
83676
+ t1 = t1.get$isNotEmpty(t1) && type$.CssMediaRule_2._is(node) && B.JSArray_methods.every$1(node.queries, t1.get$contains(t1));
83677
+ } else
83597
83678
  t1 = true;
83598
83679
  return t1;
83599
83680
  },
@@ -86352,11 +86433,11 @@ self.readline = _cli_pkg_requires.readline;
86352
86433
  J.set$context$x(J.get$options$x(context), context);
86353
86434
  fiber = J.get$fiber$x(t1);
86354
86435
  if (fiber != null)
86355
- _this.result.push(A.BuiltInCallable$parsed(tuple.item1, tuple.item2, new A._parseFunctions__closure(fiber, callback, context)));
86436
+ _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
86437
  else {
86357
86438
  t1 = _this.result;
86358
86439
  if (!_this.asynch)
86359
- t1.push(A.BuiltInCallable$parsed(tuple.item1, tuple.item2, new A._parseFunctions__closure0(callback, context)));
86440
+ 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
86441
  else
86361
86442
  t1.push(new A.AsyncBuiltInCallable0(tuple.item1, tuple.item2, new A._parseFunctions__closure1(callback, context)));
86362
86443
  }
@@ -87283,20 +87364,13 @@ self.readline = _cli_pkg_requires.readline;
87283
87364
  };
87284
87365
  A._merge_closure1.prototype = {
87285
87366
  call$1($arguments) {
87286
- var t2, t3, t4,
87367
+ var t2,
87287
87368
  t1 = J.getInterceptor$asx($arguments),
87288
87369
  map1 = t1.$index($arguments, 0).assertMap$1("map1"),
87289
87370
  map2 = t1.$index($arguments, 1).assertMap$1("map2");
87290
87371
  t1 = type$.Value_2;
87291
- t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1);
87292
- for (t3 = map1._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
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
- }
87372
+ t2 = A.LinkedHashMap_LinkedHashMap$of(map1._map0$_contents, t1, t1);
87373
+ t2.addAll$1(0, map2._map0$_contents);
87300
87374
  return new A.SassMap0(A.ConstantMap_ConstantMap$from(t2, t1, t1));
87301
87375
  },
87302
87376
  $signature: 38
@@ -87319,20 +87393,13 @@ self.readline = _cli_pkg_requires.readline;
87319
87393
  };
87320
87394
  A._merge__closure0.prototype = {
87321
87395
  call$1(oldValue) {
87322
- var t1, t2, t3, t4,
87396
+ var t1, t2,
87323
87397
  nestedMap = oldValue.tryMap$0();
87324
87398
  if (nestedMap == null)
87325
87399
  return this.map2;
87326
87400
  t1 = type$.Value_2;
87327
- t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1);
87328
- for (t3 = nestedMap._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
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
- }
87401
+ t2 = A.LinkedHashMap_LinkedHashMap$of(nestedMap._map0$_contents, t1, t1);
87402
+ t2.addAll$1(0, this.map2._map0$_contents);
87336
87403
  return new A.SassMap0(A.ConstantMap_ConstantMap$from(t2, t1, t1));
87337
87404
  },
87338
87405
  $signature: 461
@@ -87551,16 +87618,12 @@ self.readline = _cli_pkg_requires.readline;
87551
87618
  };
87552
87619
  A.legacyMapClass_closure4.prototype = {
87553
87620
  call$3(thisArg, index, value) {
87554
- var t3, t4, t5,
87621
+ var t3,
87555
87622
  t1 = J.getInterceptor$x(thisArg),
87556
87623
  t2 = t1.get$dartValue(thisArg)._map0$_contents,
87557
87624
  key = J.elementAt$1$ax(t2.get$keys(t2), index);
87558
87625
  t2 = type$.Value_2;
87559
- t3 = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2);
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
- }
87626
+ t3 = A.LinkedHashMap_LinkedHashMap$of(t1.get$dartValue(thisArg)._map0$_contents, t2, t2);
87564
87627
  t3.$indexSet(0, key, A.unwrapValue(value));
87565
87628
  t1.set$dartValue(thisArg, new A.SassMap0(A.ConstantMap_ConstantMap$from(t3, t2, t2)));
87566
87629
  },
@@ -88114,7 +88177,11 @@ self.readline = _cli_pkg_requires.readline;
88114
88177
  return this._media_query0$_name;
88115
88178
  }
88116
88179
  };
88117
- A.MediaQuerySuccessfulMergeResult0.prototype = {};
88180
+ A.MediaQuerySuccessfulMergeResult0.prototype = {
88181
+ toString$0(_) {
88182
+ return this.query.toString$0(0);
88183
+ }
88184
+ };
88118
88185
  A.MediaQueryParser0.prototype = {
88119
88186
  parse$0() {
88120
88187
  return this.wrapSpanFormatException$1(new A.MediaQueryParser_parse_closure0(this));
@@ -88421,11 +88488,11 @@ self.readline = _cli_pkg_requires.readline;
88421
88488
  A.MixinRule0.prototype = {
88422
88489
  get$hasContent() {
88423
88490
  var result, _this = this,
88424
- value = _this._mixin_rule$__MixinRule_hasContent;
88491
+ value = _this._mixin_rule$__MixinRule_hasContent_FI;
88425
88492
  if (value === $) {
88426
88493
  result = J.$eq$(B.C__HasContentVisitor0.visitChildren$1(_this.children), true);
88427
- A._lateInitializeOnceCheck(_this._mixin_rule$__MixinRule_hasContent, "hasContent");
88428
- _this._mixin_rule$__MixinRule_hasContent = result;
88494
+ _this._mixin_rule$__MixinRule_hasContent_FI !== $ && A.throwUnnamedLateFieldADI();
88495
+ _this._mixin_rule$__MixinRule_hasContent_FI = result;
88429
88496
  value = result;
88430
88497
  }
88431
88498
  return value;
@@ -89953,10 +90020,9 @@ self.readline = _cli_pkg_requires.readline;
89953
90020
  t2 = t2 || next >= 128;
89954
90021
  } else
89955
90022
  t2 = true;
89956
- if (!t2) {
89957
- t2 = next >= 48 && next <= 57;
89958
- t2 = t2 || next === 45;
89959
- } else
90023
+ if (!t2)
90024
+ t2 = next >= 48 && next <= 57 || next === 45;
90025
+ else
89960
90026
  t2 = true;
89961
90027
  if (t2)
89962
90028
  text._contents += A.Primitives_stringFromCharCode(t1.readChar$0());
@@ -90515,11 +90581,11 @@ self.readline = _cli_pkg_requires.readline;
90515
90581
  },
90516
90582
  get$specificity() {
90517
90583
  var result, _this = this,
90518
- value = _this._pseudo$__PseudoSelector_specificity;
90584
+ value = _this._pseudo$__PseudoSelector_specificity_FI;
90519
90585
  if (value === $) {
90520
90586
  result = new A.PseudoSelector_specificity_closure0(_this).call$0();
90521
- A._lateInitializeOnceCheck(_this._pseudo$__PseudoSelector_specificity, "specificity");
90522
- _this._pseudo$__PseudoSelector_specificity = result;
90587
+ _this._pseudo$__PseudoSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
90588
+ _this._pseudo$__PseudoSelector_specificity_FI = result;
90523
90589
  value = result;
90524
90590
  }
90525
90591
  return value;
@@ -94136,12 +94202,12 @@ self.readline = _cli_pkg_requires.readline;
94136
94202
  A.SassString0.prototype = {
94137
94203
  get$_string0$_sassLength() {
94138
94204
  var t1, result, _this = this,
94139
- value = _this._string0$__SassString__sassLength;
94205
+ value = _this._string0$__SassString__sassLength_FI;
94140
94206
  if (value === $) {
94141
94207
  t1 = new A.Runes(_this._string0$_text);
94142
94208
  result = t1.get$length(t1);
94143
- A._lateInitializeOnceCheck(_this._string0$__SassString__sassLength, "_sassLength");
94144
- _this._string0$__SassString__sassLength = result;
94209
+ _this._string0$__SassString__sassLength_FI !== $ && A.throwUnnamedLateFieldADI();
94210
+ _this._string0$__SassString__sassLength_FI = result;
94145
94211
  value = result;
94146
94212
  }
94147
94213
  return value;
@@ -96385,7 +96451,7 @@ self.readline = _cli_pkg_requires.readline;
96385
96451
  return new A.StringExpression0(buffer.interpolation$1(t1.spanFrom$1(new A._SpanScannerState(t1, t2))), true);
96386
96452
  },
96387
96453
  identifierLike$0() {
96388
- var invocation, color, specialFunction, _this = this,
96454
+ var invocation, expression, color, specialFunction, _this = this,
96389
96455
  t1 = _this.scanner,
96390
96456
  start = new A._SpanScannerState(t1, t1._string_scanner$_position),
96391
96457
  identifier = _this.interpolatedIdentifier$0(),
@@ -96399,7 +96465,8 @@ self.readline = _cli_pkg_requires.readline;
96399
96465
  return new A.IfExpression0(invocation, identifier.span.expand$1(0, invocation.span));
96400
96466
  } else if (plain === "not") {
96401
96467
  _this.whitespace$0();
96402
- return new A.UnaryOperationExpression0(B.UnaryOperator_not_not_not0, _this._stylesheet0$_singleExpression$0(), identifier.span);
96468
+ expression = _this._stylesheet0$_singleExpression$0();
96469
+ return new A.UnaryOperationExpression0(B.UnaryOperator_not_not_not0, expression, identifier.span.expand$1(0, expression.get$span(expression)));
96403
96470
  }
96404
96471
  lower._value = plain.toLowerCase();
96405
96472
  if (t1.peekChar$0() !== 40) {
@@ -99434,7 +99501,7 @@ self.readline = _cli_pkg_requires.readline;
99434
99501
  _inherit = hunkHelpers.inherit,
99435
99502
  _inheritMany = hunkHelpers.inheritMany;
99436
99503
  _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._RunNullaryZoneFunction, A._RunUnaryZoneFunction, A._RunBinaryZoneFunction, A._RegisterNullaryZoneFunction, A._RegisterUnaryZoneFunction, A._RegisterBinaryZoneFunction, 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]);
99504
+ _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
99505
  _inheritMany(J.Interceptor, [J.JSBool, J.JSNull, J.JavaScriptObject, J.JSArray, J.JSNumber, J.JSString, A.NativeTypedData]);
99439
99506
  _inherit(J.LegacyJavaScriptObject, J.JavaScriptObject);
99440
99507
  _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 +99551,6 @@ self.readline = _cli_pkg_requires.readline;
99484
99551
  _inheritMany(A._BufferingStreamSubscription, [A._ControllerSubscription, A._ForwardingStreamSubscription]);
99485
99552
  _inherit(A._StreamControllerAddStreamState, A._AddStreamState);
99486
99553
  _inheritMany(A._DelayedEvent, [A._DelayedData, A._DelayedError]);
99487
- _inherit(A._StreamImplEvents, A._PendingEvents);
99488
99554
  _inherit(A._ExpandStream, A._ForwardingStream);
99489
99555
  _inheritMany(A._Zone, [A._CustomZone, A._RootZone]);
99490
99556
  _inherit(A._IdentityHashMap, A._HashMap);
@@ -99628,7 +99694,7 @@ self.readline = _cli_pkg_requires.readline;
99628
99694
  arrayRti: Symbol("$ti")
99629
99695
  };
99630
99696
  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,"_StreamImplEvents":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}'));
99697
+ 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
99698
  var string$ = {
99633
99699
  x0a_BUG_: "\n\nBUG: This should include a source span!",
99634
99700
  x0a_More: "\n\nMore info and automated migrator: https://sass-lang.com/d/slash-div",
@@ -99676,7 +99742,7 @@ self.readline = _cli_pkg_requires.readline;
99676
99742
  x2c_whicw: ', which will likely produce invalid CSS.\nAlways quote color names when using them as strings or map keys (for example, "',
99677
99743
  x2e_Rela: ".\nRelative canonical URLs are deprecated and will eventually be disallowed.\n",
99678
99744
  x3d_____: "===== asynchronous gap ===========================\n",
99679
- x40_moz_: "@-moz-document is deprecated and support will be removed in Dart Sass 2.0.0.\n\nFor details, see http://bit.ly/MozDocument.",
99745
+ x40_moz_: "@-moz-document is deprecated and support will be removed in Dart Sass 2.0.0.\n\nFor details, see https://sass-lang.com/d/moz-document.",
99680
99746
  x40conte: "@content is only allowed within mixin declarations.",
99681
99747
  x40elsei: "@elseif is deprecated and will not be supported in future Sass versions.\n\nRecommendation: @else if",
99682
99748
  x40exten: "@extend may only be used within style rules.",
@@ -99767,7 +99833,7 @@ self.readline = _cli_pkg_requires.readline;
99767
99833
  Variabs: "Variable keyword arguments must be a map (was ",
99768
99834
  You_ma: "You may not @extend selectors across media queries.",
99769
99835
  You_pr: "You probably don't mean to use the color value ",
99770
- x60_inst: "` instead.\nSee http://bit.ly/ExtendCompound for details.\n",
99836
+ x60_inst: "` instead.\nSee https://sass-lang.com/d/extend-compound for details.\n",
99771
99837
  addExt_: "addExtension() can't be called for a const ExtensionStore.",
99772
99838
  addExts: "addExtensions() can't be called for a const ExtensionStore.",
99773
99839
  addSel: "addSelector() can't be called for a const ExtensionStore.",
@@ -99984,8 +100050,8 @@ self.readline = _cli_pkg_requires.readline;
99984
100050
  JSArray_Tuple2_Expression_Expression_2: findType("JSArray<Tuple2<Expression0,Expression0>>"),
99985
100051
  JSArray_Tuple2_String_AstNode: findType("JSArray<Tuple2<String,AstNode>>"),
99986
100052
  JSArray_Tuple2_String_AstNode_2: findType("JSArray<Tuple2<String,AstNode0>>"),
99987
- JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("JSArray<Tuple2<ArgumentDeclaration,Value(List<Value>)>>"),
99988
- JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("JSArray<Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>>"),
100053
+ JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("JSArray<Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>>"),
100054
+ JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("JSArray<Tuple2<ArgumentDeclaration,Value(List<Value>)>>"),
99989
100055
  JSArray_Tuple4_of_Uri_and_bool_and_Importer_and_nullable_Uri: findType("JSArray<Tuple4<Uri,bool,Importer,Uri?>>"),
99990
100056
  JSArray_Uri: findType("JSArray<Uri>"),
99991
100057
  JSArray_UseRule: findType("JSArray<UseRule>"),
@@ -100159,8 +100225,8 @@ self.readline = _cli_pkg_requires.readline;
100159
100225
  Tuple2_Uri_bool: findType("Tuple2<Uri,bool>"),
100160
100226
  Tuple2_of_ArgumentDeclaration_and_FutureOr_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration,Value/(List<Value>)>"),
100161
100227
  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<ArgumentDeclaration,Value(List<Value>)>"),
100163
- Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>"),
100228
+ Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>"),
100229
+ Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("Tuple2<ArgumentDeclaration,Value(List<Value>)>"),
100164
100230
  Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList: findType("Tuple2<ExtensionStore,Map<CssValue<SelectorList>,ModifiableCssValue<SelectorList>>>"),
100165
100231
  Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList_2: findType("Tuple2<ExtensionStore0,Map<CssValue0<SelectorList0>,ModifiableCssValue0<SelectorList0>>>"),
100166
100232
  Tuple2_of_List_Expression_and_Map_String_Expression: findType("Tuple2<List<Expression>,Map<String,Expression>>"),
@@ -100661,21 +100727,27 @@ self.readline = _cli_pkg_requires.readline;
100661
100727
  B.List_is_matches_where = A._setArrayType(makeConstList(["is", "matches", "where"]), type$.JSArray_String);
100662
100728
  B.Map_YEyLX = new A.ConstantStringMap(3, {is: null, matches: null, where: null}, B.List_is_matches_where, type$.ConstantStringMap_String_Null);
100663
100729
  B.Set_YEQji = new A._UnmodifiableSet(B.Map_YEyLX, type$._UnmodifiableSet_String);
100664
- B.List_empty28 = A._setArrayType(makeConstList([]), type$.JSArray_Module_AsyncCallable);
100665
- B.Map_empty15 = new A.ConstantStringMap(0, {}, B.List_empty28, A.findType("ConstantStringMap<Module<AsyncCallable>,Null>"));
100666
- B.Set_empty0 = new A._UnmodifiableSet(B.Map_empty15, A.findType("_UnmodifiableSet<Module<AsyncCallable>>"));
100667
- B.List_empty29 = A._setArrayType(makeConstList([]), type$.JSArray_Module_Callable);
100668
- B.Map_empty16 = new A.ConstantStringMap(0, {}, B.List_empty29, A.findType("ConstantStringMap<Module<Callable>,Null>"));
100669
- B.Set_empty = new A._UnmodifiableSet(B.Map_empty16, A.findType("_UnmodifiableSet<Module<Callable>>"));
100670
- B.List_empty30 = A._setArrayType(makeConstList([]), type$.JSArray_Module_AsyncCallable_2);
100671
- B.Map_empty17 = new A.ConstantStringMap(0, {}, B.List_empty30, A.findType("ConstantStringMap<Module0<AsyncCallable0>,Null>"));
100672
- B.Set_empty3 = new A._UnmodifiableSet(B.Map_empty17, A.findType("_UnmodifiableSet<Module0<AsyncCallable0>>"));
100673
- B.List_empty31 = A._setArrayType(makeConstList([]), type$.JSArray_Module_Callable_2);
100674
- B.Map_empty18 = new A.ConstantStringMap(0, {}, B.List_empty31, A.findType("ConstantStringMap<Module0<Callable0>,Null>"));
100675
- B.Set_empty2 = new A._UnmodifiableSet(B.Map_empty18, A.findType("_UnmodifiableSet<Module0<Callable0>>"));
100676
- B.List_empty32 = A._setArrayType(makeConstList([]), type$.JSArray_StylesheetNode);
100677
- B.Map_empty19 = new A.ConstantStringMap(0, {}, B.List_empty32, A.findType("ConstantStringMap<StylesheetNode,Null>"));
100678
- B.Set_empty1 = new A._UnmodifiableSet(B.Map_empty19, A.findType("_UnmodifiableSet<StylesheetNode>"));
100730
+ B.List_empty28 = A._setArrayType(makeConstList([]), type$.JSArray_CssMediaQuery);
100731
+ B.Map_empty15 = new A.ConstantStringMap(0, {}, B.List_empty28, A.findType("ConstantStringMap<CssMediaQuery,Null>"));
100732
+ B.Set_empty0 = new A._UnmodifiableSet(B.Map_empty15, A.findType("_UnmodifiableSet<CssMediaQuery>"));
100733
+ B.List_empty29 = A._setArrayType(makeConstList([]), type$.JSArray_CssMediaQuery_2);
100734
+ B.Map_empty16 = new A.ConstantStringMap(0, {}, B.List_empty29, A.findType("ConstantStringMap<CssMediaQuery0,Null>"));
100735
+ B.Set_empty4 = new A._UnmodifiableSet(B.Map_empty16, A.findType("_UnmodifiableSet<CssMediaQuery0>"));
100736
+ B.List_empty30 = A._setArrayType(makeConstList([]), type$.JSArray_Module_AsyncCallable);
100737
+ B.Map_empty17 = new A.ConstantStringMap(0, {}, B.List_empty30, A.findType("ConstantStringMap<Module<AsyncCallable>,Null>"));
100738
+ B.Set_empty1 = new A._UnmodifiableSet(B.Map_empty17, A.findType("_UnmodifiableSet<Module<AsyncCallable>>"));
100739
+ B.List_empty31 = A._setArrayType(makeConstList([]), type$.JSArray_Module_Callable);
100740
+ B.Map_empty18 = new A.ConstantStringMap(0, {}, B.List_empty31, A.findType("ConstantStringMap<Module<Callable>,Null>"));
100741
+ B.Set_empty = new A._UnmodifiableSet(B.Map_empty18, A.findType("_UnmodifiableSet<Module<Callable>>"));
100742
+ B.List_empty32 = A._setArrayType(makeConstList([]), type$.JSArray_Module_AsyncCallable_2);
100743
+ B.Map_empty19 = new A.ConstantStringMap(0, {}, B.List_empty32, A.findType("ConstantStringMap<Module0<AsyncCallable0>,Null>"));
100744
+ B.Set_empty5 = new A._UnmodifiableSet(B.Map_empty19, A.findType("_UnmodifiableSet<Module0<AsyncCallable0>>"));
100745
+ B.List_empty33 = A._setArrayType(makeConstList([]), type$.JSArray_Module_Callable_2);
100746
+ B.Map_empty20 = new A.ConstantStringMap(0, {}, B.List_empty33, A.findType("ConstantStringMap<Module0<Callable0>,Null>"));
100747
+ B.Set_empty3 = new A._UnmodifiableSet(B.Map_empty20, A.findType("_UnmodifiableSet<Module0<Callable0>>"));
100748
+ B.List_empty34 = A._setArrayType(makeConstList([]), type$.JSArray_StylesheetNode);
100749
+ B.Map_empty21 = new A.ConstantStringMap(0, {}, B.List_empty34, A.findType("ConstantStringMap<StylesheetNode,Null>"));
100750
+ B.Set_empty2 = new A._UnmodifiableSet(B.Map_empty21, A.findType("_UnmodifiableSet<StylesheetNode>"));
100679
100751
  B.StderrLogger_false = new A.StderrLogger(false);
100680
100752
  B.StderrLogger_false0 = new A.StderrLogger0(false);
100681
100753
  B.Symbol__evaluationContext = new A.Symbol("_evaluationContext");
@@ -100687,12 +100759,12 @@ self.readline = _cli_pkg_requires.readline;
100687
100759
  B.Syntax_SCSS_scss0 = new A.Syntax0("SCSS", "scss");
100688
100760
  B.Syntax_Sass_sass = new A.Syntax("Sass", "sass");
100689
100761
  B.Syntax_Sass_sass0 = new A.Syntax0("Sass", "sass");
100690
- B.List_empty33 = A._setArrayType(makeConstList([]), A.findType("JSArray<CssValue<SelectorList>>"));
100691
- B.Map_empty20 = new A.ConstantStringMap(0, {}, B.List_empty33, A.findType("ConstantStringMap<CssValue<SelectorList>,ModifiableCssValue<SelectorList>>"));
100692
- B.Tuple2_EmptyExtensionStore_Map_empty = new A.Tuple2(B.C_EmptyExtensionStore, B.Map_empty20, type$.Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList);
100693
- B.List_empty34 = A._setArrayType(makeConstList([]), A.findType("JSArray<CssValue0<SelectorList0>>"));
100694
- B.Map_empty21 = new A.ConstantStringMap(0, {}, B.List_empty34, A.findType("ConstantStringMap<CssValue0<SelectorList0>,ModifiableCssValue0<SelectorList0>>"));
100695
- B.Tuple2_EmptyExtensionStore_Map_empty0 = new A.Tuple2(B.C_EmptyExtensionStore0, B.Map_empty21, type$.Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList_2);
100762
+ B.List_empty35 = A._setArrayType(makeConstList([]), A.findType("JSArray<CssValue<SelectorList>>"));
100763
+ B.Map_empty22 = new A.ConstantStringMap(0, {}, B.List_empty35, A.findType("ConstantStringMap<CssValue<SelectorList>,ModifiableCssValue<SelectorList>>"));
100764
+ 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);
100765
+ B.List_empty36 = A._setArrayType(makeConstList([]), A.findType("JSArray<CssValue0<SelectorList0>>"));
100766
+ B.Map_empty23 = new A.ConstantStringMap(0, {}, B.List_empty36, A.findType("ConstantStringMap<CssValue0<SelectorList0>,ModifiableCssValue0<SelectorList0>>"));
100767
+ 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
100768
  B.Type_Null_Yyn = A.typeLiteral("Null");
100697
100769
  B.Type_Object_xQ6 = A.typeLiteral("Object");
100698
100770
  B.UnaryOperator_Ix1 = new A.UnaryOperator("divide", "/", "divide");
@@ -100731,12 +100803,6 @@ self.readline = _cli_pkg_requires.readline;
100731
100803
  B._PathRelation_equal = new A._PathRelation("equal");
100732
100804
  B._PathRelation_inconclusive = new A._PathRelation("inconclusive");
100733
100805
  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
100806
  B._SingletonCssMediaQueryMergeResult_empty = new A._SingletonCssMediaQueryMergeResult("empty");
100741
100807
  B._SingletonCssMediaQueryMergeResult_empty0 = new A._SingletonCssMediaQueryMergeResult0("empty");
100742
100808
  B._SingletonCssMediaQueryMergeResult_unrepresentable = new A._SingletonCssMediaQueryMergeResult("unrepresentable");
@@ -100747,11 +100813,17 @@ self.readline = _cli_pkg_requires.readline;
100747
100813
  B._StreamGroupState_paused = new A._StreamGroupState("paused");
100748
100814
  B._StringStackTrace_3uE = new A._StringStackTrace("");
100749
100815
  B._ZoneFunction_3bB = new A._ZoneFunction(B.C__RootZone, A.async___rootCreatePeriodicTimer$closure());
100816
+ B._ZoneFunction_7G2 = new A._ZoneFunction(B.C__RootZone, A.async___rootRegisterBinaryCallback$closure());
100817
+ B._ZoneFunction_Eeh = new A._ZoneFunction(B.C__RootZone, A.async___rootRegisterUnaryCallback$closure());
100750
100818
  B._ZoneFunction_NMc = new A._ZoneFunction(B.C__RootZone, A.async___rootHandleUncaughtError$closure());
100751
100819
  B._ZoneFunction__RootZone__rootCreateTimer = new A._ZoneFunction(B.C__RootZone, A.async___rootCreateTimer$closure());
100752
100820
  B._ZoneFunction__RootZone__rootErrorCallback = new A._ZoneFunction(B.C__RootZone, A.async___rootErrorCallback$closure());
100753
100821
  B._ZoneFunction__RootZone__rootFork = new A._ZoneFunction(B.C__RootZone, A.async___rootFork$closure());
100754
100822
  B._ZoneFunction__RootZone__rootPrint = new A._ZoneFunction(B.C__RootZone, A.async___rootPrint$closure());
100823
+ B._ZoneFunction__RootZone__rootRegisterCallback = new A._ZoneFunction(B.C__RootZone, A.async___rootRegisterCallback$closure());
100824
+ B._ZoneFunction__RootZone__rootRun = new A._ZoneFunction(B.C__RootZone, A.async___rootRun$closure());
100825
+ B._ZoneFunction__RootZone__rootRunBinary = new A._ZoneFunction(B.C__RootZone, A.async___rootRunBinary$closure());
100826
+ B._ZoneFunction__RootZone__rootRunUnary = new A._ZoneFunction(B.C__RootZone, A.async___rootRunUnary$closure());
100755
100827
  B._ZoneFunction__RootZone__rootScheduleMicrotask = new A._ZoneFunction(B.C__RootZone, A.async___rootScheduleMicrotask$closure());
100756
100828
  B._ZoneSpecification_ALf = new A._ZoneSpecification(null, null, null, null, null, null, null, null, null, null, null, null, null);
100757
100829
  })();