sass 1.54.6 → 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 +328 -422
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.7.
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;
@@ -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() {
@@ -15073,7 +15049,7 @@ self.readline = _cli_pkg_requires.readline;
15073
15049
  },
15074
15050
  LazyTrace: function LazyTrace(t0) {
15075
15051
  this._thunk = t0;
15076
- this.__LazyTrace__trace = $;
15052
+ this.__LazyTrace__trace_FI = $;
15077
15053
  },
15078
15054
  LazyTrace_terse_closure: function LazyTrace_terse_closure(t0) {
15079
15055
  this.$this = t0;
@@ -16565,18 +16541,15 @@ self.readline = _cli_pkg_requires.readline;
16565
16541
  this.value = t0;
16566
16542
  },
16567
16543
  BuiltInCallable$function0($name, $arguments, callback, url) {
16568
- 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));
16569
16545
  },
16570
16546
  BuiltInCallable$mixin0($name, $arguments, callback, url) {
16571
- 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));
16572
- },
16573
- BuiltInCallable$parsed($name, $arguments, callback) {
16574
- 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));
16575
16548
  },
16576
16549
  BuiltInCallable$overloadedFunction0($name, overloads) {
16577
16550
  var t2, t3, t4, t5, t6, t7, t8,
16578
- t1 = A._setArrayType([], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2);
16579
- 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();) {
16580
16553
  t7 = t2.get$current(t2);
16581
16554
  t8 = A.SpanScanner$(t4 + A.S(t7.key) + ") {", null);
16582
16555
  t1.push(new A.Tuple2(new A.ScssParser0(A.LinkedHashMap_LinkedHashMap$_empty(t5, t6), t8, B.StderrLogger_false0).parseArgumentDeclaration$0(), t7.value, t3));
@@ -17758,7 +17731,7 @@ self.readline = _cli_pkg_requires.readline;
17758
17731
  _.leadingCombinators = t0;
17759
17732
  _.components = t1;
17760
17733
  _.lineBreak = t2;
17761
- _._complex$__ComplexSelector_specificity = $;
17734
+ _._complex$__ComplexSelector_specificity_FI = $;
17762
17735
  },
17763
17736
  ComplexSelector_specificity_closure0: function ComplexSelector_specificity_closure0() {
17764
17737
  },
@@ -17776,7 +17749,7 @@ self.readline = _cli_pkg_requires.readline;
17776
17749
  },
17777
17750
  CompoundSelector0: function CompoundSelector0(t0) {
17778
17751
  this.components = t0;
17779
- this._compound$__CompoundSelector_specificity = $;
17752
+ this._compound$__CompoundSelector_specificity_FI = $;
17780
17753
  },
17781
17754
  CompoundSelector_specificity_closure0: function CompoundSelector_specificity_closure0() {
17782
17755
  },
@@ -20997,7 +20970,7 @@ self.readline = _cli_pkg_requires.readline;
20997
20970
  },
20998
20971
  MixinRule0: function MixinRule0(t0, t1, t2, t3, t4) {
20999
20972
  var _ = this;
21000
- _._mixin_rule$__MixinRule_hasContent = $;
20973
+ _._mixin_rule$__MixinRule_hasContent_FI = $;
21001
20974
  _.name = t0;
21002
20975
  _.$arguments = t1;
21003
20976
  _.span = t2;
@@ -21137,7 +21110,7 @@ self.readline = _cli_pkg_requires.readline;
21137
21110
  J.set$sassFalse$x(self.exports, B.SassBoolean_false0);
21138
21111
  J.set$Exception$x(self.exports, $.$get$exceptionClass());
21139
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())}});
21140
- J.set$info$x(self.exports, "dart-sass\t1.54.6\t(Sass Compiler)\t[Dart]\ndart2js\t2.17.7\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]");
21141
21114
  A.updateSourceSpanPrototype();
21142
21115
  J.set$render$x(self.exports, A.allowInteropNamed("sass.render", A.legacy__render$closure()));
21143
21116
  J.set$renderSync$x(self.exports, A.allowInteropNamed("sass.renderSync", A.legacy__renderSync$closure()));
@@ -21473,7 +21446,7 @@ self.readline = _cli_pkg_requires.readline;
21473
21446
  _.isSyntacticClass = t3;
21474
21447
  _.argument = t4;
21475
21448
  _.selector = t5;
21476
- _._pseudo$__PseudoSelector_specificity = $;
21449
+ _._pseudo$__PseudoSelector_specificity_FI = $;
21477
21450
  },
21478
21451
  PseudoSelector_specificity_closure0: function PseudoSelector_specificity_closure0(t0) {
21479
21452
  this.$this = t0;
@@ -21566,7 +21539,7 @@ self.readline = _cli_pkg_requires.readline;
21566
21539
  main$body(args) {
21567
21540
  var $async$goto = 0,
21568
21541
  $async$completer = A._makeAsyncAwaitCompleter(type$.void),
21569
- $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;
21570
21543
  var $async$main0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
21571
21544
  if ($async$errorCode === 1) {
21572
21545
  $async$currentError = $async$result;
@@ -21674,8 +21647,7 @@ self.readline = _cli_pkg_requires.readline;
21674
21647
  t3 = null;
21675
21648
  else {
21676
21649
  t5 = $.$get$_traces();
21677
- t4 = A._isBool(t3) || typeof t3 == "number" || t4;
21678
- if (t4)
21650
+ if (A._isBool(t3) || typeof t3 == "number" || t4)
21679
21651
  A.throwExpression(A.ArgumentError$value(t3, string$.Expand, null));
21680
21652
  t3 = t5._jsWeakMap.get(t3);
21681
21653
  }
@@ -21703,8 +21675,7 @@ self.readline = _cli_pkg_requires.readline;
21703
21675
  t3 = null;
21704
21676
  else {
21705
21677
  t5 = $.$get$_traces();
21706
- t4 = A._isBool(t3) || typeof t3 == "number" || t4;
21707
- if (t4)
21678
+ if (A._isBool(t3) || typeof t3 == "number" || t4)
21708
21679
  A.throwExpression(A.ArgumentError$value(t3, string$.Expand, null));
21709
21680
  t3 = t5._jsWeakMap.get(t3);
21710
21681
  }
@@ -21803,7 +21774,7 @@ self.readline = _cli_pkg_requires.readline;
21803
21774
  switch ($async$goto) {
21804
21775
  case 0:
21805
21776
  // Function start
21806
- $async$returnValue = "1.54.6 compiled with dart2js 2.17.7";
21777
+ $async$returnValue = "1.54.9 compiled with dart2js 2.18.0";
21807
21778
  // goto return
21808
21779
  $async$goto = 1;
21809
21780
  break;
@@ -22106,8 +22077,7 @@ self.readline = _cli_pkg_requires.readline;
22106
22077
  return !t1 ? map : A.LimitedMapView$blocklist0(map, blocklist, type$.String, $V);
22107
22078
  },
22108
22079
  ShadowedModuleView__needsBlocklist0(map, blocklist) {
22109
- var t1 = map.get$isNotEmpty(map) && blocklist.any$1(0, map.get$containsKey());
22110
- return t1;
22080
+ return map.get$isNotEmpty(map) && blocklist.any$1(0, map.get$containsKey());
22111
22081
  },
22112
22082
  ShadowedModuleView0: function ShadowedModuleView0(t0, t1, t2, t3, t4, t5) {
22113
22083
  var _ = this;
@@ -22335,7 +22305,7 @@ self.readline = _cli_pkg_requires.readline;
22335
22305
  var _ = this;
22336
22306
  _._string0$_text = t0;
22337
22307
  _._string0$_hasQuotes = t1;
22338
- _._string0$__SassString__sassLength = $;
22308
+ _._string0$__SassString__sassLength_FI = $;
22339
22309
  _._string0$_hashCache = null;
22340
22310
  },
22341
22311
  ModifiableCssStyleRule$0(selector, span, originalSelector) {
@@ -23698,13 +23668,15 @@ self.readline = _cli_pkg_requires.readline;
23698
23668
  t2 = B.JSString_methods.$mul(" ", 3);
23699
23669
  t3 = $.$get$alwaysValid();
23700
23670
  repl0 = new A.Repl(">> ", t2, t3, t1);
23701
- repl0.__Repl__adapter = new A.ReplAdapter(repl0);
23671
+ repl0.__Repl__adapter_A = new A.ReplAdapter(repl0);
23702
23672
  repl = repl0;
23703
23673
  t1 = options._options;
23704
23674
  logger = new A.TrackingLogger(A._asBool(t1.$index(0, "quiet")) ? $.$get$Logger_quiet() : new A.StderrLogger(options.get$color()));
23705
23675
  t2 = $.$get$context().absolute$7(".", null, null, null, null, null, null);
23706
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));
23707
- 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));
23708
23680
  $async$handler = 2;
23709
23681
  t1 = type$.Expression, t3 = type$.String, t4 = type$.VariableDeclaration;
23710
23682
  case 5:
@@ -23782,8 +23754,7 @@ self.readline = _cli_pkg_requires.readline;
23782
23754
  t5 = null;
23783
23755
  else {
23784
23756
  t7 = $.$get$_traces();
23785
- t6 = A._isBool(t5) || typeof t5 == "number" || t6;
23786
- if (t6)
23757
+ if (A._isBool(t5) || typeof t5 == "number" || t6)
23787
23758
  A.throwExpression(A.ArgumentError$value(t5, string$.Expand, null));
23788
23759
  t5 = t7._jsWeakMap.get(t5);
23789
23760
  }
@@ -25700,6 +25671,11 @@ self.readline = _cli_pkg_requires.readline;
25700
25671
  for (i = 0; i < len; ++i)
25701
25672
  receiver.push(array[i]);
25702
25673
  },
25674
+ clear$0(receiver) {
25675
+ if (!!receiver.fixed$length)
25676
+ A.throwExpression(A.UnsupportedError$("clear"));
25677
+ receiver.length = 0;
25678
+ },
25703
25679
  map$1$1(receiver, f, $T) {
25704
25680
  return new A.MappedListIterable(receiver, f, A._arrayInstanceType(receiver)._eval$1("@<1>")._bind$1($T)._eval$1("MappedListIterable<1,2>"));
25705
25681
  },
@@ -28949,11 +28925,11 @@ self.readline = _cli_pkg_requires.readline;
28949
28925
  var events, state, _this = this;
28950
28926
  if ((_this._state & 8) === 0) {
28951
28927
  events = _this._varData;
28952
- return events == null ? _this._varData = new A._StreamImplEvents() : events;
28928
+ return events == null ? _this._varData = new A._PendingEvents() : events;
28953
28929
  }
28954
28930
  state = _this._varData;
28955
28931
  events = state.varData;
28956
- return events == null ? state.varData = new A._StreamImplEvents() : events;
28932
+ return events == null ? state.varData = new A._PendingEvents() : events;
28957
28933
  },
28958
28934
  get$_subscription() {
28959
28935
  var varData = this._varData;
@@ -29299,8 +29275,7 @@ self.readline = _cli_pkg_requires.readline;
29299
29275
  var t1, _this = this,
29300
29276
  pending = _this._pending;
29301
29277
  if (pending == null)
29302
- pending = new A._StreamImplEvents();
29303
- _this._pending = pending;
29278
+ pending = _this._pending = new A._PendingEvents();
29304
29279
  pending.add$1(0, $event);
29305
29280
  t1 = _this._state;
29306
29281
  if ((t1 & 64) === 0) {
@@ -29478,6 +29453,16 @@ self.readline = _cli_pkg_requires.readline;
29478
29453
  }
29479
29454
  A.scheduleMicrotask(new A._PendingEvents_schedule_closure(_this, dispatch));
29480
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
+ }
29481
29466
  }
29482
29467
  };
29483
29468
  A._PendingEvents_schedule_closure.prototype = {
@@ -29497,18 +29482,6 @@ self.readline = _cli_pkg_requires.readline;
29497
29482
  },
29498
29483
  $signature: 0
29499
29484
  };
29500
- A._StreamImplEvents.prototype = {
29501
- add$1(_, $event) {
29502
- var _this = this,
29503
- lastEvent = _this.lastPendingEvent;
29504
- if (lastEvent == null)
29505
- _this.firstPendingEvent = _this.lastPendingEvent = $event;
29506
- else {
29507
- lastEvent.set$next($event);
29508
- _this.lastPendingEvent = $event;
29509
- }
29510
- }
29511
- };
29512
29485
  A._StreamIterator.prototype = {
29513
29486
  get$current(_) {
29514
29487
  if (this._async$_hasValue)
@@ -29678,12 +29651,6 @@ self.readline = _cli_pkg_requires.readline;
29678
29651
  }
29679
29652
  };
29680
29653
  A._ZoneFunction.prototype = {};
29681
- A._RunNullaryZoneFunction.prototype = {};
29682
- A._RunUnaryZoneFunction.prototype = {};
29683
- A._RunBinaryZoneFunction.prototype = {};
29684
- A._RegisterNullaryZoneFunction.prototype = {};
29685
- A._RegisterUnaryZoneFunction.prototype = {};
29686
- A._RegisterBinaryZoneFunction.prototype = {};
29687
29654
  A._ZoneSpecification.prototype = {$isZoneSpecification: 1};
29688
29655
  A._ZoneDelegate.prototype = {$isZoneDelegate: 1};
29689
29656
  A._Zone.prototype = {
@@ -29919,22 +29886,22 @@ self.readline = _cli_pkg_requires.readline;
29919
29886
  };
29920
29887
  A._RootZone.prototype = {
29921
29888
  get$_run() {
29922
- return B._RunNullaryZoneFunction__RootZone__rootRun;
29889
+ return B._ZoneFunction__RootZone__rootRun;
29923
29890
  },
29924
29891
  get$_runUnary() {
29925
- return B._RunUnaryZoneFunction__RootZone__rootRunUnary;
29892
+ return B._ZoneFunction__RootZone__rootRunUnary;
29926
29893
  },
29927
29894
  get$_runBinary() {
29928
- return B._RunBinaryZoneFunction__RootZone__rootRunBinary;
29895
+ return B._ZoneFunction__RootZone__rootRunBinary;
29929
29896
  },
29930
29897
  get$_registerCallback() {
29931
- return B._RegisterNullaryZoneFunction__RootZone__rootRegisterCallback;
29898
+ return B._ZoneFunction__RootZone__rootRegisterCallback;
29932
29899
  },
29933
29900
  get$_registerUnaryCallback() {
29934
- return B._RegisterUnaryZoneFunction_Bqo;
29901
+ return B._ZoneFunction_Eeh;
29935
29902
  },
29936
29903
  get$_registerBinaryCallback() {
29937
- return B._RegisterBinaryZoneFunction_kGu;
29904
+ return B._ZoneFunction_7G2;
29938
29905
  },
29939
29906
  get$_errorCallback() {
29940
29907
  return B._ZoneFunction__RootZone__rootErrorCallback;
@@ -32209,6 +32176,7 @@ self.readline = _cli_pkg_requires.readline;
32209
32176
  toString$0(_) {
32210
32177
  var minutes, minutesPadding, seconds, secondsPadding,
32211
32178
  microseconds = this._duration,
32179
+ sign = microseconds < 0 ? "-" : "",
32212
32180
  hours = B.JSInt_methods._tdivFast$1(microseconds, 3600000000);
32213
32181
  microseconds %= 3600000000;
32214
32182
  if (microseconds < 0)
@@ -32218,7 +32186,7 @@ self.readline = _cli_pkg_requires.readline;
32218
32186
  minutesPadding = minutes < 10 ? "0" : "";
32219
32187
  seconds = B.JSInt_methods._tdivFast$1(microseconds, 1000000);
32220
32188
  secondsPadding = seconds < 10 ? "0" : "";
32221
- 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");
32222
32190
  },
32223
32191
  $isComparable: 1
32224
32192
  };
@@ -32733,7 +32701,7 @@ self.readline = _cli_pkg_requires.readline;
32733
32701
  A._Uri.prototype = {
32734
32702
  get$_text() {
32735
32703
  var t1, t2, t3, t4, _this = this,
32736
- value = _this.___Uri__text;
32704
+ value = _this.___Uri__text_FI;
32737
32705
  if (value === $) {
32738
32706
  t1 = _this.scheme;
32739
32707
  t2 = t1.length !== 0 ? "" + t1 + ":" : "";
@@ -32758,31 +32726,31 @@ self.readline = _cli_pkg_requires.readline;
32758
32726
  t2 = _this._fragment;
32759
32727
  if (t2 != null)
32760
32728
  t1 = t1 + "#" + t2;
32761
- A._lateInitializeOnceCheck(value, "_text");
32762
- 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;
32763
32731
  }
32764
32732
  return value;
32765
32733
  },
32766
32734
  get$pathSegments() {
32767
32735
  var pathToSplit, result, _this = this,
32768
- value = _this.___Uri_pathSegments;
32736
+ value = _this.___Uri_pathSegments_FI;
32769
32737
  if (value === $) {
32770
32738
  pathToSplit = _this.path;
32771
32739
  if (pathToSplit.length !== 0 && B.JSString_methods._codeUnitAt$1(pathToSplit, 0) === 47)
32772
32740
  pathToSplit = B.JSString_methods.substring$1(pathToSplit, 1);
32773
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);
32774
- A._lateInitializeOnceCheck(_this.___Uri_pathSegments, "pathSegments");
32775
- value = _this.___Uri_pathSegments = result;
32742
+ _this.___Uri_pathSegments_FI !== $ && A.throwUnnamedLateFieldADI();
32743
+ value = _this.___Uri_pathSegments_FI = result;
32776
32744
  }
32777
32745
  return value;
32778
32746
  },
32779
32747
  get$hashCode(_) {
32780
32748
  var result, _this = this,
32781
- value = _this.___Uri_hashCode;
32749
+ value = _this.___Uri_hashCode_FI;
32782
32750
  if (value === $) {
32783
32751
  result = B.JSString_methods.get$hashCode(_this.get$_text());
32784
- A._lateInitializeOnceCheck(_this.___Uri_hashCode, "hashCode");
32785
- _this.___Uri_hashCode = result;
32752
+ _this.___Uri_hashCode_FI !== $ && A.throwUnnamedLateFieldADI();
32753
+ _this.___Uri_hashCode_FI = result;
32786
32754
  value = result;
32787
32755
  }
32788
32756
  return value;
@@ -33518,7 +33486,7 @@ self.readline = _cli_pkg_requires.readline;
33518
33486
  } else
33519
33487
  throw exception;
33520
33488
  }
33521
- B.JSArray_methods.set$length(t3, 0);
33489
+ B.JSArray_methods.clear$0(t3);
33522
33490
  break;
33523
33491
  }
33524
33492
  if (_this._parseSoloOption$0())
@@ -33763,11 +33731,11 @@ self.readline = _cli_pkg_requires.readline;
33763
33731
  A._Usage.prototype = {
33764
33732
  get$_columnWidths() {
33765
33733
  var result, _this = this,
33766
- value = _this.___Usage__columnWidths;
33734
+ value = _this.___Usage__columnWidths_FI;
33767
33735
  if (value === $) {
33768
33736
  result = _this._calculateColumnWidths$0();
33769
- A._lateInitializeOnceCheck(_this.___Usage__columnWidths, "_columnWidths");
33770
- _this.___Usage__columnWidths = result;
33737
+ _this.___Usage__columnWidths_FI !== $ && A.throwUnnamedLateFieldADI();
33738
+ _this.___Usage__columnWidths_FI = result;
33771
33739
  value = result;
33772
33740
  }
33773
33741
  return value;
@@ -34029,7 +33997,8 @@ self.readline = _cli_pkg_requires.readline;
34029
33997
  future = subscription == null ? null : subscription.cancel$0();
34030
33998
  if (t1.__js_helper$_length === 0)
34031
33999
  if (this._closed) {
34032
- t1 = A._lateReadCheck(this.__StreamGroup__controller, "_controller");
34000
+ t1 = this.__StreamGroup__controller_A;
34001
+ t1 === $ && A.throwUnnamedLateFieldNI();
34033
34002
  A.scheduleMicrotask(t1.get$close(t1));
34034
34003
  }
34035
34004
  return future;
@@ -34084,11 +34053,11 @@ self.readline = _cli_pkg_requires.readline;
34084
34053
  return futures.length === 0 ? null : A.Future_wait(futures, type$.void);
34085
34054
  },
34086
34055
  _listenToStream$1(stream) {
34087
- var _this = this,
34088
- _s11_ = "_controller",
34089
- t1 = A._lateReadCheck(_this.__StreamGroup__controller, _s11_),
34090
- 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());
34091
- 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)
34092
34061
  subscription.pause$0(0);
34093
34062
  return subscription;
34094
34063
  }
@@ -34256,7 +34225,7 @@ self.readline = _cli_pkg_requires.readline;
34256
34225
  call$0() {
34257
34226
  var $async$goto = 0,
34258
34227
  $async$completer = A._makeAsyncAwaitCompleter(type$.void),
34259
- $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;
34260
34229
  var $async$call$0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
34261
34230
  if ($async$errorCode === 1) {
34262
34231
  $async$currentError = $async$result;
@@ -36185,10 +36154,9 @@ self.readline = _cli_pkg_requires.readline;
36185
36154
  t4 = t4 || t3 >= 128;
36186
36155
  } else
36187
36156
  t4 = true;
36188
- if (!t4) {
36189
- t4 = t3 >= 48 && t3 <= 57;
36190
- t3 = t4 || t3 === 45;
36191
- } else
36157
+ if (!t4)
36158
+ t3 = t3 >= 48 && t3 <= 57 || t3 === 45;
36159
+ else
36192
36160
  t3 = true;
36193
36161
  } else
36194
36162
  t3 = false;
@@ -37242,11 +37210,11 @@ self.readline = _cli_pkg_requires.readline;
37242
37210
  A.MixinRule.prototype = {
37243
37211
  get$hasContent() {
37244
37212
  var result, _this = this,
37245
- value = _this.__MixinRule_hasContent;
37213
+ value = _this.__MixinRule_hasContent_FI;
37246
37214
  if (value === $) {
37247
37215
  result = J.$eq$(B.C__HasContentVisitor.visitChildren$1(_this.children), true);
37248
- A._lateInitializeOnceCheck(_this.__MixinRule_hasContent, "hasContent");
37249
- _this.__MixinRule_hasContent = result;
37216
+ _this.__MixinRule_hasContent_FI !== $ && A.throwUnnamedLateFieldADI();
37217
+ _this.__MixinRule_hasContent_FI = result;
37250
37218
  value = result;
37251
37219
  }
37252
37220
  return value;
@@ -37676,11 +37644,11 @@ self.readline = _cli_pkg_requires.readline;
37676
37644
  A.ComplexSelector.prototype = {
37677
37645
  get$specificity() {
37678
37646
  var result, _this = this,
37679
- value = _this.__ComplexSelector_specificity;
37647
+ value = _this.__ComplexSelector_specificity_FI;
37680
37648
  if (value === $) {
37681
37649
  result = B.JSArray_methods.fold$2(_this.components, 0, new A.ComplexSelector_specificity_closure());
37682
- A._lateInitializeOnceCheck(_this.__ComplexSelector_specificity, "specificity");
37683
- _this.__ComplexSelector_specificity = result;
37650
+ _this.__ComplexSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
37651
+ _this.__ComplexSelector_specificity_FI = result;
37684
37652
  value = result;
37685
37653
  }
37686
37654
  return value;
@@ -37803,11 +37771,11 @@ self.readline = _cli_pkg_requires.readline;
37803
37771
  A.CompoundSelector.prototype = {
37804
37772
  get$specificity() {
37805
37773
  var result, _this = this,
37806
- value = _this.__CompoundSelector_specificity;
37774
+ value = _this.__CompoundSelector_specificity_FI;
37807
37775
  if (value === $) {
37808
37776
  result = B.JSArray_methods.fold$2(_this.components, 0, new A.CompoundSelector_specificity_closure());
37809
- A._lateInitializeOnceCheck(_this.__CompoundSelector_specificity, "specificity");
37810
- _this.__CompoundSelector_specificity = result;
37777
+ _this.__CompoundSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
37778
+ _this.__CompoundSelector_specificity_FI = result;
37811
37779
  value = result;
37812
37780
  }
37813
37781
  return value;
@@ -38157,11 +38125,11 @@ self.readline = _cli_pkg_requires.readline;
38157
38125
  },
38158
38126
  get$specificity() {
38159
38127
  var result, _this = this,
38160
- value = _this.__PseudoSelector_specificity;
38128
+ value = _this.__PseudoSelector_specificity_FI;
38161
38129
  if (value === $) {
38162
38130
  result = new A.PseudoSelector_specificity_closure(_this).call$0();
38163
- A._lateInitializeOnceCheck(_this.__PseudoSelector_specificity, "specificity");
38164
- _this.__PseudoSelector_specificity = result;
38131
+ _this.__PseudoSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
38132
+ _this.__PseudoSelector_specificity_FI = result;
38165
38133
  value = result;
38166
38134
  }
38167
38135
  return value;
@@ -40645,11 +40613,11 @@ self.readline = _cli_pkg_requires.readline;
40645
40613
  A.ExecutableOptions.prototype = {
40646
40614
  get$interactive() {
40647
40615
  var result, _this = this,
40648
- value = _this.__ExecutableOptions_interactive;
40616
+ value = _this.__ExecutableOptions_interactive_FI;
40649
40617
  if (value === $) {
40650
40618
  result = new A.ExecutableOptions_interactive_closure(_this).call$0();
40651
- A._lateInitializeOnceCheck(_this.__ExecutableOptions_interactive, "interactive");
40652
- _this.__ExecutableOptions_interactive = result;
40619
+ _this.__ExecutableOptions_interactive_FI !== $ && A.throwUnnamedLateFieldADI();
40620
+ _this.__ExecutableOptions_interactive_FI = result;
40653
40621
  value = result;
40654
40622
  }
40655
40623
  return value;
@@ -40669,7 +40637,6 @@ self.readline = _cli_pkg_requires.readline;
40669
40637
  },
40670
40638
  _ensureSources$0() {
40671
40639
  var t1, stdin, t2, t3, $directories, t4, t5, colonArgs, positionalArgs, t6, t7, t8, message, target, source, destination, seen, sourceAndDestination, _this = this, _null = null,
40672
- _s32_ = "_sourceDirectoriesToDestinations",
40673
40640
  _s18_ = 'Duplicate source "';
40674
40641
  if (_this._sourcesToDestinations != null)
40675
40642
  return;
@@ -40748,8 +40715,8 @@ self.readline = _cli_pkg_requires.readline;
40748
40715
  _this._sourcesToDestinations = new A.UnmodifiableMapView(new A.PathMap(t1, type$.PathMap_nullable_String), type$.UnmodifiableMapView_of_nullable_String_and_nullable_String);
40749
40716
  }
40750
40717
  }
40751
- A._lateWriteOnceCheck(_this.__ExecutableOptions__sourceDirectoriesToDestinations, _s32_);
40752
- _this.__ExecutableOptions__sourceDirectoriesToDestinations = B.Map_empty5;
40718
+ _this.__ExecutableOptions__sourceDirectoriesToDestinations_F !== $ && A.throwUnnamedLateFieldAI();
40719
+ _this.__ExecutableOptions__sourceDirectoriesToDestinations_F = B.Map_empty5;
40753
40720
  return;
40754
40721
  }
40755
40722
  if (stdin)
@@ -40783,8 +40750,8 @@ self.readline = _cli_pkg_requires.readline;
40783
40750
  t1.$indexSet(0, source, destination);
40784
40751
  }
40785
40752
  _this._sourcesToDestinations = new A.UnmodifiableMapView(new A.PathMap(t1, t4), type$.UnmodifiableMapView_of_nullable_String_and_nullable_String);
40786
- A._lateWriteOnceCheck(_this.__ExecutableOptions__sourceDirectoriesToDestinations, _s32_);
40787
- _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);
40788
40755
  },
40789
40756
  _splitSourceAndDestination$1(argument) {
40790
40757
  var t1, i, t2, t3, nextColon;
@@ -40999,7 +40966,7 @@ self.readline = _cli_pkg_requires.readline;
40999
40966
  compile$body$_Watcher(_, source, destination, ifModified) {
41000
40967
  var $async$goto = 0,
41001
40968
  $async$completer = A._makeAsyncAwaitCompleter(type$.bool),
41002
- $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;
41003
40970
  var $async$compile$3$ifModified = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
41004
40971
  if ($async$errorCode === 1) {
41005
40972
  $async$currentError = $async$result;
@@ -41120,7 +41087,8 @@ self.readline = _cli_pkg_requires.readline;
41120
41087
  switch ($async$goto) {
41121
41088
  case 0:
41122
41089
  // Function start
41123
- t1 = A._lateReadCheck(watcher._group.__StreamGroup__controller, "_controller");
41090
+ t1 = watcher._group.__StreamGroup__controller_A;
41091
+ t1 === $ && A.throwUnnamedLateFieldNI();
41124
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));
41125
41093
  $async$handler = 3;
41126
41094
  t2 = $async$self._watch$_options._options;
@@ -41531,12 +41499,20 @@ self.readline = _cli_pkg_requires.readline;
41531
41499
  t3 = $.$get$context();
41532
41500
  if (B.JSString_methods.startsWith$1(A.ParsedPath_ParsedPath$parse(source, t3.style).get$basename(), "_"))
41533
41501
  return null;
41534
- 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();) {
41535
- 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);
41536
41512
  t6 = t5.key;
41537
41513
  if (t3._isWithinOrEquals$2(t6, source) !== B._PathRelation_within)
41538
41514
  continue;
41539
- 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);
41540
41516
  A._validateArgList("join", parts);
41541
41517
  destination = t3.joinAll$1(new A.WhereTypeIterable(parts, t4));
41542
41518
  if (t3._isWithinOrEquals$2(destination, source) !== B._PathRelation_equal)
@@ -43702,20 +43678,13 @@ self.readline = _cli_pkg_requires.readline;
43702
43678
  };
43703
43679
  A._merge_closure.prototype = {
43704
43680
  call$1($arguments) {
43705
- var t2, t3, t4,
43681
+ var t2,
43706
43682
  t1 = J.getInterceptor$asx($arguments),
43707
43683
  map1 = t1.$index($arguments, 0).assertMap$1("map1"),
43708
43684
  map2 = t1.$index($arguments, 1).assertMap$1("map2");
43709
43685
  t1 = type$.Value;
43710
- t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1);
43711
- for (t3 = map1._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
43712
- t4 = t3.get$current(t3);
43713
- t2.$indexSet(0, t4.key, t4.value);
43714
- }
43715
- for (t3 = map2._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
43716
- t4 = t3.get$current(t3);
43717
- t2.$indexSet(0, t4.key, t4.value);
43718
- }
43686
+ t2 = A.LinkedHashMap_LinkedHashMap$of(map1._map$_contents, t1, t1);
43687
+ t2.addAll$1(0, map2._map$_contents);
43719
43688
  return new A.SassMap(A.ConstantMap_ConstantMap$from(t2, t1, t1));
43720
43689
  },
43721
43690
  $signature: 36
@@ -43738,20 +43707,13 @@ self.readline = _cli_pkg_requires.readline;
43738
43707
  };
43739
43708
  A._merge__closure.prototype = {
43740
43709
  call$1(oldValue) {
43741
- var t1, t2, t3, t4,
43710
+ var t1, t2,
43742
43711
  nestedMap = oldValue.tryMap$0();
43743
43712
  if (nestedMap == null)
43744
43713
  return this.map2;
43745
43714
  t1 = type$.Value;
43746
- t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1);
43747
- for (t3 = nestedMap._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
43748
- t4 = t3.get$current(t3);
43749
- t2.$indexSet(0, t4.key, t4.value);
43750
- }
43751
- for (t3 = this.map2._map$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
43752
- t4 = t3.get$current(t3);
43753
- t2.$indexSet(0, t4.key, t4.value);
43754
- }
43715
+ t2 = A.LinkedHashMap_LinkedHashMap$of(nestedMap._map$_contents, t1, t1);
43716
+ t2.addAll$1(0, this.map2._map$_contents);
43755
43717
  return new A.SassMap(A.ConstantMap_ConstantMap$from(t2, t1, t1));
43756
43718
  },
43757
43719
  $signature: 270
@@ -45949,10 +45911,9 @@ self.readline = _cli_pkg_requires.readline;
45949
45911
  t2 = t2 || next >= 128;
45950
45912
  } else
45951
45913
  t2 = true;
45952
- if (!t2) {
45953
- t2 = next >= 48 && next <= 57;
45954
- t2 = t2 || next === 45;
45955
- } else
45914
+ if (!t2)
45915
+ t2 = next >= 48 && next <= 57 || next === 45;
45916
+ else
45956
45917
  t2 = true;
45957
45918
  if (t2)
45958
45919
  text._contents += A.Primitives_stringFromCharCode(t1.readChar$0());
@@ -49484,7 +49445,7 @@ self.readline = _cli_pkg_requires.readline;
49484
49445
  return new A.StringExpression(buffer.interpolation$1(t1.spanFrom$1(new A._SpanScannerState(t1, t2))), true);
49485
49446
  },
49486
49447
  identifierLike$0() {
49487
- var invocation, color, specialFunction, _this = this,
49448
+ var invocation, expression, color, specialFunction, _this = this,
49488
49449
  t1 = _this.scanner,
49489
49450
  start = new A._SpanScannerState(t1, t1._string_scanner$_position),
49490
49451
  identifier = _this.interpolatedIdentifier$0(),
@@ -49498,7 +49459,8 @@ self.readline = _cli_pkg_requires.readline;
49498
49459
  return new A.IfExpression(invocation, identifier.span.expand$1(0, invocation.span));
49499
49460
  } else if (plain === "not") {
49500
49461
  _this.whitespace$0();
49501
- 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)));
49502
49464
  }
49503
49465
  lower._value = plain.toLowerCase();
49504
49466
  if (t1.peekChar$0() !== 40) {
@@ -51281,20 +51243,16 @@ self.readline = _cli_pkg_requires.readline;
51281
51243
  },
51282
51244
  _replaceUpstream$2(newUpstream, newUpstreamImports) {
51283
51245
  var t3, oldUpstream, newUpstreamSet, _this = this,
51284
- t1 = type$.nullable_StylesheetNode,
51285
- t2 = A.LinkedHashSet_LinkedHashSet$_empty(t1);
51286
- for (t3 = _this._upstream, t3 = t3.get$values(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();)
51287
- t2.add$1(0, t3.get$current(t3));
51288
- for (t3 = _this._upstreamImports, t3 = t3.get$values(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();)
51289
- 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));
51290
51251
  t3 = type$.StylesheetNode;
51291
- oldUpstream = A.SetExtension_removeNull(t2, t3);
51292
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(t1);
51293
- for (t2 = newUpstream.get$values(newUpstream), t2 = t2.get$iterator(t2); t2.moveNext$0();)
51294
- t1.add$1(0, t2.get$current(t2));
51295
- for (t2 = newUpstreamImports.get$values(newUpstreamImports), t2 = t2.get$iterator(t2); t2.moveNext$0();)
51296
- t1.add$1(0, t2.get$current(t2));
51297
- 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);
51298
51256
  for (t1 = oldUpstream.difference$1(newUpstreamSet), t1 = t1.get$iterator(t1); t1.moveNext$0();)
51299
51257
  t1.get$current(t1)._downstream.remove$1(0, _this);
51300
51258
  for (t1 = newUpstreamSet.difference$1(oldUpstream), t1 = t1.get$iterator(t1); t1.moveNext$0();)
@@ -51303,15 +51261,8 @@ self.readline = _cli_pkg_requires.readline;
51303
51261
  _this._upstreamImports = newUpstreamImports;
51304
51262
  },
51305
51263
  _stylesheet_graph$_remove$0() {
51306
- var t2, t3, t4, _i, url, _this = this,
51307
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.nullable_StylesheetNode);
51308
- for (t2 = _this._upstream, t2 = t2.get$values(t2), t2 = t2.get$iterator(t2); t2.moveNext$0();)
51309
- t1.add$1(0, t2.get$current(t2));
51310
- for (t2 = _this._upstreamImports, t2 = t2.get$values(t2), t2 = t2.get$iterator(t2); t2.moveNext$0();)
51311
- t1.add$1(0, t2.get$current(t2));
51312
- t1 = A._LinkedHashSetIterator$(t1, t1._collection$_modifications);
51313
- t2 = A._instanceType(t1)._precomputed1;
51314
- 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();) {
51315
51266
  t3 = t1._collection$_current;
51316
51267
  if (t3 == null)
51317
51268
  t3 = t2._as(t3);
@@ -53187,12 +53138,12 @@ self.readline = _cli_pkg_requires.readline;
53187
53138
  A.SassString.prototype = {
53188
53139
  get$_sassLength() {
53189
53140
  var t1, result, _this = this,
53190
- value = _this.__SassString__sassLength;
53141
+ value = _this.__SassString__sassLength_FI;
53191
53142
  if (value === $) {
53192
53143
  t1 = new A.Runes(_this._string$_text);
53193
53144
  result = t1.get$length(t1);
53194
- A._lateInitializeOnceCheck(_this.__SassString__sassLength, "_sassLength");
53195
- _this.__SassString__sassLength = result;
53145
+ _this.__SassString__sassLength_FI !== $ && A.throwUnnamedLateFieldADI();
53146
+ _this.__SassString__sassLength_FI = result;
53196
53147
  value = result;
53197
53148
  }
53198
53149
  return value;
@@ -54861,7 +54812,7 @@ self.readline = _cli_pkg_requires.readline;
54861
54812
  visitMediaRule$body$_EvaluateVisitor(node) {
54862
54813
  var $async$goto = 0,
54863
54814
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value),
54864
- $async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2;
54815
+ $async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2, t3;
54865
54816
  var $async$visitMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
54866
54817
  if ($async$errorCode === 1)
54867
54818
  return A._asyncRethrow($async$result, $async$completer);
@@ -54887,19 +54838,16 @@ self.readline = _cli_pkg_requires.readline;
54887
54838
  if (t1)
54888
54839
  mergedSources = B.Set_empty0;
54889
54840
  else {
54890
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery);
54891
- for (t2 = $async$self._async_evaluate$_mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
54892
- t1.add$1(0, t2.get$current(t2));
54893
- t2 = $async$self._async_evaluate$_mediaQueries;
54841
+ t2 = $async$self._async_evaluate$_mediaQuerySources;
54894
54842
  t2.toString;
54895
- t2 = J.get$iterator$ax(t2);
54896
- for (; t2.moveNext$0();)
54897
- t1.add$1(0, t2.get$current(t2));
54898
- for (t2 = J.get$iterator$ax(queries); t2.moveNext$0();)
54899
- t1.add$1(0, t2.get$current(t2));
54900
- mergedSources = t1;
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;
54901
54849
  }
54902
- t1 = mergedQueries == null ? queries : mergedQueries;
54850
+ t1 = t1 ? queries : mergedQueries;
54903
54851
  $async$goto = 4;
54904
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);
54905
54853
  case 4:
@@ -55776,7 +55724,7 @@ self.readline = _cli_pkg_requires.readline;
55776
55724
  visitCalculationExpression$body$_EvaluateVisitor(node) {
55777
55725
  var $async$goto = 0,
55778
55726
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value),
55779
- $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;
55780
55728
  var $async$visitCalculationExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
55781
55729
  if ($async$errorCode === 1)
55782
55730
  return A._asyncRethrow($async$result, $async$completer);
@@ -56382,7 +56330,7 @@ self.readline = _cli_pkg_requires.readline;
56382
56330
  _runBuiltInCallable$body$_EvaluateVisitor($arguments, callable, nodeWithSpan) {
56383
56331
  var $async$goto = 0,
56384
56332
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value),
56385
- $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;
56386
56334
  var $async$_async_evaluate$_runBuiltInCallable$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
56387
56335
  if ($async$errorCode === 1) {
56388
56336
  $async$currentError = $async$result;
@@ -56995,7 +56943,7 @@ self.readline = _cli_pkg_requires.readline;
56995
56943
  visitCssMediaRule$body$_EvaluateVisitor(node) {
56996
56944
  var $async$goto = 0,
56997
56945
  $async$completer = A._makeAsyncAwaitCompleter(type$.void),
56998
- $async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3, _i;
56946
+ $async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3;
56999
56947
  var $async$visitCssMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
57000
56948
  if ($async$errorCode === 1)
57001
56949
  return A._asyncRethrow($async$result, $async$completer);
@@ -57015,19 +56963,16 @@ self.readline = _cli_pkg_requires.readline;
57015
56963
  if (t1)
57016
56964
  mergedSources = B.Set_empty0;
57017
56965
  else {
57018
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery);
57019
- for (t2 = $async$self._async_evaluate$_mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
57020
- t1.add$1(0, t2.get$current(t2));
57021
- t2 = $async$self._async_evaluate$_mediaQueries;
56966
+ t2 = $async$self._async_evaluate$_mediaQuerySources;
57022
56967
  t2.toString;
57023
- t2 = J.get$iterator$ax(t2);
57024
- for (; t2.moveNext$0();)
57025
- t1.add$1(0, t2.get$current(t2));
57026
- for (t2 = node.queries, t3 = t2.length, _i = 0; _i < t3; ++_i)
57027
- t1.add$1(0, t2[_i]);
57028
- mergedSources = t1;
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;
57029
56974
  }
57030
- t1 = mergedQueries == null ? node.queries : mergedQueries;
56975
+ t1 = t1 ? node.queries : mergedQueries;
57031
56976
  $async$goto = 3;
57032
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);
57033
56978
  case 3:
@@ -57639,7 +57584,7 @@ self.readline = _cli_pkg_requires.readline;
57639
57584
  _addExceptionSpanAsync$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
57640
57585
  var $async$goto = 0,
57641
57586
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
57642
- $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;
57643
57588
  var $async$_addExceptionSpanAsync$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
57644
57589
  if ($async$errorCode === 1) {
57645
57590
  $async$currentError = $async$result;
@@ -57708,7 +57653,7 @@ self.readline = _cli_pkg_requires.readline;
57708
57653
  _addErrorSpan$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
57709
57654
  var $async$goto = 0,
57710
57655
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
57711
- $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;
57712
57657
  var $async$_async_evaluate$_addErrorSpan$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
57713
57658
  if ($async$errorCode === 1) {
57714
57659
  $async$currentError = $async$result;
@@ -61806,7 +61751,7 @@ self.readline = _cli_pkg_requires.readline;
61806
61751
  return null;
61807
61752
  },
61808
61753
  visitMediaRule$1(node) {
61809
- var queries, mergedQueries, t1, mergedSources, t2, _this = this;
61754
+ var queries, mergedQueries, t1, mergedSources, t2, t3, _this = this;
61810
61755
  if (_this._declarationName != null)
61811
61756
  throw A.wrapException(_this._evaluate$_exception$2(string$.Media_, node.span));
61812
61757
  queries = _this._visitMediaQueries$1(node.query);
@@ -61817,19 +61762,16 @@ self.readline = _cli_pkg_requires.readline;
61817
61762
  if (t1)
61818
61763
  mergedSources = B.Set_empty0;
61819
61764
  else {
61820
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery);
61821
- for (t2 = _this._mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
61822
- t1.add$1(0, t2.get$current(t2));
61823
- t2 = _this._mediaQueries;
61765
+ t2 = _this._mediaQuerySources;
61824
61766
  t2.toString;
61825
- t2 = J.get$iterator$ax(t2);
61826
- for (; t2.moveNext$0();)
61827
- t1.add$1(0, t2.get$current(t2));
61828
- for (t2 = J.get$iterator$ax(queries); t2.moveNext$0();)
61829
- t1.add$1(0, t2.get$current(t2));
61830
- mergedSources = t1;
61831
- }
61832
- t1 = mergedQueries == null ? queries : mergedQueries;
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
+ }
61774
+ t1 = t1 ? queries : mergedQueries;
61833
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);
61834
61776
  return null;
61835
61777
  },
@@ -62542,7 +62484,7 @@ self.readline = _cli_pkg_requires.readline;
62542
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);
62543
62485
  },
62544
62486
  visitCssMediaRule$1(node) {
62545
- var mergedQueries, t1, mergedSources, t2, t3, _i, _this = this;
62487
+ var mergedQueries, t1, mergedSources, t2, t3, _this = this;
62546
62488
  if (_this._declarationName != null)
62547
62489
  throw A.wrapException(_this._evaluate$_exception$2(string$.Media_, node.span));
62548
62490
  mergedQueries = A.NullableExtension_andThen(_this._mediaQueries, new A._EvaluateVisitor_visitCssMediaRule_closure(_this, node));
@@ -62552,19 +62494,16 @@ self.readline = _cli_pkg_requires.readline;
62552
62494
  if (t1)
62553
62495
  mergedSources = B.Set_empty0;
62554
62496
  else {
62555
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery);
62556
- for (t2 = _this._mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
62557
- t1.add$1(0, t2.get$current(t2));
62558
- t2 = _this._mediaQueries;
62497
+ t2 = _this._mediaQuerySources;
62559
62498
  t2.toString;
62560
- t2 = J.get$iterator$ax(t2);
62561
- for (; t2.moveNext$0();)
62562
- t1.add$1(0, t2.get$current(t2));
62563
- for (t2 = node.queries, t3 = t2.length, _i = 0; _i < t3; ++_i)
62564
- t1.add$1(0, t2[_i]);
62565
- mergedSources = t1;
62566
- }
62567
- t1 = mergedQueries == null ? node.queries : mergedQueries;
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
+ }
62506
+ t1 = t1 ? node.queries : mergedQueries;
62568
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);
62569
62508
  },
62570
62509
  visitCssStyleRule$1(node) {
@@ -67450,11 +67389,11 @@ self.readline = _cli_pkg_requires.readline;
67450
67389
  A.LazyTrace.prototype = {
67451
67390
  get$_lazy_trace$_trace() {
67452
67391
  var result, _this = this,
67453
- value = _this.__LazyTrace__trace;
67392
+ value = _this.__LazyTrace__trace_FI;
67454
67393
  if (value === $) {
67455
67394
  result = _this._thunk.call$0();
67456
- A._lateInitializeOnceCheck(_this.__LazyTrace__trace, "_trace");
67457
- _this.__LazyTrace__trace = result;
67395
+ _this.__LazyTrace__trace_FI !== $ && A.throwUnnamedLateFieldADI();
67396
+ _this.__LazyTrace__trace_FI = result;
67458
67397
  value = result;
67459
67398
  }
67460
67399
  return value;
@@ -67837,11 +67776,10 @@ self.readline = _cli_pkg_requires.readline;
67837
67776
  return true;
67838
67777
  },
67839
67778
  error$3$length$position(_, message, $length, position) {
67840
- var t2, match, _this = this,
67779
+ var match, t2, _this = this,
67841
67780
  t1 = _this.string;
67842
67781
  A.validateErrorArgs(t1, null, position, $length);
67843
- t2 = position == null && $length == null;
67844
- match = t2 ? _this.get$lastMatch() : null;
67782
+ match = position == null && $length == null ? _this.get$lastMatch() : null;
67845
67783
  if (position == null)
67846
67784
  position = match == null ? _this._string_scanner$_position : match.start;
67847
67785
  if ($length == null)
@@ -68183,10 +68121,9 @@ self.readline = _cli_pkg_requires.readline;
68183
68121
  t4 = t4 || t3 >= 128;
68184
68122
  } else
68185
68123
  t4 = true;
68186
- if (!t4) {
68187
- t4 = t3 >= 48 && t3 <= 57;
68188
- t3 = t4 || t3 === 45;
68189
- } else
68124
+ if (!t4)
68125
+ t3 = t3 >= 48 && t3 <= 57 || t3 === 45;
68126
+ else
68190
68127
  t3 = true;
68191
68128
  } else
68192
68129
  t3 = false;
@@ -70907,7 +70844,7 @@ self.readline = _cli_pkg_requires.readline;
70907
70844
  visitMediaRule$body$_EvaluateVisitor0(node) {
70908
70845
  var $async$goto = 0,
70909
70846
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value_2),
70910
- $async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2;
70847
+ $async$returnValue, $async$self = this, queries, mergedQueries, t1, mergedSources, t2, t3;
70911
70848
  var $async$visitMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
70912
70849
  if ($async$errorCode === 1)
70913
70850
  return A._asyncRethrow($async$result, $async$completer);
@@ -70933,19 +70870,16 @@ self.readline = _cli_pkg_requires.readline;
70933
70870
  if (t1)
70934
70871
  mergedSources = B.Set_empty4;
70935
70872
  else {
70936
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery_2);
70937
- for (t2 = $async$self._async_evaluate0$_mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
70938
- t1.add$1(0, t2.get$current(t2));
70939
- t2 = $async$self._async_evaluate0$_mediaQueries;
70873
+ t2 = $async$self._async_evaluate0$_mediaQuerySources;
70940
70874
  t2.toString;
70941
- t2 = J.get$iterator$ax(t2);
70942
- for (; t2.moveNext$0();)
70943
- t1.add$1(0, t2.get$current(t2));
70944
- for (t2 = J.get$iterator$ax(queries); t2.moveNext$0();)
70945
- t1.add$1(0, t2.get$current(t2));
70946
- mergedSources = t1;
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;
70947
70881
  }
70948
- t1 = mergedQueries == null ? queries : mergedQueries;
70882
+ t1 = t1 ? queries : mergedQueries;
70949
70883
  $async$goto = 4;
70950
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);
70951
70885
  case 4:
@@ -71822,7 +71756,7 @@ self.readline = _cli_pkg_requires.readline;
71822
71756
  visitCalculationExpression$body$_EvaluateVisitor0(node) {
71823
71757
  var $async$goto = 0,
71824
71758
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value_2),
71825
- $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;
71826
71760
  var $async$visitCalculationExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
71827
71761
  if ($async$errorCode === 1)
71828
71762
  return A._asyncRethrow($async$result, $async$completer);
@@ -72428,7 +72362,7 @@ self.readline = _cli_pkg_requires.readline;
72428
72362
  _runBuiltInCallable$body$_EvaluateVisitor0($arguments, callable, nodeWithSpan) {
72429
72363
  var $async$goto = 0,
72430
72364
  $async$completer = A._makeAsyncAwaitCompleter(type$.Value_2),
72431
- $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;
72432
72366
  var $async$_async_evaluate0$_runBuiltInCallable$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
72433
72367
  if ($async$errorCode === 1) {
72434
72368
  $async$currentError = $async$result;
@@ -73041,7 +72975,7 @@ self.readline = _cli_pkg_requires.readline;
73041
72975
  visitCssMediaRule$body$_EvaluateVisitor0(node) {
73042
72976
  var $async$goto = 0,
73043
72977
  $async$completer = A._makeAsyncAwaitCompleter(type$.void),
73044
- $async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3, _i;
72978
+ $async$returnValue, $async$self = this, mergedQueries, t1, mergedSources, t2, t3;
73045
72979
  var $async$visitCssMediaRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
73046
72980
  if ($async$errorCode === 1)
73047
72981
  return A._asyncRethrow($async$result, $async$completer);
@@ -73061,19 +72995,16 @@ self.readline = _cli_pkg_requires.readline;
73061
72995
  if (t1)
73062
72996
  mergedSources = B.Set_empty4;
73063
72997
  else {
73064
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery_2);
73065
- for (t2 = $async$self._async_evaluate0$_mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
73066
- t1.add$1(0, t2.get$current(t2));
73067
- t2 = $async$self._async_evaluate0$_mediaQueries;
72998
+ t2 = $async$self._async_evaluate0$_mediaQuerySources;
73068
72999
  t2.toString;
73069
- t2 = J.get$iterator$ax(t2);
73070
- for (; t2.moveNext$0();)
73071
- t1.add$1(0, t2.get$current(t2));
73072
- for (t2 = node.queries, t3 = t2.length, _i = 0; _i < t3; ++_i)
73073
- t1.add$1(0, t2[_i]);
73074
- mergedSources = t1;
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;
73075
73006
  }
73076
- t1 = mergedQueries == null ? node.queries : mergedQueries;
73007
+ t1 = t1 ? node.queries : mergedQueries;
73077
73008
  $async$goto = 3;
73078
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);
73079
73010
  case 3:
@@ -73685,7 +73616,7 @@ self.readline = _cli_pkg_requires.readline;
73685
73616
  _addExceptionSpanAsync$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
73686
73617
  var $async$goto = 0,
73687
73618
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
73688
- $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;
73689
73620
  var $async$_async_evaluate0$_addExceptionSpanAsync$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
73690
73621
  if ($async$errorCode === 1) {
73691
73622
  $async$currentError = $async$result;
@@ -73754,7 +73685,7 @@ self.readline = _cli_pkg_requires.readline;
73754
73685
  _addErrorSpan$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
73755
73686
  var $async$goto = 0,
73756
73687
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
73757
- $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;
73758
73689
  var $async$_async_evaluate0$_addErrorSpan$1$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
73759
73690
  if ($async$errorCode === 1) {
73760
73691
  $async$currentError = $async$result;
@@ -79224,7 +79155,7 @@ self.readline = _cli_pkg_requires.readline;
79224
79155
  t4 = t3.item1;
79225
79156
  t3 = t3.item2;
79226
79157
  if (!this.asynch)
79227
- 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)));
79228
79159
  else
79229
79160
  t2.push(new A.AsyncBuiltInCallable0(t4, t3, new A._parseFunctions__closure3(t1, callback)));
79230
79161
  },
@@ -79328,11 +79259,11 @@ self.readline = _cli_pkg_requires.readline;
79328
79259
  A.ComplexSelector0.prototype = {
79329
79260
  get$specificity() {
79330
79261
  var result, _this = this,
79331
- value = _this._complex$__ComplexSelector_specificity;
79262
+ value = _this._complex$__ComplexSelector_specificity_FI;
79332
79263
  if (value === $) {
79333
79264
  result = B.JSArray_methods.fold$2(_this.components, 0, new A.ComplexSelector_specificity_closure0());
79334
- A._lateInitializeOnceCheck(_this._complex$__ComplexSelector_specificity, "specificity");
79335
- _this._complex$__ComplexSelector_specificity = result;
79265
+ _this._complex$__ComplexSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
79266
+ _this._complex$__ComplexSelector_specificity_FI = result;
79336
79267
  value = result;
79337
79268
  }
79338
79269
  return value;
@@ -79455,11 +79386,11 @@ self.readline = _cli_pkg_requires.readline;
79455
79386
  A.CompoundSelector0.prototype = {
79456
79387
  get$specificity() {
79457
79388
  var result, _this = this,
79458
- value = _this._compound$__CompoundSelector_specificity;
79389
+ value = _this._compound$__CompoundSelector_specificity_FI;
79459
79390
  if (value === $) {
79460
79391
  result = B.JSArray_methods.fold$2(_this.components, 0, new A.CompoundSelector_specificity_closure0());
79461
- A._lateInitializeOnceCheck(_this._compound$__CompoundSelector_specificity, "specificity");
79462
- _this._compound$__CompoundSelector_specificity = result;
79392
+ _this._compound$__CompoundSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
79393
+ _this._compound$__CompoundSelector_specificity_FI = result;
79463
79394
  value = result;
79464
79395
  }
79465
79396
  return value;
@@ -81245,7 +81176,7 @@ self.readline = _cli_pkg_requires.readline;
81245
81176
  return null;
81246
81177
  },
81247
81178
  visitMediaRule$1(node) {
81248
- var queries, mergedQueries, t1, mergedSources, t2, _this = this;
81179
+ var queries, mergedQueries, t1, mergedSources, t2, t3, _this = this;
81249
81180
  if (_this._evaluate0$_declarationName != null)
81250
81181
  throw A.wrapException(_this._evaluate0$_exception$2(string$.Media_, node.span));
81251
81182
  queries = _this._evaluate0$_visitMediaQueries$1(node.query);
@@ -81256,19 +81187,16 @@ self.readline = _cli_pkg_requires.readline;
81256
81187
  if (t1)
81257
81188
  mergedSources = B.Set_empty4;
81258
81189
  else {
81259
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery_2);
81260
- for (t2 = _this._evaluate0$_mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
81261
- t1.add$1(0, t2.get$current(t2));
81262
- t2 = _this._evaluate0$_mediaQueries;
81190
+ t2 = _this._evaluate0$_mediaQuerySources;
81263
81191
  t2.toString;
81264
- t2 = J.get$iterator$ax(t2);
81265
- for (; t2.moveNext$0();)
81266
- t1.add$1(0, t2.get$current(t2));
81267
- for (t2 = J.get$iterator$ax(queries); t2.moveNext$0();)
81268
- t1.add$1(0, t2.get$current(t2));
81269
- mergedSources = t1;
81270
- }
81271
- t1 = mergedQueries == null ? queries : mergedQueries;
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
+ }
81199
+ t1 = t1 ? queries : mergedQueries;
81272
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);
81273
81201
  return null;
81274
81202
  },
@@ -81981,7 +81909,7 @@ self.readline = _cli_pkg_requires.readline;
81981
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);
81982
81910
  },
81983
81911
  visitCssMediaRule$1(node) {
81984
- var mergedQueries, t1, mergedSources, t2, t3, _i, _this = this;
81912
+ var mergedQueries, t1, mergedSources, t2, t3, _this = this;
81985
81913
  if (_this._evaluate0$_declarationName != null)
81986
81914
  throw A.wrapException(_this._evaluate0$_exception$2(string$.Media_, node.span));
81987
81915
  mergedQueries = A.NullableExtension_andThen0(_this._evaluate0$_mediaQueries, new A._EvaluateVisitor_visitCssMediaRule_closure5(_this, node));
@@ -81991,19 +81919,16 @@ self.readline = _cli_pkg_requires.readline;
81991
81919
  if (t1)
81992
81920
  mergedSources = B.Set_empty4;
81993
81921
  else {
81994
- t1 = A.LinkedHashSet_LinkedHashSet$_empty(type$.CssMediaQuery_2);
81995
- for (t2 = _this._evaluate0$_mediaQuerySources, t2 = t2.get$iterator(t2); t2.moveNext$0();)
81996
- t1.add$1(0, t2.get$current(t2));
81997
- t2 = _this._evaluate0$_mediaQueries;
81922
+ t2 = _this._evaluate0$_mediaQuerySources;
81998
81923
  t2.toString;
81999
- t2 = J.get$iterator$ax(t2);
82000
- for (; t2.moveNext$0();)
82001
- t1.add$1(0, t2.get$current(t2));
82002
- for (t2 = node.queries, t3 = t2.length, _i = 0; _i < t3; ++_i)
82003
- t1.add$1(0, t2[_i]);
82004
- mergedSources = t1;
82005
- }
82006
- t1 = mergedQueries == null ? node.queries : mergedQueries;
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
+ }
81931
+ t1 = t1 ? node.queries : mergedQueries;
82007
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);
82008
81933
  },
82009
81934
  visitCssStyleRule$1(node) {
@@ -86508,11 +86433,11 @@ self.readline = _cli_pkg_requires.readline;
86508
86433
  J.set$context$x(J.get$options$x(context), context);
86509
86434
  fiber = J.get$fiber$x(t1);
86510
86435
  if (fiber != null)
86511
- _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)));
86512
86437
  else {
86513
86438
  t1 = _this.result;
86514
86439
  if (!_this.asynch)
86515
- 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)));
86516
86441
  else
86517
86442
  t1.push(new A.AsyncBuiltInCallable0(tuple.item1, tuple.item2, new A._parseFunctions__closure1(callback, context)));
86518
86443
  }
@@ -87439,20 +87364,13 @@ self.readline = _cli_pkg_requires.readline;
87439
87364
  };
87440
87365
  A._merge_closure1.prototype = {
87441
87366
  call$1($arguments) {
87442
- var t2, t3, t4,
87367
+ var t2,
87443
87368
  t1 = J.getInterceptor$asx($arguments),
87444
87369
  map1 = t1.$index($arguments, 0).assertMap$1("map1"),
87445
87370
  map2 = t1.$index($arguments, 1).assertMap$1("map2");
87446
87371
  t1 = type$.Value_2;
87447
- t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1);
87448
- for (t3 = map1._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
87449
- t4 = t3.get$current(t3);
87450
- t2.$indexSet(0, t4.key, t4.value);
87451
- }
87452
- for (t3 = map2._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
87453
- t4 = t3.get$current(t3);
87454
- t2.$indexSet(0, t4.key, t4.value);
87455
- }
87372
+ t2 = A.LinkedHashMap_LinkedHashMap$of(map1._map0$_contents, t1, t1);
87373
+ t2.addAll$1(0, map2._map0$_contents);
87456
87374
  return new A.SassMap0(A.ConstantMap_ConstantMap$from(t2, t1, t1));
87457
87375
  },
87458
87376
  $signature: 38
@@ -87475,20 +87393,13 @@ self.readline = _cli_pkg_requires.readline;
87475
87393
  };
87476
87394
  A._merge__closure0.prototype = {
87477
87395
  call$1(oldValue) {
87478
- var t1, t2, t3, t4,
87396
+ var t1, t2,
87479
87397
  nestedMap = oldValue.tryMap$0();
87480
87398
  if (nestedMap == null)
87481
87399
  return this.map2;
87482
87400
  t1 = type$.Value_2;
87483
- t2 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1);
87484
- for (t3 = nestedMap._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
87485
- t4 = t3.get$current(t3);
87486
- t2.$indexSet(0, t4.key, t4.value);
87487
- }
87488
- for (t3 = this.map2._map0$_contents, t3 = t3.get$entries(t3), t3 = t3.get$iterator(t3); t3.moveNext$0();) {
87489
- t4 = t3.get$current(t3);
87490
- t2.$indexSet(0, t4.key, t4.value);
87491
- }
87401
+ t2 = A.LinkedHashMap_LinkedHashMap$of(nestedMap._map0$_contents, t1, t1);
87402
+ t2.addAll$1(0, this.map2._map0$_contents);
87492
87403
  return new A.SassMap0(A.ConstantMap_ConstantMap$from(t2, t1, t1));
87493
87404
  },
87494
87405
  $signature: 461
@@ -87707,16 +87618,12 @@ self.readline = _cli_pkg_requires.readline;
87707
87618
  };
87708
87619
  A.legacyMapClass_closure4.prototype = {
87709
87620
  call$3(thisArg, index, value) {
87710
- var t3, t4, t5,
87621
+ var t3,
87711
87622
  t1 = J.getInterceptor$x(thisArg),
87712
87623
  t2 = t1.get$dartValue(thisArg)._map0$_contents,
87713
87624
  key = J.elementAt$1$ax(t2.get$keys(t2), index);
87714
87625
  t2 = type$.Value_2;
87715
- t3 = A.LinkedHashMap_LinkedHashMap$_empty(t2, t2);
87716
- for (t4 = t1.get$dartValue(thisArg)._map0$_contents, t4 = t4.get$entries(t4), t4 = t4.get$iterator(t4); t4.moveNext$0();) {
87717
- t5 = t4.get$current(t4);
87718
- t3.$indexSet(0, t5.key, t5.value);
87719
- }
87626
+ t3 = A.LinkedHashMap_LinkedHashMap$of(t1.get$dartValue(thisArg)._map0$_contents, t2, t2);
87720
87627
  t3.$indexSet(0, key, A.unwrapValue(value));
87721
87628
  t1.set$dartValue(thisArg, new A.SassMap0(A.ConstantMap_ConstantMap$from(t3, t2, t2)));
87722
87629
  },
@@ -88581,11 +88488,11 @@ self.readline = _cli_pkg_requires.readline;
88581
88488
  A.MixinRule0.prototype = {
88582
88489
  get$hasContent() {
88583
88490
  var result, _this = this,
88584
- value = _this._mixin_rule$__MixinRule_hasContent;
88491
+ value = _this._mixin_rule$__MixinRule_hasContent_FI;
88585
88492
  if (value === $) {
88586
88493
  result = J.$eq$(B.C__HasContentVisitor0.visitChildren$1(_this.children), true);
88587
- A._lateInitializeOnceCheck(_this._mixin_rule$__MixinRule_hasContent, "hasContent");
88588
- _this._mixin_rule$__MixinRule_hasContent = result;
88494
+ _this._mixin_rule$__MixinRule_hasContent_FI !== $ && A.throwUnnamedLateFieldADI();
88495
+ _this._mixin_rule$__MixinRule_hasContent_FI = result;
88589
88496
  value = result;
88590
88497
  }
88591
88498
  return value;
@@ -90113,10 +90020,9 @@ self.readline = _cli_pkg_requires.readline;
90113
90020
  t2 = t2 || next >= 128;
90114
90021
  } else
90115
90022
  t2 = true;
90116
- if (!t2) {
90117
- t2 = next >= 48 && next <= 57;
90118
- t2 = t2 || next === 45;
90119
- } else
90023
+ if (!t2)
90024
+ t2 = next >= 48 && next <= 57 || next === 45;
90025
+ else
90120
90026
  t2 = true;
90121
90027
  if (t2)
90122
90028
  text._contents += A.Primitives_stringFromCharCode(t1.readChar$0());
@@ -90675,11 +90581,11 @@ self.readline = _cli_pkg_requires.readline;
90675
90581
  },
90676
90582
  get$specificity() {
90677
90583
  var result, _this = this,
90678
- value = _this._pseudo$__PseudoSelector_specificity;
90584
+ value = _this._pseudo$__PseudoSelector_specificity_FI;
90679
90585
  if (value === $) {
90680
90586
  result = new A.PseudoSelector_specificity_closure0(_this).call$0();
90681
- A._lateInitializeOnceCheck(_this._pseudo$__PseudoSelector_specificity, "specificity");
90682
- _this._pseudo$__PseudoSelector_specificity = result;
90587
+ _this._pseudo$__PseudoSelector_specificity_FI !== $ && A.throwUnnamedLateFieldADI();
90588
+ _this._pseudo$__PseudoSelector_specificity_FI = result;
90683
90589
  value = result;
90684
90590
  }
90685
90591
  return value;
@@ -94296,12 +94202,12 @@ self.readline = _cli_pkg_requires.readline;
94296
94202
  A.SassString0.prototype = {
94297
94203
  get$_string0$_sassLength() {
94298
94204
  var t1, result, _this = this,
94299
- value = _this._string0$__SassString__sassLength;
94205
+ value = _this._string0$__SassString__sassLength_FI;
94300
94206
  if (value === $) {
94301
94207
  t1 = new A.Runes(_this._string0$_text);
94302
94208
  result = t1.get$length(t1);
94303
- A._lateInitializeOnceCheck(_this._string0$__SassString__sassLength, "_sassLength");
94304
- _this._string0$__SassString__sassLength = result;
94209
+ _this._string0$__SassString__sassLength_FI !== $ && A.throwUnnamedLateFieldADI();
94210
+ _this._string0$__SassString__sassLength_FI = result;
94305
94211
  value = result;
94306
94212
  }
94307
94213
  return value;
@@ -96545,7 +96451,7 @@ self.readline = _cli_pkg_requires.readline;
96545
96451
  return new A.StringExpression0(buffer.interpolation$1(t1.spanFrom$1(new A._SpanScannerState(t1, t2))), true);
96546
96452
  },
96547
96453
  identifierLike$0() {
96548
- var invocation, color, specialFunction, _this = this,
96454
+ var invocation, expression, color, specialFunction, _this = this,
96549
96455
  t1 = _this.scanner,
96550
96456
  start = new A._SpanScannerState(t1, t1._string_scanner$_position),
96551
96457
  identifier = _this.interpolatedIdentifier$0(),
@@ -96559,7 +96465,8 @@ self.readline = _cli_pkg_requires.readline;
96559
96465
  return new A.IfExpression0(invocation, identifier.span.expand$1(0, invocation.span));
96560
96466
  } else if (plain === "not") {
96561
96467
  _this.whitespace$0();
96562
- 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)));
96563
96470
  }
96564
96471
  lower._value = plain.toLowerCase();
96565
96472
  if (t1.peekChar$0() !== 40) {
@@ -99594,7 +99501,7 @@ self.readline = _cli_pkg_requires.readline;
99594
99501
  _inherit = hunkHelpers.inherit,
99595
99502
  _inheritMany = hunkHelpers.inheritMany;
99596
99503
  _inherit(A.Object, null);
99597
- _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]);
99598
99505
  _inheritMany(J.Interceptor, [J.JSBool, J.JSNull, J.JavaScriptObject, J.JSArray, J.JSNumber, J.JSString, A.NativeTypedData]);
99599
99506
  _inherit(J.LegacyJavaScriptObject, J.JavaScriptObject);
99600
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]);
@@ -99644,7 +99551,6 @@ self.readline = _cli_pkg_requires.readline;
99644
99551
  _inheritMany(A._BufferingStreamSubscription, [A._ControllerSubscription, A._ForwardingStreamSubscription]);
99645
99552
  _inherit(A._StreamControllerAddStreamState, A._AddStreamState);
99646
99553
  _inheritMany(A._DelayedEvent, [A._DelayedData, A._DelayedError]);
99647
- _inherit(A._StreamImplEvents, A._PendingEvents);
99648
99554
  _inherit(A._ExpandStream, A._ForwardingStream);
99649
99555
  _inheritMany(A._Zone, [A._CustomZone, A._RootZone]);
99650
99556
  _inherit(A._IdentityHashMap, A._HashMap);
@@ -99788,7 +99694,7 @@ self.readline = _cli_pkg_requires.readline;
99788
99694
  arrayRti: Symbol("$ti")
99789
99695
  };
99790
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":[]}}'));
99791
- 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}'));
99792
99698
  var string$ = {
99793
99699
  x0a_BUG_: "\n\nBUG: This should include a source span!",
99794
99700
  x0a_More: "\n\nMore info and automated migrator: https://sass-lang.com/d/slash-div",
@@ -99836,7 +99742,7 @@ self.readline = _cli_pkg_requires.readline;
99836
99742
  x2c_whicw: ', which will likely produce invalid CSS.\nAlways quote color names when using them as strings or map keys (for example, "',
99837
99743
  x2e_Rela: ".\nRelative canonical URLs are deprecated and will eventually be disallowed.\n",
99838
99744
  x3d_____: "===== asynchronous gap ===========================\n",
99839
- 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.",
99840
99746
  x40conte: "@content is only allowed within mixin declarations.",
99841
99747
  x40elsei: "@elseif is deprecated and will not be supported in future Sass versions.\n\nRecommendation: @else if",
99842
99748
  x40exten: "@extend may only be used within style rules.",
@@ -99927,7 +99833,7 @@ self.readline = _cli_pkg_requires.readline;
99927
99833
  Variabs: "Variable keyword arguments must be a map (was ",
99928
99834
  You_ma: "You may not @extend selectors across media queries.",
99929
99835
  You_pr: "You probably don't mean to use the color value ",
99930
- 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",
99931
99837
  addExt_: "addExtension() can't be called for a const ExtensionStore.",
99932
99838
  addExts: "addExtensions() can't be called for a const ExtensionStore.",
99933
99839
  addSel: "addSelector() can't be called for a const ExtensionStore.",
@@ -100144,8 +100050,8 @@ self.readline = _cli_pkg_requires.readline;
100144
100050
  JSArray_Tuple2_Expression_Expression_2: findType("JSArray<Tuple2<Expression0,Expression0>>"),
100145
100051
  JSArray_Tuple2_String_AstNode: findType("JSArray<Tuple2<String,AstNode>>"),
100146
100052
  JSArray_Tuple2_String_AstNode_2: findType("JSArray<Tuple2<String,AstNode0>>"),
100147
- JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("JSArray<Tuple2<ArgumentDeclaration,Value(List<Value>)>>"),
100148
- 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>)>>"),
100149
100055
  JSArray_Tuple4_of_Uri_and_bool_and_Importer_and_nullable_Uri: findType("JSArray<Tuple4<Uri,bool,Importer,Uri?>>"),
100150
100056
  JSArray_Uri: findType("JSArray<Uri>"),
100151
100057
  JSArray_UseRule: findType("JSArray<UseRule>"),
@@ -100319,8 +100225,8 @@ self.readline = _cli_pkg_requires.readline;
100319
100225
  Tuple2_Uri_bool: findType("Tuple2<Uri,bool>"),
100320
100226
  Tuple2_of_ArgumentDeclaration_and_FutureOr_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration,Value/(List<Value>)>"),
100321
100227
  Tuple2_of_ArgumentDeclaration_and_FutureOr_Value_Function_List_Value_2: findType("Tuple2<ArgumentDeclaration0,Value0/(List<Value0>)>"),
100322
- Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration,Value(List<Value>)>"),
100323
- 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>)>"),
100324
100230
  Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList: findType("Tuple2<ExtensionStore,Map<CssValue<SelectorList>,ModifiableCssValue<SelectorList>>>"),
100325
100231
  Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList_2: findType("Tuple2<ExtensionStore0,Map<CssValue0<SelectorList0>,ModifiableCssValue0<SelectorList0>>>"),
100326
100232
  Tuple2_of_List_Expression_and_Map_String_Expression: findType("Tuple2<List<Expression>,Map<String,Expression>>"),
@@ -100897,12 +100803,6 @@ self.readline = _cli_pkg_requires.readline;
100897
100803
  B._PathRelation_equal = new A._PathRelation("equal");
100898
100804
  B._PathRelation_inconclusive = new A._PathRelation("inconclusive");
100899
100805
  B._PathRelation_within = new A._PathRelation("within");
100900
- B._RegisterBinaryZoneFunction_kGu = new A._RegisterBinaryZoneFunction(B.C__RootZone, A.async___rootRegisterBinaryCallback$closure());
100901
- B._RegisterNullaryZoneFunction__RootZone__rootRegisterCallback = new A._RegisterNullaryZoneFunction(B.C__RootZone, A.async___rootRegisterCallback$closure());
100902
- B._RegisterUnaryZoneFunction_Bqo = new A._RegisterUnaryZoneFunction(B.C__RootZone, A.async___rootRegisterUnaryCallback$closure());
100903
- B._RunBinaryZoneFunction__RootZone__rootRunBinary = new A._RunBinaryZoneFunction(B.C__RootZone, A.async___rootRunBinary$closure());
100904
- B._RunNullaryZoneFunction__RootZone__rootRun = new A._RunNullaryZoneFunction(B.C__RootZone, A.async___rootRun$closure());
100905
- B._RunUnaryZoneFunction__RootZone__rootRunUnary = new A._RunUnaryZoneFunction(B.C__RootZone, A.async___rootRunUnary$closure());
100906
100806
  B._SingletonCssMediaQueryMergeResult_empty = new A._SingletonCssMediaQueryMergeResult("empty");
100907
100807
  B._SingletonCssMediaQueryMergeResult_empty0 = new A._SingletonCssMediaQueryMergeResult0("empty");
100908
100808
  B._SingletonCssMediaQueryMergeResult_unrepresentable = new A._SingletonCssMediaQueryMergeResult("unrepresentable");
@@ -100913,11 +100813,17 @@ self.readline = _cli_pkg_requires.readline;
100913
100813
  B._StreamGroupState_paused = new A._StreamGroupState("paused");
100914
100814
  B._StringStackTrace_3uE = new A._StringStackTrace("");
100915
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());
100916
100818
  B._ZoneFunction_NMc = new A._ZoneFunction(B.C__RootZone, A.async___rootHandleUncaughtError$closure());
100917
100819
  B._ZoneFunction__RootZone__rootCreateTimer = new A._ZoneFunction(B.C__RootZone, A.async___rootCreateTimer$closure());
100918
100820
  B._ZoneFunction__RootZone__rootErrorCallback = new A._ZoneFunction(B.C__RootZone, A.async___rootErrorCallback$closure());
100919
100821
  B._ZoneFunction__RootZone__rootFork = new A._ZoneFunction(B.C__RootZone, A.async___rootFork$closure());
100920
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());
100921
100827
  B._ZoneFunction__RootZone__rootScheduleMicrotask = new A._ZoneFunction(B.C__RootZone, A.async___rootScheduleMicrotask$closure());
100922
100828
  B._ZoneSpecification_ALf = new A._ZoneSpecification(null, null, null, null, null, null, null, null, null, null, null, null, null);
100923
100829
  })();