sass 1.49.7 → 1.49.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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, no-legacy-javascript, new-holders, csp), the Dart to JavaScript compiler version: 2.15.1.
131
+ // Generated by dart2js (NullSafetyMode.sound, trust primitives, omit checks, lax runtime type, no-legacy-javascript, csp), the Dart to JavaScript compiler version: 2.16.2.
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]
@@ -277,10 +277,11 @@ self.readline = _cli_pkg_requires.readline;
277
277
  A.throwLateFieldADI(name);
278
278
  holder[name] = value;
279
279
  }
280
+ var finalValue = holder[name];
280
281
  holder[getterName] = function() {
281
- return this[name];
282
+ return finalValue;
282
283
  };
283
- return holder[name];
284
+ return finalValue;
284
285
  };
285
286
  }
286
287
  function makeConstList(list) {
@@ -931,10 +932,16 @@ self.readline = _cli_pkg_requires.readline;
931
932
  return result;
932
933
  },
933
934
  Primitives_objectHashCode(object) {
934
- var hash = object.$identityHash;
935
+ var t1, hash,
936
+ property = $.Primitives__identityHashCodeProperty;
937
+ if (property == null) {
938
+ t1 = Symbol("identityHashCode");
939
+ property = $.Primitives__identityHashCodeProperty = t1;
940
+ }
941
+ hash = object[property];
935
942
  if (hash == null) {
936
943
  hash = Math.random() * 0x3fffffff | 0;
937
- object.$identityHash = hash;
944
+ object[property] = hash;
938
945
  }
939
946
  return hash;
940
947
  },
@@ -981,10 +988,11 @@ self.readline = _cli_pkg_requires.readline;
981
988
  return A.Primitives__objectTypeNameNewRti(object);
982
989
  },
983
990
  Primitives__objectTypeNameNewRti(object) {
984
- var dispatchName, t1, $constructor, constructorName;
991
+ var interceptor, dispatchName, t1, $constructor, constructorName;
985
992
  if (object instanceof A.Object)
986
993
  return A._rtiToString(A.instanceType(object), null);
987
- if (J.getInterceptor$(object) === B.Interceptor_methods || type$.UnknownJavaScriptObject._is(object)) {
994
+ interceptor = J.getInterceptor$(object);
995
+ if (interceptor === B.Interceptor_methods || interceptor === B.JavaScriptObject_methods || type$.UnknownJavaScriptObject._is(object)) {
988
996
  dispatchName = B.C_JS_CONST(object);
989
997
  t1 = dispatchName !== "Object" && dispatchName !== "";
990
998
  if (t1)
@@ -5283,6 +5291,12 @@ self.readline = _cli_pkg_requires.readline;
5283
5291
  return object.toString$0(0);
5284
5292
  return "Instance of '" + A.Primitives_objectTypeName(object) + "'";
5285
5293
  },
5294
+ Error__throw(error, stackTrace) {
5295
+ error = A.wrapException(error);
5296
+ error.stack = stackTrace.toString$0(0);
5297
+ throw error;
5298
+ throw A.wrapException("unreachable");
5299
+ },
5286
5300
  List_List$filled($length, fill, growable, $E) {
5287
5301
  var i,
5288
5302
  result = growable ? J.JSArray_JSArray$growable($length, $E) : J.JSArray_JSArray$fixed($length, $E);
@@ -5769,11 +5783,11 @@ self.readline = _cli_pkg_requires.readline;
5769
5783
  return result;
5770
5784
  },
5771
5785
  Uri_parseIPv6Address(host, start, end) {
5772
- var parts, i, partStart, wildcardSeen, seenDot, char, atEnd, t1, last, bytes, wildCardLength, index, value, j,
5786
+ var parts, i, partStart, wildcardSeen, seenDot, char, atEnd, t1, last, bytes, wildCardLength, index, value, j, _null = null,
5773
5787
  error = new A.Uri_parseIPv6Address_error(host),
5774
5788
  parseHex = new A.Uri_parseIPv6Address_parseHex(error, host);
5775
5789
  if (host.length < 2)
5776
- error.call$1("address is too short");
5790
+ error.call$2("address is too short", _null);
5777
5791
  parts = A._setArrayType([], type$.JSArray_int);
5778
5792
  for (i = start, partStart = i, wildcardSeen = false, seenDot = false; i < end; ++i) {
5779
5793
  char = B.JSString_methods.codeUnitAt$1(host, i);
@@ -5796,7 +5810,7 @@ self.readline = _cli_pkg_requires.readline;
5796
5810
  seenDot = true;
5797
5811
  }
5798
5812
  if (parts.length === 0)
5799
- error.call$1("too few parts");
5813
+ error.call$2("too few parts", _null);
5800
5814
  atEnd = partStart === end;
5801
5815
  t1 = B.JSArray_methods.get$last(parts);
5802
5816
  if (atEnd && t1 !== -1)
@@ -5811,9 +5825,9 @@ self.readline = _cli_pkg_requires.readline;
5811
5825
  }
5812
5826
  if (wildcardSeen) {
5813
5827
  if (parts.length > 7)
5814
- error.call$1("an address with a wildcard must have less than 7 parts");
5828
+ error.call$2("an address with a wildcard must have less than 7 parts", _null);
5815
5829
  } else if (parts.length !== 8)
5816
- error.call$1("an address without a wildcard must contain exactly 8 parts");
5830
+ error.call$2("an address without a wildcard must contain exactly 8 parts", _null);
5817
5831
  bytes = new Uint8Array(16);
5818
5832
  for (t1 = parts.length, wildCardLength = 9 - t1, i = 0, index = 0; i < t1; ++i) {
5819
5833
  value = parts[i];
@@ -8865,10 +8879,12 @@ self.readline = _cli_pkg_requires.readline;
8865
8879
  PlainCssCallable: function PlainCssCallable(t0) {
8866
8880
  this.name = t0;
8867
8881
  },
8868
- UserDefinedCallable: function UserDefinedCallable(t0, t1, t2) {
8869
- this.declaration = t0;
8870
- this.environment = t1;
8871
- this.$ti = t2;
8882
+ UserDefinedCallable: function UserDefinedCallable(t0, t1, t2, t3) {
8883
+ var _ = this;
8884
+ _.declaration = t0;
8885
+ _.environment = t1;
8886
+ _.inDependency = t2;
8887
+ _.$ti = t3;
8872
8888
  },
8873
8889
  _compileStylesheet(stylesheet, logger, importCache, nodeImporter, importer, functions, style, useSpaces, indentWidth, lineFeed, quietDeps, sourceMap, charset) {
8874
8890
  var serializeResult = A.serialize(A._EvaluateVisitor$(functions, importCache, logger, nodeImporter, quietDeps, sourceMap).run$2(0, importer, stylesheet).stylesheet, charset, indentWidth, false, lineFeed, sourceMap, style, true),
@@ -10475,7 +10491,7 @@ self.readline = _cli_pkg_requires.readline;
10475
10491
  red = t1.$index($arguments, 0).assertNumber$1("red");
10476
10492
  green = t1.$index($arguments, 1).assertNumber$1("green");
10477
10493
  blue = t1.$index($arguments, 2).assertNumber$1("blue");
10478
- return A.SassColor$rgb(A.fuzzyRound(A._percentageOrUnitless(red, 255, "red")), A.fuzzyRound(A._percentageOrUnitless(green, 255, "green")), A.fuzzyRound(A._percentageOrUnitless(blue, 255, "blue")), A.NullableExtension_andThen(alpha, new A._rgb_closure()), null);
10494
+ return A.SassColor$rgbInternal(A.fuzzyRound(A._percentageOrUnitless(red, 255, "red")), A.fuzzyRound(A._percentageOrUnitless(green, 255, "green")), A.fuzzyRound(A._percentageOrUnitless(blue, 255, "blue")), A.NullableExtension_andThen(alpha, new A._rgb_closure()), B._ColorFormatEnum_rgbFunction);
10479
10495
  },
10480
10496
  _rgbTwoArg($name, $arguments) {
10481
10497
  var first, color,
@@ -10519,7 +10535,7 @@ self.readline = _cli_pkg_requires.readline;
10519
10535
  A._checkAngle(hue, "hue");
10520
10536
  A._checkPercent(saturation, _s10_);
10521
10537
  A._checkPercent(lightness, _s9_);
10522
- return A.SassColor$hsl(hue._number$_value, B.JSNumber_methods.clamp$2(saturation._number$_value, 0, 100), B.JSNumber_methods.clamp$2(lightness._number$_value, 0, 100), A.NullableExtension_andThen(alpha, new A._hsl_closure()));
10538
+ return A.SassColor$hslInternal(hue._number$_value, B.JSNumber_methods.clamp$2(saturation._number$_value, 0, 100), B.JSNumber_methods.clamp$2(lightness._number$_value, 0, 100), A.NullableExtension_andThen(alpha, new A._hsl_closure()), B._ColorFormatEnum_hslFunction);
10523
10539
  },
10524
10540
  _checkAngle(angle, $name) {
10525
10541
  var t1, t2, t3, actualUnit,
@@ -10662,7 +10678,7 @@ self.readline = _cli_pkg_requires.readline;
10662
10678
  t3 = normalizedWeight * alphaDistance,
10663
10679
  weight1 = ((t3 === -1 ? normalizedWeight : (normalizedWeight + alphaDistance) / (1 + t3)) + 1) / 2,
10664
10680
  weight2 = 1 - weight1;
10665
- return A.SassColor$rgb(A.fuzzyRound(color1.get$red(color1) * weight1 + color2.get$red(color2) * weight2), A.fuzzyRound(color1.get$green(color1) * weight1 + color2.get$green(color2) * weight2), A.fuzzyRound(color1.get$blue(color1) * weight1 + color2.get$blue(color2) * weight2), t1 * weightScale + t2 * (1 - weightScale), null);
10681
+ return A.SassColor$rgb(A.fuzzyRound(color1.get$red(color1) * weight1 + color2.get$red(color2) * weight2), A.fuzzyRound(color1.get$green(color1) * weight1 + color2.get$green(color2) * weight2), A.fuzzyRound(color1.get$blue(color1) * weight1 + color2.get$blue(color2) * weight2), t1 * weightScale + t2 * (1 - weightScale));
10666
10682
  },
10667
10683
  _opacify($arguments) {
10668
10684
  var t1 = J.getInterceptor$asx($arguments),
@@ -12512,8 +12528,10 @@ self.readline = _cli_pkg_requires.readline;
12512
12528
  A.SassCalculation__verifyLength(args, 3);
12513
12529
  return new A.SassCalculation("clamp", args);
12514
12530
  },
12515
- SassCalculation_operateInternal(operator, left, right, inMinMax) {
12531
+ SassCalculation_operateInternal(operator, left, right, inMinMax, simplify) {
12516
12532
  var t1, t2;
12533
+ if (!simplify)
12534
+ return new A.CalculationOperation(operator, left, right);
12517
12535
  left = A.SassCalculation__simplify(left);
12518
12536
  right = A.SassCalculation__simplify(right);
12519
12537
  t1 = operator === B.CalculationOperator_Iem;
@@ -12611,19 +12629,26 @@ self.readline = _cli_pkg_requires.readline;
12611
12629
  CalculationInterpolation: function CalculationInterpolation(t0) {
12612
12630
  this.value = t0;
12613
12631
  },
12614
- SassColor$rgb(_red, _green, _blue, alpha, originalSpan) {
12615
- var t1 = new A.SassColor(_red, _green, _blue, null, null, null, alpha == null ? 1 : A.fuzzyAssertRange(alpha, 0, 1, "alpha"), originalSpan);
12632
+ SassColor$rgb(red, green, blue, alpha) {
12633
+ var _null = null,
12634
+ t1 = new A.SassColor(red, green, blue, _null, _null, _null, alpha == null ? 1 : A.fuzzyAssertRange(alpha, 0, 1, "alpha"), _null);
12616
12635
  A.RangeError_checkValueInInterval(t1.get$red(t1), 0, 255, "red");
12617
12636
  A.RangeError_checkValueInInterval(t1.get$green(t1), 0, 255, "green");
12618
12637
  A.RangeError_checkValueInInterval(t1.get$blue(t1), 0, 255, "blue");
12619
12638
  return t1;
12620
12639
  },
12621
- SassColor$hsl(hue, saturation, lightness, alpha) {
12622
- var _null = null,
12623
- t1 = B.JSNumber_methods.$mod(hue, 360),
12640
+ SassColor$rgbInternal(_red, _green, _blue, alpha, format) {
12641
+ var t1 = new A.SassColor(_red, _green, _blue, null, null, null, alpha == null ? 1 : A.fuzzyAssertRange(alpha, 0, 1, "alpha"), format);
12642
+ A.RangeError_checkValueInInterval(t1.get$red(t1), 0, 255, "red");
12643
+ A.RangeError_checkValueInInterval(t1.get$green(t1), 0, 255, "green");
12644
+ A.RangeError_checkValueInInterval(t1.get$blue(t1), 0, 255, "blue");
12645
+ return t1;
12646
+ },
12647
+ SassColor$hslInternal(hue, saturation, lightness, alpha, format) {
12648
+ var t1 = B.JSNumber_methods.$mod(hue, 360),
12624
12649
  t2 = A.fuzzyAssertRange(saturation, 0, 100, "saturation"),
12625
12650
  t3 = A.fuzzyAssertRange(lightness, 0, 100, "lightness");
12626
- return new A.SassColor(_null, _null, _null, t1, t2, t3, alpha == null ? 1 : A.fuzzyAssertRange(alpha, 0, 1, "alpha"), _null);
12651
+ return new A.SassColor(null, null, null, t1, t2, t3, alpha == null ? 1 : A.fuzzyAssertRange(alpha, 0, 1, "alpha"), format);
12627
12652
  },
12628
12653
  SassColor_SassColor$hwb(hue, whiteness, blackness, alpha) {
12629
12654
  var t2, t1 = {},
@@ -12637,7 +12662,7 @@ self.readline = _cli_pkg_requires.readline;
12637
12662
  } else
12638
12663
  t2 = scaledWhiteness;
12639
12664
  t2 = new A.SassColor_SassColor$hwb_toRgb(t1, 1 - t2 - scaledBlackness);
12640
- return A.SassColor$rgb(t2.call$1(scaledHue + 0.3333333333333333), t2.call$1(scaledHue), t2.call$1(scaledHue - 0.3333333333333333), alpha, null);
12665
+ return A.SassColor$rgb(t2.call$1(scaledHue + 0.3333333333333333), t2.call$1(scaledHue), t2.call$1(scaledHue - 0.3333333333333333), alpha);
12641
12666
  },
12642
12667
  SassColor__hueToRgb(m1, m2, hue) {
12643
12668
  if (hue < 0)
@@ -12662,12 +12687,18 @@ self.readline = _cli_pkg_requires.readline;
12662
12687
  _._saturation = t4;
12663
12688
  _._lightness = t5;
12664
12689
  _._alpha = t6;
12665
- _.originalSpan = t7;
12690
+ _.format = t7;
12666
12691
  },
12667
12692
  SassColor_SassColor$hwb_toRgb: function SassColor_SassColor$hwb_toRgb(t0, t1) {
12668
12693
  this._box_0 = t0;
12669
12694
  this.factor = t1;
12670
12695
  },
12696
+ _ColorFormatEnum: function _ColorFormatEnum(t0) {
12697
+ this._color$_name = t0;
12698
+ },
12699
+ SpanColorFormat: function SpanColorFormat(t0) {
12700
+ this._color$_span = t0;
12701
+ },
12671
12702
  SassFunction: function SassFunction(t0) {
12672
12703
  this.callable = t0;
12673
12704
  },
@@ -12882,8 +12913,8 @@ self.readline = _cli_pkg_requires.readline;
12882
12913
  _._async_evaluate$_environment = t10;
12883
12914
  _._async_evaluate$_declarationName = _._async_evaluate$__parent = _._async_evaluate$_mediaQueries = _._async_evaluate$_styleRuleIgnoringAtRoot = null;
12884
12915
  _._async_evaluate$_member = "root stylesheet";
12885
- _._async_evaluate$_importSpan = _._async_evaluate$_callableNode = null;
12886
- _._async_evaluate$_inKeyframes = _._async_evaluate$_atRootExcludingStyleRule = _._async_evaluate$_inUnknownAtRule = _._async_evaluate$_inFunction = false;
12916
+ _._async_evaluate$_importSpan = _._async_evaluate$_callableNode = _._async_evaluate$_currentCallable = null;
12917
+ _._async_evaluate$_inSupportsDeclaration = _._async_evaluate$_inKeyframes = _._async_evaluate$_atRootExcludingStyleRule = _._async_evaluate$_inUnknownAtRule = _._async_evaluate$_inFunction = false;
12887
12918
  _._async_evaluate$_loadedUrls = t11;
12888
12919
  _._async_evaluate$_activeModules = t12;
12889
12920
  _._async_evaluate$_stack = t13;
@@ -13534,8 +13565,8 @@ self.readline = _cli_pkg_requires.readline;
13534
13565
  _._environment = t10;
13535
13566
  _._declarationName = _.__parent = _._mediaQueries = _._styleRuleIgnoringAtRoot = null;
13536
13567
  _._member = "root stylesheet";
13537
- _._importSpan = _._callableNode = null;
13538
- _._inKeyframes = _._atRootExcludingStyleRule = _._inUnknownAtRule = _._inFunction = false;
13568
+ _._importSpan = _._callableNode = _._currentCallable = null;
13569
+ _._inSupportsDeclaration = _._inKeyframes = _._atRootExcludingStyleRule = _._inUnknownAtRule = _._inFunction = false;
13539
13570
  _._loadedUrls = t11;
13540
13571
  _._activeModules = t12;
13541
13572
  _._stack = t13;
@@ -14299,6 +14330,7 @@ self.readline = _cli_pkg_requires.readline;
14299
14330
  if (value != null)
14300
14331
  return value;
14301
14332
  }
14333
+ return null;
14302
14334
  },
14303
14335
  StatementSearchVisitor: function StatementSearchVisitor() {
14304
14336
  },
@@ -15521,8 +15553,8 @@ self.readline = _cli_pkg_requires.readline;
15521
15553
  _._async_evaluate0$_environment = t10;
15522
15554
  _._async_evaluate0$_declarationName = _._async_evaluate0$__parent = _._async_evaluate0$_mediaQueries = _._async_evaluate0$_styleRuleIgnoringAtRoot = null;
15523
15555
  _._async_evaluate0$_member = "root stylesheet";
15524
- _._async_evaluate0$_importSpan = _._async_evaluate0$_callableNode = null;
15525
- _._async_evaluate0$_inKeyframes = _._async_evaluate0$_atRootExcludingStyleRule = _._async_evaluate0$_inUnknownAtRule = _._async_evaluate0$_inFunction = false;
15556
+ _._async_evaluate0$_importSpan = _._async_evaluate0$_callableNode = _._async_evaluate0$_currentCallable = null;
15557
+ _._async_evaluate0$_inSupportsDeclaration = _._async_evaluate0$_inKeyframes = _._async_evaluate0$_atRootExcludingStyleRule = _._async_evaluate0$_inUnknownAtRule = _._async_evaluate0$_inFunction = false;
15526
15558
  _._async_evaluate0$_loadedUrls = t11;
15527
15559
  _._async_evaluate0$_activeModules = t12;
15528
15560
  _._async_evaluate0$_stack = t13;
@@ -16487,8 +16519,10 @@ self.readline = _cli_pkg_requires.readline;
16487
16519
  A.SassCalculation__verifyLength0(args, 3);
16488
16520
  return new A.SassCalculation0("clamp", args);
16489
16521
  },
16490
- SassCalculation_operateInternal0(operator, left, right, inMinMax) {
16522
+ SassCalculation_operateInternal0(operator, left, right, inMinMax, simplify) {
16491
16523
  var t1, t2;
16524
+ if (!simplify)
16525
+ return new A.CalculationOperation0(operator, left, right);
16492
16526
  left = A.SassCalculation__simplify0(left);
16493
16527
  right = A.SassCalculation__simplify0(right);
16494
16528
  t1 = operator === B.CalculationOperator_Iem0;
@@ -16655,7 +16689,7 @@ self.readline = _cli_pkg_requires.readline;
16655
16689
  t3 = t2.call$2(color.get$red(color), red);
16656
16690
  t4 = t2.call$2(color.get$green(color), green);
16657
16691
  t2 = t2.call$2(color.get$blue(color), blue);
16658
- return color.changeRgb$4$alpha$blue$green$red(t1.call$3(color._color0$_alpha, alpha, 1), t2, t4, t3);
16692
+ return color.changeRgb$4$alpha$blue$green$red(t1.call$3(color._color1$_alpha, alpha, 1), t2, t4, t3);
16659
16693
  } else if (hasWB) {
16660
16694
  if (change)
16661
16695
  t2 = hue;
@@ -16665,7 +16699,7 @@ self.readline = _cli_pkg_requires.readline;
16665
16699
  }
16666
16700
  t3 = t1.call$3(color.get$whiteness(color), whiteness, 100);
16667
16701
  t4 = t1.call$3(color.get$blackness(color), blackness, 100);
16668
- return color.changeHwb$4$alpha$blackness$hue$whiteness(t1.call$3(color._color0$_alpha, alpha, 1), t4, t2, t3);
16702
+ return color.changeHwb$4$alpha$blackness$hue$whiteness(t1.call$3(color._color1$_alpha, alpha, 1), t4, t2, t3);
16669
16703
  } else {
16670
16704
  t2 = hue == null;
16671
16705
  if (!t2 || hasSL) {
@@ -16678,9 +16712,9 @@ self.readline = _cli_pkg_requires.readline;
16678
16712
  }
16679
16713
  t3 = t1.call$3(color.get$saturation(color), saturation, 100);
16680
16714
  t4 = t1.call$3(color.get$lightness(color), lightness, 100);
16681
- return color.changeHsl$4$alpha$hue$lightness$saturation(t1.call$3(color._color0$_alpha, alpha, 1), t2, t4, t3);
16715
+ return color.changeHsl$4$alpha$hue$lightness$saturation(t1.call$3(color._color1$_alpha, alpha, 1), t2, t4, t3);
16682
16716
  } else if (alpha != null)
16683
- return color.changeAlpha$1(t1.call$3(color._color0$_alpha, alpha, 1));
16717
+ return color.changeAlpha$1(t1.call$3(color._color1$_alpha, alpha, 1));
16684
16718
  else
16685
16719
  return color;
16686
16720
  }
@@ -16711,7 +16745,7 @@ self.readline = _cli_pkg_requires.readline;
16711
16745
  red = t1.$index($arguments, 0).assertNumber$1("red");
16712
16746
  green = t1.$index($arguments, 1).assertNumber$1("green");
16713
16747
  blue = t1.$index($arguments, 2).assertNumber$1("blue");
16714
- return A.SassColor$rgb0(A.fuzzyRound0(A._percentageOrUnitless0(red, 255, "red")), A.fuzzyRound0(A._percentageOrUnitless0(green, 255, "green")), A.fuzzyRound0(A._percentageOrUnitless0(blue, 255, "blue")), A.NullableExtension_andThen0(alpha, new A._rgb_closure0()), null);
16748
+ return A.SassColor$rgbInternal0(A.fuzzyRound0(A._percentageOrUnitless0(red, 255, "red")), A.fuzzyRound0(A._percentageOrUnitless0(green, 255, "green")), A.fuzzyRound0(A._percentageOrUnitless0(blue, 255, "blue")), A.NullableExtension_andThen0(alpha, new A._rgb_closure0()), B._ColorFormatEnum_rgbFunction0);
16715
16749
  },
16716
16750
  _rgbTwoArg0($name, $arguments) {
16717
16751
  var first, color,
@@ -16755,7 +16789,7 @@ self.readline = _cli_pkg_requires.readline;
16755
16789
  A._checkAngle0(hue, "hue");
16756
16790
  A._checkPercent0(saturation, _s10_);
16757
16791
  A._checkPercent0(lightness, _s9_);
16758
- return A.SassColor$hsl0(hue._number1$_value, B.JSNumber_methods.clamp$2(saturation._number1$_value, 0, 100), B.JSNumber_methods.clamp$2(lightness._number1$_value, 0, 100), A.NullableExtension_andThen0(alpha, new A._hsl_closure0()));
16792
+ return A.SassColor$hslInternal0(hue._number1$_value, B.JSNumber_methods.clamp$2(saturation._number1$_value, 0, 100), B.JSNumber_methods.clamp$2(lightness._number1$_value, 0, 100), A.NullableExtension_andThen0(alpha, new A._hsl_closure0()), B._ColorFormatEnum_hslFunction0);
16759
16793
  },
16760
16794
  _checkAngle0(angle, $name) {
16761
16795
  var t1, t2, t3, actualUnit,
@@ -16892,23 +16926,23 @@ self.readline = _cli_pkg_requires.readline;
16892
16926
  _mixColors0(color1, color2, weight) {
16893
16927
  var weightScale = weight.valueInRange$3(0, 100, "weight") / 100,
16894
16928
  normalizedWeight = weightScale * 2 - 1,
16895
- t1 = color1._color0$_alpha,
16896
- t2 = color2._color0$_alpha,
16929
+ t1 = color1._color1$_alpha,
16930
+ t2 = color2._color1$_alpha,
16897
16931
  alphaDistance = t1 - t2,
16898
16932
  t3 = normalizedWeight * alphaDistance,
16899
16933
  weight1 = ((t3 === -1 ? normalizedWeight : (normalizedWeight + alphaDistance) / (1 + t3)) + 1) / 2,
16900
16934
  weight2 = 1 - weight1;
16901
- return A.SassColor$rgb0(A.fuzzyRound0(color1.get$red(color1) * weight1 + color2.get$red(color2) * weight2), A.fuzzyRound0(color1.get$green(color1) * weight1 + color2.get$green(color2) * weight2), A.fuzzyRound0(color1.get$blue(color1) * weight1 + color2.get$blue(color2) * weight2), t1 * weightScale + t2 * (1 - weightScale), null);
16935
+ return A.SassColor$rgb0(A.fuzzyRound0(color1.get$red(color1) * weight1 + color2.get$red(color2) * weight2), A.fuzzyRound0(color1.get$green(color1) * weight1 + color2.get$green(color2) * weight2), A.fuzzyRound0(color1.get$blue(color1) * weight1 + color2.get$blue(color2) * weight2), t1 * weightScale + t2 * (1 - weightScale));
16902
16936
  },
16903
16937
  _opacify0($arguments) {
16904
16938
  var t1 = J.getInterceptor$asx($arguments),
16905
16939
  color = t1.$index($arguments, 0).assertColor$1("color");
16906
- return color.changeAlpha$1(B.JSNumber_methods.clamp$2(color._color0$_alpha + t1.$index($arguments, 1).assertNumber$1("amount").valueInRange$3(0, 1, "amount"), 0, 1));
16940
+ return color.changeAlpha$1(B.JSNumber_methods.clamp$2(color._color1$_alpha + t1.$index($arguments, 1).assertNumber$1("amount").valueInRange$3(0, 1, "amount"), 0, 1));
16907
16941
  },
16908
16942
  _transparentize0($arguments) {
16909
16943
  var t1 = J.getInterceptor$asx($arguments),
16910
16944
  color = t1.$index($arguments, 0).assertColor$1("color");
16911
- return color.changeAlpha$1(B.JSNumber_methods.clamp$2(color._color0$_alpha - t1.$index($arguments, 1).assertNumber$1("amount").valueInRange$3(0, 1, "amount"), 0, 1));
16945
+ return color.changeAlpha$1(B.JSNumber_methods.clamp$2(color._color1$_alpha - t1.$index($arguments, 1).assertNumber$1("amount").valueInRange$3(0, 1, "amount"), 0, 1));
16912
16946
  },
16913
16947
  _function11($name, $arguments, callback) {
16914
16948
  return A.BuiltInCallable$function0($name, $arguments, callback, "sass:color");
@@ -17094,20 +17128,34 @@ self.readline = _cli_pkg_requires.readline;
17094
17128
  },
17095
17129
  _Channels: function _Channels() {
17096
17130
  },
17097
- SassColor$rgb0(_red, _green, _blue, alpha, originalSpan) {
17098
- var t1 = new A.SassColor0(_red, _green, _blue, null, null, null, alpha == null ? 1 : A.fuzzyAssertRange0(alpha, 0, 1, "alpha"), originalSpan);
17131
+ SassColor$rgb0(red, green, blue, alpha) {
17132
+ var _null = null,
17133
+ t1 = new A.SassColor0(red, green, blue, _null, _null, _null, alpha == null ? 1 : A.fuzzyAssertRange0(alpha, 0, 1, "alpha"), _null);
17134
+ A.RangeError_checkValueInInterval(t1.get$red(t1), 0, 255, "red");
17135
+ A.RangeError_checkValueInInterval(t1.get$green(t1), 0, 255, "green");
17136
+ A.RangeError_checkValueInInterval(t1.get$blue(t1), 0, 255, "blue");
17137
+ return t1;
17138
+ },
17139
+ SassColor$rgbInternal0(_red, _green, _blue, alpha, format) {
17140
+ var t1 = new A.SassColor0(_red, _green, _blue, null, null, null, alpha == null ? 1 : A.fuzzyAssertRange0(alpha, 0, 1, "alpha"), format);
17099
17141
  A.RangeError_checkValueInInterval(t1.get$red(t1), 0, 255, "red");
17100
17142
  A.RangeError_checkValueInInterval(t1.get$green(t1), 0, 255, "green");
17101
17143
  A.RangeError_checkValueInInterval(t1.get$blue(t1), 0, 255, "blue");
17102
17144
  return t1;
17103
17145
  },
17104
- SassColor$hsl0(hue, saturation, lightness, alpha) {
17146
+ SassColor$hsl(hue, saturation, lightness, alpha) {
17105
17147
  var _null = null,
17106
17148
  t1 = B.JSNumber_methods.$mod(hue, 360),
17107
17149
  t2 = A.fuzzyAssertRange0(saturation, 0, 100, "saturation"),
17108
17150
  t3 = A.fuzzyAssertRange0(lightness, 0, 100, "lightness");
17109
17151
  return new A.SassColor0(_null, _null, _null, t1, t2, t3, alpha == null ? 1 : A.fuzzyAssertRange0(alpha, 0, 1, "alpha"), _null);
17110
17152
  },
17153
+ SassColor$hslInternal0(hue, saturation, lightness, alpha, format) {
17154
+ var t1 = B.JSNumber_methods.$mod(hue, 360),
17155
+ t2 = A.fuzzyAssertRange0(saturation, 0, 100, "saturation"),
17156
+ t3 = A.fuzzyAssertRange0(lightness, 0, 100, "lightness");
17157
+ return new A.SassColor0(null, null, null, t1, t2, t3, alpha == null ? 1 : A.fuzzyAssertRange0(alpha, 0, 1, "alpha"), format);
17158
+ },
17111
17159
  SassColor_SassColor$hwb0(hue, whiteness, blackness, alpha) {
17112
17160
  var t2, t1 = {},
17113
17161
  scaledHue = B.JSNumber_methods.$mod(hue, 360) / 360,
@@ -17120,7 +17168,7 @@ self.readline = _cli_pkg_requires.readline;
17120
17168
  } else
17121
17169
  t2 = scaledWhiteness;
17122
17170
  t2 = new A.SassColor_SassColor$hwb_toRgb0(t1, 1 - t2 - scaledBlackness);
17123
- return A.SassColor$rgb0(t2.call$1(scaledHue + 0.3333333333333333), t2.call$1(scaledHue), t2.call$1(scaledHue - 0.3333333333333333), alpha, null);
17171
+ return A.SassColor$rgb0(t2.call$1(scaledHue + 0.3333333333333333), t2.call$1(scaledHue), t2.call$1(scaledHue - 0.3333333333333333), alpha);
17124
17172
  },
17125
17173
  SassColor__hueToRgb0(m1, m2, hue) {
17126
17174
  if (hue < 0)
@@ -17138,19 +17186,25 @@ self.readline = _cli_pkg_requires.readline;
17138
17186
  },
17139
17187
  SassColor0: function SassColor0(t0, t1, t2, t3, t4, t5, t6, t7) {
17140
17188
  var _ = this;
17141
- _._color0$_red = t0;
17142
- _._color0$_green = t1;
17143
- _._color0$_blue = t2;
17144
- _._color0$_hue = t3;
17145
- _._color0$_saturation = t4;
17146
- _._color0$_lightness = t5;
17147
- _._color0$_alpha = t6;
17148
- _.originalSpan = t7;
17189
+ _._color1$_red = t0;
17190
+ _._color1$_green = t1;
17191
+ _._color1$_blue = t2;
17192
+ _._color1$_hue = t3;
17193
+ _._color1$_saturation = t4;
17194
+ _._color1$_lightness = t5;
17195
+ _._color1$_alpha = t6;
17196
+ _.format = t7;
17149
17197
  },
17150
17198
  SassColor_SassColor$hwb_toRgb0: function SassColor_SassColor$hwb_toRgb0(t0, t1) {
17151
17199
  this._box_0 = t0;
17152
17200
  this.factor = t1;
17153
17201
  },
17202
+ _ColorFormatEnum0: function _ColorFormatEnum0(t0) {
17203
+ this._color1$_name = t0;
17204
+ },
17205
+ SpanColorFormat0: function SpanColorFormat0(t0) {
17206
+ this._color1$_span = t0;
17207
+ },
17154
17208
  ModifiableCssComment0: function ModifiableCssComment0(t0, t1) {
17155
17209
  var _ = this;
17156
17210
  _.text = t0;
@@ -17790,8 +17844,8 @@ self.readline = _cli_pkg_requires.readline;
17790
17844
  _._evaluate0$_environment = t10;
17791
17845
  _._evaluate0$_declarationName = _._evaluate0$__parent = _._evaluate0$_mediaQueries = _._evaluate0$_styleRuleIgnoringAtRoot = null;
17792
17846
  _._evaluate0$_member = "root stylesheet";
17793
- _._evaluate0$_importSpan = _._evaluate0$_callableNode = null;
17794
- _._evaluate0$_inKeyframes = _._evaluate0$_atRootExcludingStyleRule = _._evaluate0$_inUnknownAtRule = _._evaluate0$_inFunction = false;
17847
+ _._evaluate0$_importSpan = _._evaluate0$_callableNode = _._evaluate0$_currentCallable = null;
17848
+ _._evaluate0$_inSupportsDeclaration = _._evaluate0$_inKeyframes = _._evaluate0$_atRootExcludingStyleRule = _._evaluate0$_inUnknownAtRule = _._evaluate0$_inFunction = false;
17795
17849
  _._evaluate0$_loadedUrls = t11;
17796
17850
  _._evaluate0$_activeModules = t12;
17797
17851
  _._evaluate0$_stack = t13;
@@ -20785,7 +20839,7 @@ self.readline = _cli_pkg_requires.readline;
20785
20839
  J.set$sassFalse$x(self.exports, B.SassBoolean_false0);
20786
20840
  J.set$Exception$x(self.exports, $.$get$exceptionClass());
20787
20841
  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())}});
20788
- J.set$info$x(self.exports, "dart-sass\t1.49.7\t(Sass Compiler)\t[Dart]\ndart2js\t2.15.1\t(Dart Compiler)\t[Dart]");
20842
+ J.set$info$x(self.exports, "dart-sass\t1.49.10\t(Sass Compiler)\t[Dart]\ndart2js\t2.16.2\t(Dart Compiler)\t[Dart]");
20789
20843
  A.updateSourceSpanPrototype();
20790
20844
  J.set$render$x(self.exports, A.allowInteropNamed("sass.render", A.legacy__render$closure()));
20791
20845
  J.set$renderSync$x(self.exports, A.allowInteropNamed("sass.renderSync", A.legacy__renderSync$closure()));
@@ -21444,7 +21498,7 @@ self.readline = _cli_pkg_requires.readline;
21444
21498
  switch ($async$goto) {
21445
21499
  case 0:
21446
21500
  // Function start
21447
- $async$returnValue = "1.49.7 compiled with dart2js 2.15.1";
21501
+ $async$returnValue = "1.49.10 compiled with dart2js 2.16.2";
21448
21502
  // goto return
21449
21503
  $async$goto = 1;
21450
21504
  break;
@@ -21805,6 +21859,7 @@ self.readline = _cli_pkg_requires.readline;
21805
21859
  if (value != null)
21806
21860
  return value;
21807
21861
  }
21862
+ return null;
21808
21863
  },
21809
21864
  StatementSearchVisitor0: function StatementSearchVisitor0() {
21810
21865
  },
@@ -22292,10 +22347,12 @@ self.readline = _cli_pkg_requires.readline;
22292
22347
  _.configuration = t2;
22293
22348
  _.span = t3;
22294
22349
  },
22295
- UserDefinedCallable0: function UserDefinedCallable0(t0, t1, t2) {
22296
- this.declaration = t0;
22297
- this.environment = t1;
22298
- this.$ti = t2;
22350
+ UserDefinedCallable0: function UserDefinedCallable0(t0, t1, t2, t3) {
22351
+ var _ = this;
22352
+ _.declaration = t0;
22353
+ _.environment = t1;
22354
+ _.inDependency = t2;
22355
+ _.$ti = t3;
22299
22356
  },
22300
22357
  fromImport0() {
22301
22358
  var t1 = A._asBoolQ($.Zone__current.$index(0, B.Symbol__inImportRule));
@@ -24565,6 +24622,8 @@ self.readline = _cli_pkg_requires.readline;
24565
24622
  },
24566
24623
  JavaScriptObject: function JavaScriptObject() {
24567
24624
  },
24625
+ LegacyJavaScriptObject: function LegacyJavaScriptObject() {
24626
+ },
24568
24627
  PlainJavaScriptObject: function PlainJavaScriptObject() {
24569
24628
  },
24570
24629
  UnknownJavaScriptObject: function UnknownJavaScriptObject() {
@@ -24636,7 +24695,8 @@ self.readline = _cli_pkg_requires.readline;
24636
24695
  },
24637
24696
  $isNull: 1
24638
24697
  };
24639
- J.JavaScriptObject.prototype = {
24698
+ J.JavaScriptObject.prototype = {};
24699
+ J.LegacyJavaScriptObject.prototype = {
24640
24700
  get$hashCode(receiver) {
24641
24701
  return 0;
24642
24702
  },
@@ -25123,7 +25183,7 @@ self.readline = _cli_pkg_requires.readline;
25123
25183
  toString$0(receiver) {
25124
25184
  var dartClosure = receiver[$.$get$DART_CLOSURE_PROPERTY_NAME()];
25125
25185
  if (dartClosure == null)
25126
- return this.super$JavaScriptObject$toString(receiver);
25186
+ return this.super$LegacyJavaScriptObject$toString(receiver);
25127
25187
  return "JavaScript function for " + A.S(J.toString$0$(dartClosure));
25128
25188
  },
25129
25189
  $isFunction: 1
@@ -29420,9 +29480,11 @@ self.readline = _cli_pkg_requires.readline;
29420
29480
  };
29421
29481
  A._rootHandleError_closure.prototype = {
29422
29482
  call$0() {
29423
- var error = A.wrapException(this.error);
29424
- error.stack = this.stackTrace.toString$0(0);
29425
- throw error;
29483
+ var t1 = this.error,
29484
+ t2 = this.stackTrace;
29485
+ A.checkNotNullable(t1, "error", type$.Object);
29486
+ A.checkNotNullable(t2, "stackTrace", type$.StackTrace);
29487
+ A.Error__throw(t1, t2);
29426
29488
  },
29427
29489
  $signature: 0
29428
29490
  };
@@ -32215,9 +32277,6 @@ self.readline = _cli_pkg_requires.readline;
32215
32277
  call$2(msg, position) {
32216
32278
  throw A.wrapException(A.FormatException$("Illegal IPv6 address, " + msg, this.host, position));
32217
32279
  },
32218
- call$1(msg) {
32219
- return this.call$2(msg, null);
32220
- },
32221
32280
  $signature: 364
32222
32281
  };
32223
32282
  A.Uri_parseIPv6Address_parseHex.prototype = {
@@ -38819,12 +38878,16 @@ self.readline = _cli_pkg_requires.readline;
38819
38878
  case 3:
38820
38879
  // returning from await.
38821
38880
  canonicalUrl = $async$result;
38822
- if (canonicalUrl != null) {
38823
- $async$returnValue = new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_AsyncImporter_Uri_Uri);
38881
+ if (canonicalUrl == null) {
38882
+ $async$returnValue = null;
38824
38883
  // goto return
38825
38884
  $async$goto = 1;
38826
38885
  break;
38827
38886
  }
38887
+ $async$returnValue = new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_AsyncImporter_Uri_Uri);
38888
+ // goto return
38889
+ $async$goto = 1;
38890
+ break;
38828
38891
  case 1:
38829
38892
  // return
38830
38893
  return A._asyncReturn($async$returnValue, $async$completer);
@@ -43921,8 +43984,9 @@ self.readline = _cli_pkg_requires.readline;
43921
43984
  resolvedUrl = _this.url;
43922
43985
  t1 = _this.baseImporter;
43923
43986
  canonicalUrl = _this.$this._canonicalize$3(t1, resolvedUrl, _this.forImport);
43924
- if (canonicalUrl != null)
43925
- return new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_Importer_Uri_Uri);
43987
+ if (canonicalUrl == null)
43988
+ return null;
43989
+ return new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_Importer_Uri_Uri);
43926
43990
  },
43927
43991
  $signature: 80
43928
43992
  };
@@ -46790,27 +46854,26 @@ self.readline = _cli_pkg_requires.readline;
46790
46854
  return type$.Statement._is(declarationOrBuffer) ? declarationOrBuffer : _this._styleRule$2(type$.InterpolationBuffer._as(declarationOrBuffer), new A._SpanScannerState(t1, t2));
46791
46855
  },
46792
46856
  _declarationOrBuffer$0() {
46793
- var midBuffer, couldBeSelector, beforeDeclaration, additional, t4, startsWithPunctuation, variableOrInterpolation, t5, $name, postColonWhitespace, value, exception, _this = this, t1 = {},
46857
+ var midBuffer, couldBeSelector, beforeDeclaration, additional, t3, startsWithPunctuation, variableOrInterpolation, t4, $name, postColonWhitespace, exception, _this = this, t1 = {},
46794
46858
  t2 = _this.scanner,
46795
46859
  start = new A._SpanScannerState(t2, t2._string_scanner$_position),
46796
- t3 = type$.JSArray_Object,
46797
- nameBuffer = new A.InterpolationBuffer(new A.StringBuffer(""), A._setArrayType([], t3)),
46860
+ nameBuffer = new A.InterpolationBuffer(new A.StringBuffer(""), A._setArrayType([], type$.JSArray_Object)),
46798
46861
  first = t2.peekChar$0();
46799
46862
  if (first !== 58)
46800
46863
  if (first !== 42)
46801
46864
  if (first !== 46)
46802
- t4 = first === 35 && t2.peekChar$1(1) !== 123;
46865
+ t3 = first === 35 && t2.peekChar$1(1) !== 123;
46803
46866
  else
46804
- t4 = true;
46867
+ t3 = true;
46805
46868
  else
46806
- t4 = true;
46869
+ t3 = true;
46807
46870
  else
46808
- t4 = true;
46809
- if (t4) {
46810
- t4 = t2.readChar$0();
46811
- nameBuffer._interpolation_buffer$_text._contents += A.Primitives_stringFromCharCode(t4);
46812
- t4 = _this.rawText$1(_this.get$whitespace());
46813
- nameBuffer._interpolation_buffer$_text._contents += t4;
46871
+ t3 = true;
46872
+ if (t3) {
46873
+ t3 = t2.readChar$0();
46874
+ nameBuffer._interpolation_buffer$_text._contents += A.Primitives_stringFromCharCode(t3);
46875
+ t3 = _this.rawText$1(_this.get$whitespace());
46876
+ nameBuffer._interpolation_buffer$_text._contents += t3;
46814
46877
  startsWithPunctuation = true;
46815
46878
  } else
46816
46879
  startsWithPunctuation = false;
@@ -46823,20 +46886,20 @@ self.readline = _cli_pkg_requires.readline;
46823
46886
  nameBuffer.addInterpolation$1(type$.Interpolation._as(variableOrInterpolation));
46824
46887
  _this._isUseAllowed = false;
46825
46888
  if (t2.matches$1("/*")) {
46826
- t4 = _this.rawText$1(_this.get$loudComment());
46827
- nameBuffer._interpolation_buffer$_text._contents += t4;
46889
+ t3 = _this.rawText$1(_this.get$loudComment());
46890
+ nameBuffer._interpolation_buffer$_text._contents += t3;
46828
46891
  }
46829
46892
  midBuffer = new A.StringBuffer("");
46830
- t4 = _this.get$whitespace();
46831
- midBuffer._contents += _this.rawText$1(t4);
46832
- t5 = t2._string_scanner$_position;
46893
+ t3 = _this.get$whitespace();
46894
+ midBuffer._contents += _this.rawText$1(t3);
46895
+ t4 = t2._string_scanner$_position;
46833
46896
  if (!t2.scanChar$1(58)) {
46834
46897
  if (midBuffer._contents.length !== 0)
46835
46898
  nameBuffer._interpolation_buffer$_text._contents += A.Primitives_stringFromCharCode(32);
46836
46899
  return nameBuffer;
46837
46900
  }
46838
46901
  midBuffer._contents += A.Primitives_stringFromCharCode(58);
46839
- $name = nameBuffer.interpolation$1(t2.spanFrom$2(start, new A._SpanScannerState(t2, t5)));
46902
+ $name = nameBuffer.interpolation$1(t2.spanFrom$2(start, new A._SpanScannerState(t2, t4)));
46840
46903
  if (B.JSString_methods.startsWith$1($name.get$initialPlain(), "--")) {
46841
46904
  t1 = _this._interpolatedDeclarationValue$0();
46842
46905
  _this.expectStatementSeparator$1("custom property");
@@ -46853,22 +46916,15 @@ self.readline = _cli_pkg_requires.readline;
46853
46916
  t1._interpolation_buffer$_text._contents += A.S(midBuffer);
46854
46917
  return t1;
46855
46918
  }
46856
- postColonWhitespace = _this.rawText$1(t4);
46919
+ postColonWhitespace = _this.rawText$1(t3);
46857
46920
  if (_this.lookingAtChildren$0())
46858
46921
  return _this._withChildren$3(_this.get$_declarationChild(), start, new A.StylesheetParser__declarationOrBuffer_closure($name));
46859
46922
  midBuffer._contents += postColonWhitespace;
46860
46923
  couldBeSelector = postColonWhitespace.length === 0 && _this._lookingAtInterpolatedIdentifier$0();
46861
46924
  beforeDeclaration = new A._SpanScannerState(t2, t2._string_scanner$_position);
46862
- t4 = t1.value = null;
46925
+ t3 = t1.value = null;
46863
46926
  try {
46864
- if (_this.lookingAtChildren$0()) {
46865
- t3 = A._setArrayType([], t3);
46866
- t4 = A.FileLocation$_(t2._sourceFile, t2._string_scanner$_position);
46867
- t5 = t4.offset;
46868
- value = new A.StringExpression(A.Interpolation$(t3, A._FileSpan$(t4.file, t5, t5)), true);
46869
- } else
46870
- value = _this.expression$0();
46871
- t3 = t1.value = value;
46927
+ t3 = t1.value = _this.expression$0();
46872
46928
  if (_this.lookingAtChildren$0()) {
46873
46929
  if (couldBeSelector)
46874
46930
  _this.expectStatementSeparator$0();
@@ -48370,20 +48426,13 @@ self.readline = _cli_pkg_requires.readline;
48370
48426
  start = new A._SpanScannerState(t1, t1._string_scanner$_position);
48371
48427
  t1.expectChar$1(35);
48372
48428
  first = t1.peekChar$0();
48373
- if (first != null && A.isDigit(first)) {
48374
- t1 = _this._hexColorContents$1(start);
48375
- t2 = t1.originalSpan;
48376
- t2.toString;
48377
- return new A.ColorExpression(t1, t2);
48378
- }
48429
+ if (first != null && A.isDigit(first))
48430
+ return new A.ColorExpression(_this._hexColorContents$1(start), t1.spanFrom$1(start));
48379
48431
  t2 = t1._string_scanner$_position;
48380
48432
  identifier = _this.interpolatedIdentifier$0();
48381
48433
  if (_this._isHexColor$1(identifier)) {
48382
48434
  t1.set$state(new A._SpanScannerState(t1, t2));
48383
- t1 = _this._hexColorContents$1(start);
48384
- t2 = t1.originalSpan;
48385
- t2.toString;
48386
- return new A.ColorExpression(t1, t2);
48435
+ return new A.ColorExpression(_this._hexColorContents$1(start), t1.spanFrom$1(start));
48387
48436
  }
48388
48437
  t2 = new A.StringBuffer("");
48389
48438
  buffer = new A.InterpolationBuffer(t2, A._setArrayType([], type$.JSArray_Object));
@@ -48401,7 +48450,7 @@ self.readline = _cli_pkg_requires.readline;
48401
48450
  red = (digit1 << 4 >>> 0) + digit1;
48402
48451
  green = (digit2 << 4 >>> 0) + digit2;
48403
48452
  blue = (digit3 << 4 >>> 0) + digit3;
48404
- alpha = 1;
48453
+ alpha = null;
48405
48454
  } else {
48406
48455
  digit4 = _this._hexDigit$0();
48407
48456
  t2 = digit1 << 4 >>> 0;
@@ -48415,10 +48464,10 @@ self.readline = _cli_pkg_requires.readline;
48415
48464
  red = t2 + digit2;
48416
48465
  green = t3 + digit4;
48417
48466
  blue = (_this._hexDigit$0() << 4 >>> 0) + _this._hexDigit$0();
48418
- alpha = A.isHex(t1.peekChar$0()) ? ((_this._hexDigit$0() << 4 >>> 0) + _this._hexDigit$0()) / 255 : 1;
48467
+ alpha = A.isHex(t1.peekChar$0()) ? ((_this._hexDigit$0() << 4 >>> 0) + _this._hexDigit$0()) / 255 : null;
48419
48468
  }
48420
48469
  }
48421
- return A.SassColor$rgb(red, green, blue, alpha, t1.spanFrom$1(start));
48470
+ return A.SassColor$rgbInternal(red, green, blue, alpha, alpha == null ? new A.SpanColorFormat(t1.spanFrom$1(start)) : null);
48422
48471
  },
48423
48472
  _isHexColor$1(interpolation) {
48424
48473
  var t1,
@@ -48671,10 +48720,8 @@ self.readline = _cli_pkg_requires.readline;
48671
48720
  }
48672
48721
  color = $.$get$colorsByName().$index(0, lower);
48673
48722
  if (color != null) {
48674
- color = A.SassColor$rgb(color.get$red(color), color.get$green(color), color.get$blue(color), color._alpha, identifier.span);
48675
- t1 = color.originalSpan;
48676
- t1.toString;
48677
- return new A.ColorExpression(color, t1);
48723
+ t1 = identifier.span;
48724
+ return new A.ColorExpression(A.SassColor$rgbInternal(color.get$red(color), color.get$green(color), color.get$blue(color), color._alpha, new A.SpanColorFormat(t1)), t1);
48678
48725
  }
48679
48726
  }
48680
48727
  specialFunction = _this.trySpecialFunction$2(lower, start);
@@ -51215,7 +51262,73 @@ self.readline = _cli_pkg_requires.readline;
51215
51262
  return 100 - Math.max(Math.max(_this.get$red(_this), _this.get$green(_this)), _this.get$blue(_this)) / 255 * 100;
51216
51263
  },
51217
51264
  accept$1$1(visitor) {
51218
- return visitor.visitColor$1(this);
51265
+ var $name, hexLength, t1, format, t2, opaque, _this = this;
51266
+ if (visitor._style === B.OutputStyle_compressed)
51267
+ if (!(Math.abs(_this._alpha - 1) < $.$get$epsilon()))
51268
+ visitor._writeRgb$1(_this);
51269
+ else {
51270
+ $name = $.$get$namesByColor().$index(0, _this);
51271
+ hexLength = visitor._canUseShortHex$1(_this) ? 4 : 7;
51272
+ if ($name != null && $name.length <= hexLength)
51273
+ visitor._serialize$_buffer.write$1(0, $name);
51274
+ else {
51275
+ t1 = visitor._serialize$_buffer;
51276
+ if (visitor._canUseShortHex$1(_this)) {
51277
+ t1.writeCharCode$1(35);
51278
+ t1.writeCharCode$1(A.hexCharFor(_this.get$red(_this) & 15));
51279
+ t1.writeCharCode$1(A.hexCharFor(_this.get$green(_this) & 15));
51280
+ t1.writeCharCode$1(A.hexCharFor(_this.get$blue(_this) & 15));
51281
+ } else {
51282
+ t1.writeCharCode$1(35);
51283
+ visitor._writeHexComponent$1(_this.get$red(_this));
51284
+ visitor._writeHexComponent$1(_this.get$green(_this));
51285
+ visitor._writeHexComponent$1(_this.get$blue(_this));
51286
+ }
51287
+ }
51288
+ }
51289
+ else {
51290
+ format = _this.format;
51291
+ if (format != null)
51292
+ if (format === B._ColorFormatEnum_rgbFunction)
51293
+ visitor._writeRgb$1(_this);
51294
+ else {
51295
+ t1 = visitor._serialize$_buffer;
51296
+ if (format === B._ColorFormatEnum_hslFunction) {
51297
+ t2 = _this._alpha;
51298
+ opaque = Math.abs(t2 - 1) < $.$get$epsilon();
51299
+ t1.write$1(0, opaque ? "hsl(" : "hsla(");
51300
+ visitor._writeNumber$1(_this.get$hue(_this));
51301
+ t1.write$1(0, "deg");
51302
+ t1.write$1(0, ", ");
51303
+ visitor._writeNumber$1(_this.get$saturation(_this));
51304
+ t1.writeCharCode$1(37);
51305
+ t1.write$1(0, ", ");
51306
+ visitor._writeNumber$1(_this.get$lightness(_this));
51307
+ t1.writeCharCode$1(37);
51308
+ if (!opaque) {
51309
+ t1.write$1(0, ", ");
51310
+ visitor._writeNumber$1(t2);
51311
+ }
51312
+ t1.writeCharCode$1(41);
51313
+ } else {
51314
+ t2 = type$.SpanColorFormat._as(format)._color$_span;
51315
+ t1.write$1(0, A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t2.file._decodedChars, t2._file$_start, t2._end), 0, null));
51316
+ }
51317
+ }
51318
+ else {
51319
+ t1 = $.$get$namesByColor();
51320
+ if (t1.containsKey$1(_this) && !(Math.abs(_this._alpha - 0) < $.$get$epsilon()))
51321
+ visitor._serialize$_buffer.write$1(0, t1.$index(0, _this));
51322
+ else if (Math.abs(_this._alpha - 1) < $.$get$epsilon()) {
51323
+ visitor._serialize$_buffer.writeCharCode$1(35);
51324
+ visitor._writeHexComponent$1(_this.get$red(_this));
51325
+ visitor._writeHexComponent$1(_this.get$green(_this));
51326
+ visitor._writeHexComponent$1(_this.get$blue(_this));
51327
+ } else
51328
+ visitor._writeRgb$1(_this);
51329
+ }
51330
+ }
51331
+ return null;
51219
51332
  },
51220
51333
  accept$1(visitor) {
51221
51334
  return this.accept$1$1(visitor, type$.dynamic);
@@ -51224,17 +51337,22 @@ self.readline = _cli_pkg_requires.readline;
51224
51337
  return this;
51225
51338
  },
51226
51339
  changeRgb$4$alpha$blue$green$red(alpha, blue, green, red) {
51227
- return A.SassColor$rgb(red, green, blue, alpha == null ? this._alpha : alpha, null);
51340
+ return A.SassColor$rgb(red, green, blue, alpha == null ? this._alpha : alpha);
51228
51341
  },
51229
51342
  changeRgb$3$blue$green$red(blue, green, red) {
51230
51343
  return this.changeRgb$4$alpha$blue$green$red(null, blue, green, red);
51231
51344
  },
51232
51345
  changeHsl$4$alpha$hue$lightness$saturation(alpha, hue, lightness, saturation) {
51233
- var _this = this,
51346
+ var _this = this, _null = null,
51234
51347
  t1 = hue == null ? _this.get$hue(_this) : hue,
51235
51348
  t2 = saturation == null ? _this.get$saturation(_this) : saturation,
51236
- t3 = lightness == null ? _this.get$lightness(_this) : lightness;
51237
- return A.SassColor$hsl(t1, t2, t3, alpha == null ? _this._alpha : alpha);
51349
+ t3 = lightness == null ? _this.get$lightness(_this) : lightness,
51350
+ t4 = alpha == null ? _this._alpha : alpha;
51351
+ t1 = B.JSNumber_methods.$mod(t1, 360);
51352
+ t2 = A.fuzzyAssertRange(t2, 0, 100, "saturation");
51353
+ t3 = A.fuzzyAssertRange(t3, 0, 100, "lightness");
51354
+ t4 = A.fuzzyAssertRange(t4, 0, 1, "alpha");
51355
+ return new A.SassColor(_null, _null, _null, t1, t2, t3, t4, _null);
51238
51356
  },
51239
51357
  changeHsl$1$saturation(saturation) {
51240
51358
  return this.changeHsl$4$alpha$hue$lightness$saturation(null, null, null, saturation);
@@ -51322,6 +51440,12 @@ self.readline = _cli_pkg_requires.readline;
51322
51440
  },
51323
51441
  $signature: 43
51324
51442
  };
51443
+ A._ColorFormatEnum.prototype = {
51444
+ toString$0(_) {
51445
+ return this._color$_name;
51446
+ }
51447
+ };
51448
+ A.SpanColorFormat.prototype = {};
51325
51449
  A.SassFunction.prototype = {
51326
51450
  accept$1$1(visitor) {
51327
51451
  var t1, t2;
@@ -53301,7 +53425,7 @@ self.readline = _cli_pkg_requires.readline;
53301
53425
  visitFunctionRule$body$_EvaluateVisitor(node) {
53302
53426
  var $async$goto = 0,
53303
53427
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value),
53304
- $async$returnValue, $async$self = this, t1, t2, t3, index, t4;
53428
+ $async$returnValue, $async$self = this, t1, t2, t3, t4, index, t5;
53305
53429
  var $async$visitFunctionRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
53306
53430
  if ($async$errorCode === 1)
53307
53431
  return A._asyncRethrow($async$result, $async$completer);
@@ -53311,11 +53435,12 @@ self.readline = _cli_pkg_requires.readline;
53311
53435
  // Function start
53312
53436
  t1 = $async$self._async_evaluate$_environment;
53313
53437
  t2 = t1.closure$0();
53314
- t3 = t1._async_environment$_functions;
53315
- index = t3.length - 1;
53316
- t4 = node.name;
53317
- t1._async_environment$_functionIndices.$indexSet(0, t4, index);
53318
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable(node, t2, type$.UserDefinedCallable_AsyncEnvironment));
53438
+ t3 = $async$self._async_evaluate$_inDependency;
53439
+ t4 = t1._async_environment$_functions;
53440
+ index = t4.length - 1;
53441
+ t5 = node.name;
53442
+ t1._async_environment$_functionIndices.$indexSet(0, t5, index);
53443
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable(node, t2, t3, type$.UserDefinedCallable_AsyncEnvironment));
53319
53444
  $async$returnValue = null;
53320
53445
  // goto return
53321
53446
  $async$goto = 1;
@@ -53746,7 +53871,7 @@ self.readline = _cli_pkg_requires.readline;
53746
53871
  visitMixinRule$body$_EvaluateVisitor(node) {
53747
53872
  var $async$goto = 0,
53748
53873
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value),
53749
- $async$returnValue, $async$self = this, t1, t2, t3, index, t4;
53874
+ $async$returnValue, $async$self = this, t1, t2, t3, t4, index, t5;
53750
53875
  var $async$visitMixinRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
53751
53876
  if ($async$errorCode === 1)
53752
53877
  return A._asyncRethrow($async$result, $async$completer);
@@ -53756,11 +53881,12 @@ self.readline = _cli_pkg_requires.readline;
53756
53881
  // Function start
53757
53882
  t1 = $async$self._async_evaluate$_environment;
53758
53883
  t2 = t1.closure$0();
53759
- t3 = t1._async_environment$_mixins;
53760
- index = t3.length - 1;
53761
- t4 = node.name;
53762
- t1._async_environment$_mixinIndices.$indexSet(0, t4, index);
53763
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable(node, t2, type$.UserDefinedCallable_AsyncEnvironment));
53884
+ t3 = $async$self._async_evaluate$_inDependency;
53885
+ t4 = t1._async_environment$_mixins;
53886
+ index = t4.length - 1;
53887
+ t5 = node.name;
53888
+ t1._async_environment$_mixinIndices.$indexSet(0, t5, index);
53889
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable(node, t2, t3, type$.UserDefinedCallable_AsyncEnvironment));
53764
53890
  $async$returnValue = null;
53765
53891
  // goto return
53766
53892
  $async$goto = 1;
@@ -54070,7 +54196,7 @@ self.readline = _cli_pkg_requires.readline;
54070
54196
  _visitSupportsCondition$body$_EvaluateVisitor(condition) {
54071
54197
  var $async$goto = 0,
54072
54198
  $async$completer = A._makeAsyncAwaitCompleter(type$.String),
54073
- $async$returnValue, $async$self = this, t1, $async$temp1, $async$temp2;
54199
+ $async$returnValue, $async$self = this, t1, oldInSupportsDeclaration, result, $async$temp1, $async$temp2;
54074
54200
  var $async$_async_evaluate$_visitSupportsCondition$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
54075
54201
  if ($async$errorCode === 1)
54076
54202
  return A._asyncRethrow($async$result, $async$completer);
@@ -54142,6 +54268,8 @@ self.readline = _cli_pkg_requires.readline;
54142
54268
  break;
54143
54269
  case 16:
54144
54270
  // then
54271
+ oldInSupportsDeclaration = $async$self._async_evaluate$_inSupportsDeclaration;
54272
+ $async$self._async_evaluate$_inSupportsDeclaration = true;
54145
54273
  $async$temp1 = A;
54146
54274
  $async$goto = 19;
54147
54275
  return A._asyncAwait($async$self._evaluateToCss$1(condition.name), $async$_async_evaluate$_visitSupportsCondition$1);
@@ -54154,7 +54282,9 @@ self.readline = _cli_pkg_requires.readline;
54154
54282
  return A._asyncAwait($async$self._evaluateToCss$1(condition.value), $async$_async_evaluate$_visitSupportsCondition$1);
54155
54283
  case 20:
54156
54284
  // returning from await.
54157
- $async$returnValue = $async$temp1 + $async$temp2.S($async$result) + ")";
54285
+ result = $async$temp1 + $async$temp2.S($async$result) + ")";
54286
+ $async$self._async_evaluate$_inSupportsDeclaration = oldInSupportsDeclaration;
54287
+ $async$returnValue = result;
54158
54288
  // goto return
54159
54289
  $async$goto = 1;
54160
54290
  break;
@@ -54723,6 +54853,12 @@ self.readline = _cli_pkg_requires.readline;
54723
54853
  case 5:
54724
54854
  // after for
54725
54855
  $arguments = t1;
54856
+ if ($async$self._async_evaluate$_inSupportsDeclaration) {
54857
+ $async$returnValue = new A.SassCalculation(t4, A.List_List$unmodifiable($arguments, type$.Object));
54858
+ // goto return
54859
+ $async$goto = 1;
54860
+ break;
54861
+ }
54726
54862
  try {
54727
54863
  switch (t4) {
54728
54864
  case "calc":
@@ -55126,7 +55262,7 @@ self.readline = _cli_pkg_requires.readline;
55126
55262
  _runUserDefinedCallable$body$_EvaluateVisitor($arguments, callable, nodeWithSpan, run, $V, $async$type) {
55127
55263
  var $async$goto = 0,
55128
55264
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
55129
- $async$returnValue, $async$self = this, evaluated, $name;
55265
+ $async$returnValue, $async$self = this, oldCallable, result, evaluated, $name;
55130
55266
  var $async$_async_evaluate$_runUserDefinedCallable$1$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
55131
55267
  if ($async$errorCode === 1)
55132
55268
  return A._asyncRethrow($async$result, $async$completer);
@@ -55142,11 +55278,15 @@ self.readline = _cli_pkg_requires.readline;
55142
55278
  $name = callable.declaration.name;
55143
55279
  if ($name !== "@content")
55144
55280
  $name += "()";
55281
+ oldCallable = $async$self._async_evaluate$_currentCallable;
55282
+ $async$self._async_evaluate$_currentCallable = callable;
55145
55283
  $async$goto = 4;
55146
55284
  return A._asyncAwait($async$self._async_evaluate$_withStackFrame$1$3($name, nodeWithSpan, new A._EvaluateVisitor__runUserDefinedCallable_closure0($async$self, callable, evaluated, nodeWithSpan, run, $V), $V), $async$_async_evaluate$_runUserDefinedCallable$1$4);
55147
55285
  case 4:
55148
55286
  // returning from await.
55149
- $async$returnValue = $async$result;
55287
+ result = $async$result;
55288
+ $async$self._async_evaluate$_currentCallable = oldCallable;
55289
+ $async$returnValue = result;
55150
55290
  // goto return
55151
55291
  $async$goto = 1;
55152
55292
  break;
@@ -55694,7 +55834,7 @@ self.readline = _cli_pkg_requires.readline;
55694
55834
  visitStringExpression$body$_EvaluateVisitor(node) {
55695
55835
  var $async$goto = 0,
55696
55836
  $async$completer = A._makeAsyncAwaitCompleter(type$.SassString),
55697
- $async$returnValue, $async$self = this, $async$temp1, $async$temp2;
55837
+ $async$returnValue, $async$self = this, t1, oldInSupportsDeclaration, $async$temp1;
55698
55838
  var $async$visitStringExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
55699
55839
  if ($async$errorCode === 1)
55700
55840
  return A._asyncRethrow($async$result, $async$completer);
@@ -55702,13 +55842,16 @@ self.readline = _cli_pkg_requires.readline;
55702
55842
  switch ($async$goto) {
55703
55843
  case 0:
55704
55844
  // Function start
55705
- $async$temp1 = A;
55706
- $async$temp2 = J;
55845
+ oldInSupportsDeclaration = $async$self._async_evaluate$_inSupportsDeclaration;
55846
+ $async$self._async_evaluate$_inSupportsDeclaration = false;
55847
+ $async$temp1 = J;
55707
55848
  $async$goto = 3;
55708
55849
  return A._asyncAwait(A.mapAsync(node.text.contents, new A._EvaluateVisitor_visitStringExpression_closure0($async$self), type$.Object, type$.String), $async$visitStringExpression$1);
55709
55850
  case 3:
55710
55851
  // returning from await.
55711
- $async$returnValue = new $async$temp1.SassString($async$temp2.join$0$ax($async$result), node.hasQuotes);
55852
+ t1 = $async$temp1.join$0$ax($async$result);
55853
+ $async$self._async_evaluate$_inSupportsDeclaration = oldInSupportsDeclaration;
55854
+ $async$returnValue = new A.SassString(t1, node.hasQuotes);
55712
55855
  // goto return
55713
55856
  $async$goto = 1;
55714
55857
  break;
@@ -56138,7 +56281,7 @@ self.readline = _cli_pkg_requires.readline;
56138
56281
  _performInterpolation$body$_EvaluateVisitor(interpolation, warnForColor) {
56139
56282
  var $async$goto = 0,
56140
56283
  $async$completer = A._makeAsyncAwaitCompleter(type$.String),
56141
- $async$returnValue, $async$self = this, $async$temp1;
56284
+ $async$returnValue, $async$self = this, result, oldInSupportsDeclaration, $async$temp1;
56142
56285
  var $async$_async_evaluate$_performInterpolation$2$warnForColor = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
56143
56286
  if ($async$errorCode === 1)
56144
56287
  return A._asyncRethrow($async$result, $async$completer);
@@ -56146,12 +56289,16 @@ self.readline = _cli_pkg_requires.readline;
56146
56289
  switch ($async$goto) {
56147
56290
  case 0:
56148
56291
  // Function start
56292
+ oldInSupportsDeclaration = $async$self._async_evaluate$_inSupportsDeclaration;
56293
+ $async$self._async_evaluate$_inSupportsDeclaration = false;
56149
56294
  $async$temp1 = J;
56150
56295
  $async$goto = 3;
56151
56296
  return A._asyncAwait(A.mapAsync(interpolation.contents, new A._EvaluateVisitor__performInterpolation_closure0($async$self, warnForColor, interpolation), type$.Object, type$.String), $async$_async_evaluate$_performInterpolation$2$warnForColor);
56152
56297
  case 3:
56153
56298
  // returning from await.
56154
- $async$returnValue = $async$temp1.join$0$ax($async$result);
56299
+ result = $async$temp1.join$0$ax($async$result);
56300
+ $async$self._async_evaluate$_inSupportsDeclaration = oldInSupportsDeclaration;
56301
+ $async$returnValue = result;
56155
56302
  // goto return
56156
56303
  $async$goto = 1;
56157
56304
  break;
@@ -56391,8 +56538,17 @@ self.readline = _cli_pkg_requires.readline;
56391
56538
  return this._async_evaluate$_stackTrace$1(null);
56392
56539
  },
56393
56540
  _async_evaluate$_warn$3$deprecation(message, span, deprecation) {
56394
- var _this = this;
56395
- if (_this._async_evaluate$_quietDeps && _this._async_evaluate$_inDependency)
56541
+ var t1, _this = this;
56542
+ if (_this._async_evaluate$_quietDeps)
56543
+ if (!_this._async_evaluate$_inDependency) {
56544
+ t1 = _this._async_evaluate$_currentCallable;
56545
+ t1 = t1 == null ? null : t1.inDependency;
56546
+ t1 = t1 === true;
56547
+ } else
56548
+ t1 = true;
56549
+ else
56550
+ t1 = false;
56551
+ if (t1)
56396
56552
  return;
56397
56553
  if (!_this._async_evaluate$_warningsEmitted.add$1(0, new A.Tuple2(message, span, type$.Tuple2_String_SourceSpan)))
56398
56554
  return;
@@ -56801,7 +56957,8 @@ self.readline = _cli_pkg_requires.readline;
56801
56957
  return A._asyncAwait(t1._async_evaluate$_runFunctionCallable$3(invocation, t2.callable, t3), $async$call$1);
56802
56958
  case 6:
56803
56959
  // returning from await.
56804
- $async$returnValue = $async$result;
56960
+ t3 = $async$result;
56961
+ $async$returnValue = t3;
56805
56962
  // goto return
56806
56963
  $async$goto = 1;
56807
56964
  break;
@@ -57980,10 +58137,12 @@ self.readline = _cli_pkg_requires.readline;
57980
58137
  $async$self.children._value = t6;
57981
58138
  t1._async_evaluate$_importer = oldImporter;
57982
58139
  t1._async_evaluate$__stylesheet = t2;
57983
- t1._async_evaluate$__root = t3;
57984
- t1._async_evaluate$__parent = t4;
57985
- t1._async_evaluate$__endOfImports = t5;
57986
- t1._async_evaluate$_outOfOrderImports = oldOutOfOrderImports;
58140
+ if (t8) {
58141
+ t1._async_evaluate$__root = t3;
58142
+ t1._async_evaluate$__parent = t4;
58143
+ t1._async_evaluate$__endOfImports = t5;
58144
+ t1._async_evaluate$_outOfOrderImports = oldOutOfOrderImports;
58145
+ }
57987
58146
  t1._async_evaluate$_configuration = oldConfiguration;
57988
58147
  t1._async_evaluate$_inDependency = oldInDependency;
57989
58148
  // implicit return
@@ -58067,7 +58226,8 @@ self.readline = _cli_pkg_requires.readline;
58067
58226
  };
58068
58227
  A._EvaluateVisitor_visitIncludeRule_closure6.prototype = {
58069
58228
  call$1($content) {
58070
- return new A.UserDefinedCallable($content, this.$this._async_evaluate$_environment.closure$0(), type$.UserDefinedCallable_AsyncEnvironment);
58229
+ var t1 = this.$this;
58230
+ return new A.UserDefinedCallable($content, t1._async_evaluate$_environment.closure$0(), t1._async_evaluate$_inDependency, type$.UserDefinedCallable_AsyncEnvironment);
58071
58231
  },
58072
58232
  $signature: 514
58073
58233
  };
@@ -59004,7 +59164,7 @@ self.readline = _cli_pkg_requires.readline;
59004
59164
  return A._asyncAwait(t1._async_evaluate$_visitCalculationValue$2$inMinMax(t2.right, t3), $async$call$0);
59005
59165
  case 4:
59006
59166
  // returning from await.
59007
- $async$returnValue = $async$temp1.SassCalculation_operateInternal($async$temp2, $async$temp3, $async$result, t3);
59167
+ $async$returnValue = $async$temp1.SassCalculation_operateInternal($async$temp2, $async$temp3, $async$result, t3, !t1._async_evaluate$_inSupportsDeclaration);
59008
59168
  // goto return
59009
59169
  $async$goto = 1;
59010
59170
  break;
@@ -60473,11 +60633,12 @@ self.readline = _cli_pkg_requires.readline;
60473
60633
  visitFunctionRule$1(node) {
60474
60634
  var t1 = this._environment,
60475
60635
  t2 = t1.closure$0(),
60476
- t3 = t1._functions,
60477
- index = t3.length - 1,
60478
- t4 = node.name;
60479
- t1._functionIndices.$indexSet(0, t4, index);
60480
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable(node, t2, type$.UserDefinedCallable_Environment));
60636
+ t3 = this._inDependency,
60637
+ t4 = t1._functions,
60638
+ index = t4.length - 1,
60639
+ t5 = node.name;
60640
+ t1._functionIndices.$indexSet(0, t5, index);
60641
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable(node, t2, t3, type$.UserDefinedCallable_Environment));
60481
60642
  return null;
60482
60643
  },
60483
60644
  visitIfRule$1(node) {
@@ -60626,11 +60787,12 @@ self.readline = _cli_pkg_requires.readline;
60626
60787
  visitMixinRule$1(node) {
60627
60788
  var t1 = this._environment,
60628
60789
  t2 = t1.closure$0(),
60629
- t3 = t1._mixins,
60630
- index = t3.length - 1,
60631
- t4 = node.name;
60632
- t1._mixinIndices.$indexSet(0, t4, index);
60633
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable(node, t2, type$.UserDefinedCallable_Environment));
60790
+ t3 = this._inDependency,
60791
+ t4 = t1._mixins,
60792
+ index = t4.length - 1,
60793
+ t5 = node.name;
60794
+ t1._mixinIndices.$indexSet(0, t5, index);
60795
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable(node, t2, t3, type$.UserDefinedCallable_Environment));
60634
60796
  return null;
60635
60797
  },
60636
60798
  visitLoudComment$1(node) {
@@ -60722,7 +60884,7 @@ self.readline = _cli_pkg_requires.readline;
60722
60884
  return null;
60723
60885
  },
60724
60886
  _visitSupportsCondition$1(condition) {
60725
- var t1, t2, _this = this;
60887
+ var t1, oldInSupportsDeclaration, t2, result, _this = this;
60726
60888
  if (condition instanceof A.SupportsOperation) {
60727
60889
  t1 = condition.operator;
60728
60890
  return _this._parenthesize$2(condition.left, t1) + " " + t1 + " " + _this._parenthesize$2(condition.right, t1);
@@ -60732,10 +60894,14 @@ self.readline = _cli_pkg_requires.readline;
60732
60894
  t1 = condition.expression;
60733
60895
  return _this._evaluate$_serialize$3$quote(t1.accept$1(_this), t1, false);
60734
60896
  } else if (condition instanceof A.SupportsDeclaration) {
60897
+ oldInSupportsDeclaration = _this._inSupportsDeclaration;
60898
+ _this._inSupportsDeclaration = true;
60735
60899
  t1 = condition.name;
60736
60900
  t1 = "(" + _this._evaluate$_serialize$3$quote(t1.accept$1(_this), t1, true) + ":";
60737
60901
  t2 = condition.value;
60738
- return t1 + (condition.get$isCustomProperty() ? "" : " ") + _this._evaluate$_serialize$3$quote(t2.accept$1(_this), t2, true) + ")";
60902
+ result = t1 + (condition.get$isCustomProperty() ? "" : " ") + _this._evaluate$_serialize$3$quote(t2.accept$1(_this), t2, true) + ")";
60903
+ _this._inSupportsDeclaration = oldInSupportsDeclaration;
60904
+ return result;
60739
60905
  } else if (condition instanceof A.SupportsFunction)
60740
60906
  return _this._performInterpolation$1(condition.name) + "(" + _this._performInterpolation$1(condition.$arguments) + ")";
60741
60907
  else if (condition instanceof A.SupportsAnything)
@@ -60873,13 +61039,15 @@ self.readline = _cli_pkg_requires.readline;
60873
61039
  return node.expression.accept$1(this);
60874
61040
  },
60875
61041
  visitCalculationExpression$1(node) {
60876
- var $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception,
61042
+ var $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, _this = this,
60877
61043
  t1 = A._setArrayType([], type$.JSArray_Object);
60878
61044
  for (t2 = node.$arguments, t3 = t2.length, t4 = node.name, t5 = t4 !== "min", t6 = t4 === "max", _i = 0; _i < t3; ++_i) {
60879
61045
  argument = t2[_i];
60880
- t1.push(this._visitCalculationValue$2$inMinMax(argument, !t5 || t6));
61046
+ t1.push(_this._visitCalculationValue$2$inMinMax(argument, !t5 || t6));
60881
61047
  }
60882
61048
  $arguments = t1;
61049
+ if (_this._inSupportsDeclaration)
61050
+ return new A.SassCalculation(t4, A.List_List$unmodifiable($arguments, type$.Object));
60883
61051
  try {
60884
61052
  switch (t4) {
60885
61053
  case "calc":
@@ -60905,8 +61073,8 @@ self.readline = _cli_pkg_requires.readline;
60905
61073
  if (t1 instanceof A.SassScriptException) {
60906
61074
  error = t1;
60907
61075
  stackTrace = A.getTraceFromException(exception);
60908
- this._verifyCompatibleNumbers$2($arguments, t2);
60909
- A.throwWithTrace(this._evaluate$_exception$2(error.message, node.span), stackTrace);
61076
+ _this._verifyCompatibleNumbers$2($arguments, t2);
61077
+ A.throwWithTrace(_this._evaluate$_exception$2(error.message, node.span), stackTrace);
60910
61078
  } else
60911
61079
  throw exception;
60912
61080
  }
@@ -61034,11 +61202,16 @@ self.readline = _cli_pkg_requires.readline;
61034
61202
  return this._builtInFunctions.$index(0, $name);
61035
61203
  },
61036
61204
  _runUserDefinedCallable$1$4($arguments, callable, nodeWithSpan, run, $V) {
61037
- var evaluated = this._evaluateArguments$1($arguments),
61205
+ var oldCallable, result, _this = this,
61206
+ evaluated = _this._evaluateArguments$1($arguments),
61038
61207
  $name = callable.declaration.name;
61039
61208
  if ($name !== "@content")
61040
61209
  $name += "()";
61041
- return this._withStackFrame$3($name, nodeWithSpan, new A._EvaluateVisitor__runUserDefinedCallable_closure(this, callable, evaluated, nodeWithSpan, run, $V));
61210
+ oldCallable = _this._currentCallable;
61211
+ _this._currentCallable = callable;
61212
+ result = _this._withStackFrame$3($name, nodeWithSpan, new A._EvaluateVisitor__runUserDefinedCallable_closure(_this, callable, evaluated, nodeWithSpan, run, $V));
61213
+ _this._currentCallable = oldCallable;
61214
+ return result;
61042
61215
  },
61043
61216
  _runFunctionCallable$3($arguments, callable, nodeWithSpan) {
61044
61217
  var t1, t2, t3, first, _i, argument, restArg, rest, _this = this;
@@ -61268,8 +61441,13 @@ self.readline = _cli_pkg_requires.readline;
61268
61441
  return t1 == null ? B.C__SassNull : t1;
61269
61442
  },
61270
61443
  visitStringExpression$1(node) {
61271
- var t1 = node.text.contents;
61272
- return new A.SassString(new A.MappedListIterable(t1, new A._EvaluateVisitor_visitStringExpression_closure(this), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0), node.hasQuotes);
61444
+ var t1, _this = this,
61445
+ oldInSupportsDeclaration = _this._inSupportsDeclaration;
61446
+ _this._inSupportsDeclaration = false;
61447
+ t1 = node.text.contents;
61448
+ t1 = new A.MappedListIterable(t1, new A._EvaluateVisitor_visitStringExpression_closure(_this), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0);
61449
+ _this._inSupportsDeclaration = oldInSupportsDeclaration;
61450
+ return new A.SassString(t1, node.hasQuotes);
61273
61451
  },
61274
61452
  visitCssAtRule$1(node) {
61275
61453
  var wasInKeyframes, wasInUnknownAtRule, t1, _this = this;
@@ -61405,8 +61583,13 @@ self.readline = _cli_pkg_requires.readline;
61405
61583
  return this._interpolationToValue$3$trim$warnForColor(interpolation, false, warnForColor);
61406
61584
  },
61407
61585
  _performInterpolation$2$warnForColor(interpolation, warnForColor) {
61408
- var t1 = interpolation.contents;
61409
- return new A.MappedListIterable(t1, new A._EvaluateVisitor__performInterpolation_closure(this, warnForColor, interpolation), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0);
61586
+ var t1, result, _this = this,
61587
+ oldInSupportsDeclaration = _this._inSupportsDeclaration;
61588
+ _this._inSupportsDeclaration = false;
61589
+ t1 = interpolation.contents;
61590
+ result = new A.MappedListIterable(t1, new A._EvaluateVisitor__performInterpolation_closure(_this, warnForColor, interpolation), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0);
61591
+ _this._inSupportsDeclaration = oldInSupportsDeclaration;
61592
+ return result;
61410
61593
  },
61411
61594
  _performInterpolation$1(interpolation) {
61412
61595
  return this._performInterpolation$2$warnForColor(interpolation, false);
@@ -61517,8 +61700,17 @@ self.readline = _cli_pkg_requires.readline;
61517
61700
  return this._evaluate$_stackTrace$1(null);
61518
61701
  },
61519
61702
  _warn$3$deprecation(message, span, deprecation) {
61520
- var _this = this;
61521
- if (_this._quietDeps && _this._inDependency)
61703
+ var t1, _this = this;
61704
+ if (_this._quietDeps)
61705
+ if (!_this._inDependency) {
61706
+ t1 = _this._currentCallable;
61707
+ t1 = t1 == null ? null : t1.inDependency;
61708
+ t1 = t1 === true;
61709
+ } else
61710
+ t1 = true;
61711
+ else
61712
+ t1 = false;
61713
+ if (t1)
61522
61714
  return;
61523
61715
  if (!_this._warningsEmitted.add$1(0, new A.Tuple2(message, span, type$.Tuple2_String_SourceSpan)))
61524
61716
  return;
@@ -62420,10 +62612,12 @@ self.readline = _cli_pkg_requires.readline;
62420
62612
  _this.children._value = t6;
62421
62613
  t1._importer = oldImporter;
62422
62614
  t1.__stylesheet = t2;
62423
- t1.__root = t3;
62424
- t1.__parent = t4;
62425
- t1.__endOfImports = t5;
62426
- t1._outOfOrderImports = oldOutOfOrderImports;
62615
+ if (t8) {
62616
+ t1.__root = t3;
62617
+ t1.__parent = t4;
62618
+ t1.__endOfImports = t5;
62619
+ t1._outOfOrderImports = oldOutOfOrderImports;
62620
+ }
62427
62621
  t1._configuration = oldConfiguration;
62428
62622
  t1._inDependency = oldInDependency;
62429
62623
  },
@@ -62459,7 +62653,8 @@ self.readline = _cli_pkg_requires.readline;
62459
62653
  };
62460
62654
  A._EvaluateVisitor_visitIncludeRule_closure2.prototype = {
62461
62655
  call$1($content) {
62462
- return new A.UserDefinedCallable($content, this.$this._environment.closure$0(), type$.UserDefinedCallable_Environment);
62656
+ var t1 = this.$this;
62657
+ return new A.UserDefinedCallable($content, t1._environment.closure$0(), t1._inDependency, type$.UserDefinedCallable_Environment);
62463
62658
  },
62464
62659
  $signature: 268
62465
62660
  };
@@ -62788,7 +62983,7 @@ self.readline = _cli_pkg_requires.readline;
62788
62983
  var t1 = this.$this,
62789
62984
  t2 = this.node,
62790
62985
  t3 = this.inMinMax;
62791
- return A.SassCalculation_operateInternal(t1._binaryOperatorToCalculationOperator$1(t2.operator), t1._visitCalculationValue$2$inMinMax(t2.left, t3), t1._visitCalculationValue$2$inMinMax(t2.right, t3), t3);
62986
+ return A.SassCalculation_operateInternal(t1._binaryOperatorToCalculationOperator$1(t2.operator), t1._visitCalculationValue$2$inMinMax(t2.left, t3), t1._visitCalculationValue$2$inMinMax(t2.right, t3), t3, !t1._inSupportsDeclaration);
62792
62987
  },
62793
62988
  $signature: 85
62794
62989
  };
@@ -63692,59 +63887,23 @@ self.readline = _cli_pkg_requires.readline;
63692
63887
  return false;
63693
63888
  return right === B.CalculationOperator_Iem || right === B.CalculationOperator_uti;
63694
63889
  },
63695
- visitColor$1(value) {
63696
- var $name, hexLength, t2, t3, _this = this, _null = null,
63697
- t1 = _this._style === B.OutputStyle_compressed;
63698
- if (t1 && Math.abs(value._alpha - 1) < $.$get$epsilon()) {
63699
- $name = $.$get$namesByColor().$index(0, value);
63700
- hexLength = _this._canUseShortHex$1(value) ? 4 : 7;
63701
- if ($name != null && $name.length <= hexLength)
63702
- _this._serialize$_buffer.write$1(0, $name);
63703
- else {
63704
- t1 = _this._serialize$_buffer;
63705
- if (_this._canUseShortHex$1(value)) {
63706
- t1.writeCharCode$1(35);
63707
- t1.writeCharCode$1(A.hexCharFor(value.get$red(value) & 15));
63708
- t1.writeCharCode$1(A.hexCharFor(value.get$green(value) & 15));
63709
- t1.writeCharCode$1(A.hexCharFor(value.get$blue(value) & 15));
63710
- } else {
63711
- t1.writeCharCode$1(35);
63712
- _this._writeHexComponent$1(value.get$red(value));
63713
- _this._writeHexComponent$1(value.get$green(value));
63714
- _this._writeHexComponent$1(value.get$blue(value));
63715
- }
63716
- }
63717
- return;
63718
- }
63719
- t2 = value.originalSpan;
63720
- t3 = t2 == null;
63721
- if ((t3 ? _null : A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t2.file._decodedChars, t2._file$_start, t2._end), 0, _null)) != null) {
63722
- t1 = t3 ? _null : A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t2.file._decodedChars, t2._file$_start, t2._end), 0, _null);
63723
- _this._serialize$_buffer.write$1(0, t1);
63724
- } else {
63725
- t2 = $.$get$namesByColor();
63726
- if (t2.containsKey$1(value) && !(Math.abs(value._alpha - 0) < $.$get$epsilon()))
63727
- _this._serialize$_buffer.write$1(0, t2.$index(0, value));
63728
- else {
63729
- t2 = value._alpha;
63730
- t3 = _this._serialize$_buffer;
63731
- if (Math.abs(t2 - 1) < $.$get$epsilon()) {
63732
- t3.writeCharCode$1(35);
63733
- _this._writeHexComponent$1(value.get$red(value));
63734
- _this._writeHexComponent$1(value.get$green(value));
63735
- _this._writeHexComponent$1(value.get$blue(value));
63736
- } else {
63737
- t3.write$1(0, "rgba(" + value.get$red(value));
63738
- t3.write$1(0, t1 ? "," : ", ");
63739
- t3.write$1(0, value.get$green(value));
63740
- t3.write$1(0, t1 ? "," : ", ");
63741
- t3.write$1(0, value.get$blue(value));
63742
- t3.write$1(0, t1 ? "," : ", ");
63743
- _this._writeNumber$1(t2);
63744
- t3.writeCharCode$1(41);
63745
- }
63746
- }
63747
- }
63890
+ _writeRgb$1(value) {
63891
+ var t3,
63892
+ t1 = value._alpha,
63893
+ opaque = Math.abs(t1 - 1) < $.$get$epsilon(),
63894
+ t2 = this._serialize$_buffer;
63895
+ t2.write$1(0, opaque ? "rgb(" : "rgba(");
63896
+ t2.write$1(0, value.get$red(value));
63897
+ t3 = this._style === B.OutputStyle_compressed;
63898
+ t2.write$1(0, t3 ? "," : ", ");
63899
+ t2.write$1(0, value.get$green(value));
63900
+ t2.write$1(0, t3 ? "," : ", ");
63901
+ t2.write$1(0, value.get$blue(value));
63902
+ if (!opaque) {
63903
+ t2.write$1(0, t3 ? "," : ", ");
63904
+ this._writeNumber$1(t1);
63905
+ }
63906
+ t2.writeCharCode$1(41);
63748
63907
  },
63749
63908
  _canUseShortHex$1(color) {
63750
63909
  var t1 = color.get$red(color);
@@ -68796,7 +68955,7 @@ self.readline = _cli_pkg_requires.readline;
68796
68955
  visitFunctionRule$body$_EvaluateVisitor0(node) {
68797
68956
  var $async$goto = 0,
68798
68957
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value_2),
68799
- $async$returnValue, $async$self = this, t1, t2, t3, index, t4;
68958
+ $async$returnValue, $async$self = this, t1, t2, t3, t4, index, t5;
68800
68959
  var $async$visitFunctionRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
68801
68960
  if ($async$errorCode === 1)
68802
68961
  return A._asyncRethrow($async$result, $async$completer);
@@ -68806,11 +68965,12 @@ self.readline = _cli_pkg_requires.readline;
68806
68965
  // Function start
68807
68966
  t1 = $async$self._async_evaluate0$_environment;
68808
68967
  t2 = t1.closure$0();
68809
- t3 = t1._async_environment0$_functions;
68810
- index = t3.length - 1;
68811
- t4 = node.name;
68812
- t1._async_environment0$_functionIndices.$indexSet(0, t4, index);
68813
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable0(node, t2, type$.UserDefinedCallable_AsyncEnvironment_2));
68968
+ t3 = $async$self._async_evaluate0$_inDependency;
68969
+ t4 = t1._async_environment0$_functions;
68970
+ index = t4.length - 1;
68971
+ t5 = node.name;
68972
+ t1._async_environment0$_functionIndices.$indexSet(0, t5, index);
68973
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable0(node, t2, t3, type$.UserDefinedCallable_AsyncEnvironment_2));
68814
68974
  $async$returnValue = null;
68815
68975
  // goto return
68816
68976
  $async$goto = 1;
@@ -69264,7 +69424,7 @@ self.readline = _cli_pkg_requires.readline;
69264
69424
  visitMixinRule$body$_EvaluateVisitor0(node) {
69265
69425
  var $async$goto = 0,
69266
69426
  $async$completer = A._makeAsyncAwaitCompleter(type$.nullable_Value_2),
69267
- $async$returnValue, $async$self = this, t1, t2, t3, index, t4;
69427
+ $async$returnValue, $async$self = this, t1, t2, t3, t4, index, t5;
69268
69428
  var $async$visitMixinRule$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
69269
69429
  if ($async$errorCode === 1)
69270
69430
  return A._asyncRethrow($async$result, $async$completer);
@@ -69274,11 +69434,12 @@ self.readline = _cli_pkg_requires.readline;
69274
69434
  // Function start
69275
69435
  t1 = $async$self._async_evaluate0$_environment;
69276
69436
  t2 = t1.closure$0();
69277
- t3 = t1._async_environment0$_mixins;
69278
- index = t3.length - 1;
69279
- t4 = node.name;
69280
- t1._async_environment0$_mixinIndices.$indexSet(0, t4, index);
69281
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable0(node, t2, type$.UserDefinedCallable_AsyncEnvironment_2));
69437
+ t3 = $async$self._async_evaluate0$_inDependency;
69438
+ t4 = t1._async_environment0$_mixins;
69439
+ index = t4.length - 1;
69440
+ t5 = node.name;
69441
+ t1._async_environment0$_mixinIndices.$indexSet(0, t5, index);
69442
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable0(node, t2, t3, type$.UserDefinedCallable_AsyncEnvironment_2));
69282
69443
  $async$returnValue = null;
69283
69444
  // goto return
69284
69445
  $async$goto = 1;
@@ -69588,7 +69749,7 @@ self.readline = _cli_pkg_requires.readline;
69588
69749
  _visitSupportsCondition$body$_EvaluateVisitor0(condition) {
69589
69750
  var $async$goto = 0,
69590
69751
  $async$completer = A._makeAsyncAwaitCompleter(type$.String),
69591
- $async$returnValue, $async$self = this, t1, $async$temp1, $async$temp2;
69752
+ $async$returnValue, $async$self = this, t1, oldInSupportsDeclaration, result, $async$temp1, $async$temp2;
69592
69753
  var $async$_async_evaluate0$_visitSupportsCondition$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
69593
69754
  if ($async$errorCode === 1)
69594
69755
  return A._asyncRethrow($async$result, $async$completer);
@@ -69660,6 +69821,8 @@ self.readline = _cli_pkg_requires.readline;
69660
69821
  break;
69661
69822
  case 16:
69662
69823
  // then
69824
+ oldInSupportsDeclaration = $async$self._async_evaluate0$_inSupportsDeclaration;
69825
+ $async$self._async_evaluate0$_inSupportsDeclaration = true;
69663
69826
  $async$temp1 = A;
69664
69827
  $async$goto = 19;
69665
69828
  return A._asyncAwait($async$self._async_evaluate0$_evaluateToCss$1(condition.name), $async$_async_evaluate0$_visitSupportsCondition$1);
@@ -69672,7 +69835,9 @@ self.readline = _cli_pkg_requires.readline;
69672
69835
  return A._asyncAwait($async$self._async_evaluate0$_evaluateToCss$1(condition.value), $async$_async_evaluate0$_visitSupportsCondition$1);
69673
69836
  case 20:
69674
69837
  // returning from await.
69675
- $async$returnValue = $async$temp1 + $async$temp2.S($async$result) + ")";
69838
+ result = $async$temp1 + $async$temp2.S($async$result) + ")";
69839
+ $async$self._async_evaluate0$_inSupportsDeclaration = oldInSupportsDeclaration;
69840
+ $async$returnValue = result;
69676
69841
  // goto return
69677
69842
  $async$goto = 1;
69678
69843
  break;
@@ -70241,6 +70406,12 @@ self.readline = _cli_pkg_requires.readline;
70241
70406
  case 5:
70242
70407
  // after for
70243
70408
  $arguments = t1;
70409
+ if ($async$self._async_evaluate0$_inSupportsDeclaration) {
70410
+ $async$returnValue = new A.SassCalculation0(t4, A.List_List$unmodifiable($arguments, type$.Object));
70411
+ // goto return
70412
+ $async$goto = 1;
70413
+ break;
70414
+ }
70244
70415
  try {
70245
70416
  switch (t4) {
70246
70417
  case "calc":
@@ -70644,7 +70815,7 @@ self.readline = _cli_pkg_requires.readline;
70644
70815
  _runUserDefinedCallable$body$_EvaluateVisitor0($arguments, callable, nodeWithSpan, run, $V, $async$type) {
70645
70816
  var $async$goto = 0,
70646
70817
  $async$completer = A._makeAsyncAwaitCompleter($async$type),
70647
- $async$returnValue, $async$self = this, evaluated, $name;
70818
+ $async$returnValue, $async$self = this, oldCallable, result, evaluated, $name;
70648
70819
  var $async$_async_evaluate0$_runUserDefinedCallable$1$4 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
70649
70820
  if ($async$errorCode === 1)
70650
70821
  return A._asyncRethrow($async$result, $async$completer);
@@ -70660,11 +70831,15 @@ self.readline = _cli_pkg_requires.readline;
70660
70831
  $name = callable.declaration.name;
70661
70832
  if ($name !== "@content")
70662
70833
  $name += "()";
70834
+ oldCallable = $async$self._async_evaluate0$_currentCallable;
70835
+ $async$self._async_evaluate0$_currentCallable = callable;
70663
70836
  $async$goto = 4;
70664
70837
  return A._asyncAwait($async$self._async_evaluate0$_withStackFrame$1$3($name, nodeWithSpan, new A._EvaluateVisitor__runUserDefinedCallable_closure2($async$self, callable, evaluated, nodeWithSpan, run, $V), $V), $async$_async_evaluate0$_runUserDefinedCallable$1$4);
70665
70838
  case 4:
70666
70839
  // returning from await.
70667
- $async$returnValue = $async$result;
70840
+ result = $async$result;
70841
+ $async$self._async_evaluate0$_currentCallable = oldCallable;
70842
+ $async$returnValue = result;
70668
70843
  // goto return
70669
70844
  $async$goto = 1;
70670
70845
  break;
@@ -71212,7 +71387,7 @@ self.readline = _cli_pkg_requires.readline;
71212
71387
  visitStringExpression$body$_EvaluateVisitor0(node) {
71213
71388
  var $async$goto = 0,
71214
71389
  $async$completer = A._makeAsyncAwaitCompleter(type$.SassString_2),
71215
- $async$returnValue, $async$self = this, $async$temp1, $async$temp2;
71390
+ $async$returnValue, $async$self = this, t1, oldInSupportsDeclaration, $async$temp1;
71216
71391
  var $async$visitStringExpression$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
71217
71392
  if ($async$errorCode === 1)
71218
71393
  return A._asyncRethrow($async$result, $async$completer);
@@ -71220,13 +71395,16 @@ self.readline = _cli_pkg_requires.readline;
71220
71395
  switch ($async$goto) {
71221
71396
  case 0:
71222
71397
  // Function start
71223
- $async$temp1 = A;
71224
- $async$temp2 = J;
71398
+ oldInSupportsDeclaration = $async$self._async_evaluate0$_inSupportsDeclaration;
71399
+ $async$self._async_evaluate0$_inSupportsDeclaration = false;
71400
+ $async$temp1 = J;
71225
71401
  $async$goto = 3;
71226
71402
  return A._asyncAwait(A.mapAsync0(node.text.contents, new A._EvaluateVisitor_visitStringExpression_closure2($async$self), type$.Object, type$.String), $async$visitStringExpression$1);
71227
71403
  case 3:
71228
71404
  // returning from await.
71229
- $async$returnValue = new $async$temp1.SassString0($async$temp2.join$0$ax($async$result), node.hasQuotes);
71405
+ t1 = $async$temp1.join$0$ax($async$result);
71406
+ $async$self._async_evaluate0$_inSupportsDeclaration = oldInSupportsDeclaration;
71407
+ $async$returnValue = new A.SassString0(t1, node.hasQuotes);
71230
71408
  // goto return
71231
71409
  $async$goto = 1;
71232
71410
  break;
@@ -71656,7 +71834,7 @@ self.readline = _cli_pkg_requires.readline;
71656
71834
  _performInterpolation$body$_EvaluateVisitor0(interpolation, warnForColor) {
71657
71835
  var $async$goto = 0,
71658
71836
  $async$completer = A._makeAsyncAwaitCompleter(type$.String),
71659
- $async$returnValue, $async$self = this, $async$temp1;
71837
+ $async$returnValue, $async$self = this, result, oldInSupportsDeclaration, $async$temp1;
71660
71838
  var $async$_async_evaluate0$_performInterpolation$2$warnForColor = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
71661
71839
  if ($async$errorCode === 1)
71662
71840
  return A._asyncRethrow($async$result, $async$completer);
@@ -71664,12 +71842,16 @@ self.readline = _cli_pkg_requires.readline;
71664
71842
  switch ($async$goto) {
71665
71843
  case 0:
71666
71844
  // Function start
71845
+ oldInSupportsDeclaration = $async$self._async_evaluate0$_inSupportsDeclaration;
71846
+ $async$self._async_evaluate0$_inSupportsDeclaration = false;
71667
71847
  $async$temp1 = J;
71668
71848
  $async$goto = 3;
71669
71849
  return A._asyncAwait(A.mapAsync0(interpolation.contents, new A._EvaluateVisitor__performInterpolation_closure2($async$self, warnForColor, interpolation), type$.Object, type$.String), $async$_async_evaluate0$_performInterpolation$2$warnForColor);
71670
71850
  case 3:
71671
71851
  // returning from await.
71672
- $async$returnValue = $async$temp1.join$0$ax($async$result);
71852
+ result = $async$temp1.join$0$ax($async$result);
71853
+ $async$self._async_evaluate0$_inSupportsDeclaration = oldInSupportsDeclaration;
71854
+ $async$returnValue = result;
71673
71855
  // goto return
71674
71856
  $async$goto = 1;
71675
71857
  break;
@@ -71909,8 +72091,17 @@ self.readline = _cli_pkg_requires.readline;
71909
72091
  return this._async_evaluate0$_stackTrace$1(null);
71910
72092
  },
71911
72093
  _async_evaluate0$_warn$3$deprecation(message, span, deprecation) {
71912
- var _this = this;
71913
- if (_this._async_evaluate0$_quietDeps && _this._async_evaluate0$_inDependency)
72094
+ var t1, _this = this;
72095
+ if (_this._async_evaluate0$_quietDeps)
72096
+ if (!_this._async_evaluate0$_inDependency) {
72097
+ t1 = _this._async_evaluate0$_currentCallable;
72098
+ t1 = t1 == null ? null : t1.inDependency;
72099
+ t1 = t1 === true;
72100
+ } else
72101
+ t1 = true;
72102
+ else
72103
+ t1 = false;
72104
+ if (t1)
71914
72105
  return;
71915
72106
  if (!_this._async_evaluate0$_warningsEmitted.add$1(0, new A.Tuple2(message, span, type$.Tuple2_String_SourceSpan)))
71916
72107
  return;
@@ -72319,7 +72510,8 @@ self.readline = _cli_pkg_requires.readline;
72319
72510
  return A._asyncAwait(t1._async_evaluate0$_runFunctionCallable$3(invocation, t2.callable, t3), $async$call$1);
72320
72511
  case 6:
72321
72512
  // returning from await.
72322
- $async$returnValue = $async$result;
72513
+ t3 = $async$result;
72514
+ $async$returnValue = t3;
72323
72515
  // goto return
72324
72516
  $async$goto = 1;
72325
72517
  break;
@@ -73499,10 +73691,12 @@ self.readline = _cli_pkg_requires.readline;
73499
73691
  $async$self.children._value = t6;
73500
73692
  t1._async_evaluate0$_importer = oldImporter;
73501
73693
  t1._async_evaluate0$__stylesheet = t2;
73502
- t1._async_evaluate0$__root = t3;
73503
- t1._async_evaluate0$__parent = t4;
73504
- t1._async_evaluate0$__endOfImports = t5;
73505
- t1._async_evaluate0$_outOfOrderImports = oldOutOfOrderImports;
73694
+ if (t8) {
73695
+ t1._async_evaluate0$__root = t3;
73696
+ t1._async_evaluate0$__parent = t4;
73697
+ t1._async_evaluate0$__endOfImports = t5;
73698
+ t1._async_evaluate0$_outOfOrderImports = oldOutOfOrderImports;
73699
+ }
73506
73700
  t1._async_evaluate0$_configuration = oldConfiguration;
73507
73701
  t1._async_evaluate0$_inDependency = oldInDependency;
73508
73702
  // implicit return
@@ -73586,7 +73780,8 @@ self.readline = _cli_pkg_requires.readline;
73586
73780
  };
73587
73781
  A._EvaluateVisitor_visitIncludeRule_closure14.prototype = {
73588
73782
  call$1($content) {
73589
- return new A.UserDefinedCallable0($content, this.$this._async_evaluate0$_environment.closure$0(), type$.UserDefinedCallable_AsyncEnvironment_2);
73783
+ var t1 = this.$this;
73784
+ return new A.UserDefinedCallable0($content, t1._async_evaluate0$_environment.closure$0(), t1._async_evaluate0$_inDependency, type$.UserDefinedCallable_AsyncEnvironment_2);
73590
73785
  },
73591
73786
  $signature: 344
73592
73787
  };
@@ -74523,7 +74718,7 @@ self.readline = _cli_pkg_requires.readline;
74523
74718
  return A._asyncAwait(t1._async_evaluate0$_visitCalculationValue$2$inMinMax(t2.right, t3), $async$call$0);
74524
74719
  case 4:
74525
74720
  // returning from await.
74526
- $async$returnValue = $async$temp1.SassCalculation_operateInternal0($async$temp2, $async$temp3, $async$result, t3);
74721
+ $async$returnValue = $async$temp1.SassCalculation_operateInternal0($async$temp2, $async$temp3, $async$result, t3, !t1._async_evaluate0$_inSupportsDeclaration);
74527
74722
  // goto return
74528
74723
  $async$goto = 1;
74529
74724
  break;
@@ -75657,12 +75852,16 @@ self.readline = _cli_pkg_requires.readline;
75657
75852
  case 3:
75658
75853
  // returning from await.
75659
75854
  canonicalUrl = $async$result;
75660
- if (canonicalUrl != null) {
75661
- $async$returnValue = new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_AsyncImporter_Uri_Uri_2);
75855
+ if (canonicalUrl == null) {
75856
+ $async$returnValue = null;
75662
75857
  // goto return
75663
75858
  $async$goto = 1;
75664
75859
  break;
75665
75860
  }
75861
+ $async$returnValue = new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_AsyncImporter_Uri_Uri_2);
75862
+ // goto return
75863
+ $async$goto = 1;
75864
+ break;
75666
75865
  case 1:
75667
75866
  // return
75668
75867
  return A._asyncReturn($async$returnValue, $async$completer);
@@ -76558,7 +76757,7 @@ self.readline = _cli_pkg_requires.readline;
76558
76757
  if (argument instanceof A.SassString0 && !argument._string0$_hasQuotes && B.JSString_methods.contains$1(argument._string0$_text, $.$get$_microsoftFilterStart0()))
76559
76758
  return A._functionString0("alpha", $arguments);
76560
76759
  color = argument.assertColor$1("color");
76561
- return new A.UnitlessSassNumber0(color._color0$_alpha, null);
76760
+ return new A.UnitlessSassNumber0(color._color1$_alpha, null);
76562
76761
  },
76563
76762
  $signature: 3
76564
76763
  };
@@ -76589,7 +76788,7 @@ self.readline = _cli_pkg_requires.readline;
76589
76788
  if (t1.$index($arguments, 0) instanceof A.SassNumber0)
76590
76789
  return A._functionString0("opacity", $arguments);
76591
76790
  color = t1.$index($arguments, 0).assertColor$1("color");
76592
- return new A.UnitlessSassNumber0(color._color0$_alpha, null);
76791
+ return new A.UnitlessSassNumber0(color._color1$_alpha, null);
76593
76792
  },
76594
76793
  $signature: 3
76595
76794
  };
@@ -76670,7 +76869,7 @@ self.readline = _cli_pkg_requires.readline;
76670
76869
  return result;
76671
76870
  }
76672
76871
  color = argument.assertColor$1("color");
76673
- return new A.UnitlessSassNumber0(color._color0$_alpha, null);
76872
+ return new A.UnitlessSassNumber0(color._color1$_alpha, null);
76674
76873
  },
76675
76874
  $signature: 3
76676
76875
  };
@@ -76705,7 +76904,7 @@ self.readline = _cli_pkg_requires.readline;
76705
76904
  return result;
76706
76905
  }
76707
76906
  color = t1.$index($arguments, 0).assertColor$1("color");
76708
- return new A.UnitlessSassNumber0(color._color0$_alpha, null);
76907
+ return new A.UnitlessSassNumber0(color._color1$_alpha, null);
76709
76908
  },
76710
76909
  $signature: 3
76711
76910
  };
@@ -76793,7 +76992,7 @@ self.readline = _cli_pkg_requires.readline;
76793
76992
  call$1($arguments) {
76794
76993
  var color = J.$index$asx($arguments, 0).assertColor$1("color"),
76795
76994
  t1 = new A._ieHexStr_closure_hexString0();
76796
- return new A.SassString0("#" + A.S(t1.call$1(A.fuzzyRound0(color._color0$_alpha * 255))) + A.S(t1.call$1(color.get$red(color))) + A.S(t1.call$1(color.get$green(color))) + A.S(t1.call$1(color.get$blue(color))), false);
76995
+ return new A.SassString0("#" + A.S(t1.call$1(A.fuzzyRound0(color._color1$_alpha * 255))) + A.S(t1.call$1(color.get$red(color))) + A.S(t1.call$1(color.get$green(color))) + A.S(t1.call$1(color.get$blue(color))), false);
76797
76996
  },
76798
76997
  $signature: 14
76799
76998
  };
@@ -76930,7 +77129,7 @@ self.readline = _cli_pkg_requires.readline;
76930
77129
  t2 = B.JSNumber_methods.round$0(B.JSNumber_methods.clamp$2(green, 0, 255));
76931
77130
  t3 = B.JSNumber_methods.round$0(B.JSNumber_methods.clamp$2(blue, 0, 255));
76932
77131
  t4 = alpha == null ? null : B.JSNumber_methods.clamp$2(alpha, 0, 1);
76933
- J.set$dartValue$x(thisArg, A.SassColor$rgb0(t1, t2, t3, t4 == null ? 1 : t4, null));
77132
+ J.set$dartValue$x(thisArg, A.SassColor$rgb0(t1, t2, t3, t4 == null ? 1 : t4));
76934
77133
  },
76935
77134
  call$2(thisArg, redOrArgb) {
76936
77135
  return this.call$6(thisArg, redOrArgb, null, null, null, null);
@@ -76971,7 +77170,7 @@ self.readline = _cli_pkg_requires.readline;
76971
77170
  };
76972
77171
  A.legacyColorClass_closure3.prototype = {
76973
77172
  call$1(thisArg) {
76974
- return J.get$dartValue$x(thisArg)._color0$_alpha;
77173
+ return J.get$dartValue$x(thisArg)._color1$_alpha;
76975
77174
  },
76976
77175
  $signature: 375
76977
77176
  };
@@ -77009,7 +77208,7 @@ self.readline = _cli_pkg_requires.readline;
77009
77208
  jsClass = t1._as(A.allowInteropCaptureThisNamed("sass.SassColor", new A.colorClass__closure()));
77010
77209
  J.get$$prototype$x(jsClass).change = A.allowInteropCaptureThisNamed("change", new A.colorClass__closure0());
77011
77210
  A.LinkedHashMap_LinkedHashMap$_literal(["red", new A.colorClass__closure1(), "green", new A.colorClass__closure2(), "blue", new A.colorClass__closure3(), "hue", new A.colorClass__closure4(), "saturation", new A.colorClass__closure5(), "lightness", new A.colorClass__closure6(), "whiteness", new A.colorClass__closure7(), "blackness", new A.colorClass__closure8(), "alpha", new A.colorClass__closure9()], type$.String, type$.Function).forEach$1(0, A.JSClassExtension_get_defineGetter(jsClass));
77012
- A.JSClassExtension_injectSuperclass(t1._as(A.SassColor$rgb0(0, 0, 0, null, null).constructor), jsClass);
77211
+ A.JSClassExtension_injectSuperclass(t1._as(A.SassColor$rgb0(0, 0, 0, null).constructor), jsClass);
77013
77212
  return jsClass;
77014
77213
  },
77015
77214
  $signature: 25
@@ -77027,7 +77226,7 @@ self.readline = _cli_pkg_requires.readline;
77027
77226
  t3 = A.fuzzyRound0(t3);
77028
77227
  t4 = t1.get$blue(color);
77029
77228
  t4.toString;
77030
- return A.SassColor$rgb0(t2, t3, A.fuzzyRound0(t4), t1.get$alpha(color), null);
77229
+ return A.SassColor$rgb0(t2, t3, A.fuzzyRound0(t4), t1.get$alpha(color));
77031
77230
  } else if (t1.get$saturation(color) != null) {
77032
77231
  t2 = t1.get$hue(color);
77033
77232
  t2.toString;
@@ -77035,7 +77234,7 @@ self.readline = _cli_pkg_requires.readline;
77035
77234
  t3.toString;
77036
77235
  t4 = t1.get$lightness(color);
77037
77236
  t4.toString;
77038
- return A.SassColor$hsl0(t2, t3, t4, t1.get$alpha(color));
77237
+ return A.SassColor$hsl(t2, t3, t4, t1.get$alpha(color));
77039
77238
  } else {
77040
77239
  t2 = t1.get$hue(color);
77041
77240
  t2.toString;
@@ -77063,7 +77262,7 @@ self.readline = _cli_pkg_requires.readline;
77063
77262
  if (t4 == null)
77064
77263
  t4 = $self.get$blackness($self);
77065
77264
  t1 = t1.get$alpha(options);
77066
- return $self.changeHwb$4$alpha$blackness$hue$whiteness(t1 == null ? $self._color0$_alpha : t1, t4, t2, t3);
77265
+ return $self.changeHwb$4$alpha$blackness$hue$whiteness(t1 == null ? $self._color1$_alpha : t1, t4, t2, t3);
77067
77266
  } else if (t1.get$hue(options) != null || t1.get$saturation(options) != null || t1.get$lightness(options) != null) {
77068
77267
  t2 = t1.get$hue(options);
77069
77268
  if (t2 == null)
@@ -77075,7 +77274,7 @@ self.readline = _cli_pkg_requires.readline;
77075
77274
  if (t4 == null)
77076
77275
  t4 = $self.get$lightness($self);
77077
77276
  t1 = t1.get$alpha(options);
77078
- return $self.changeHsl$4$alpha$hue$lightness$saturation(t1 == null ? $self._color0$_alpha : t1, t2, t4, t3);
77277
+ return $self.changeHsl$4$alpha$hue$lightness$saturation(t1 == null ? $self._color1$_alpha : t1, t2, t4, t3);
77079
77278
  } else if (t1.get$red(options) != null || t1.get$green(options) != null || t1.get$blue(options) != null) {
77080
77279
  t2 = A.NullableExtension_andThen0(t1.get$red(options), A.number2__fuzzyRound$closure());
77081
77280
  if (t2 == null)
@@ -77087,10 +77286,10 @@ self.readline = _cli_pkg_requires.readline;
77087
77286
  if (t4 == null)
77088
77287
  t4 = $self.get$blue($self);
77089
77288
  t1 = t1.get$alpha(options);
77090
- return $self.changeRgb$4$alpha$blue$green$red(t1 == null ? $self._color0$_alpha : t1, t4, t3, t2);
77289
+ return $self.changeRgb$4$alpha$blue$green$red(t1 == null ? $self._color1$_alpha : t1, t4, t3, t2);
77091
77290
  } else {
77092
77291
  t1 = t1.get$alpha(options);
77093
- return $self.changeAlpha$1(t1 == null ? $self._color0$_alpha : t1);
77292
+ return $self.changeAlpha$1(t1 == null ? $self._color1$_alpha : t1);
77094
77293
  }
77095
77294
  },
77096
77295
  $signature: 378
@@ -77145,7 +77344,7 @@ self.readline = _cli_pkg_requires.readline;
77145
77344
  };
77146
77345
  A.colorClass__closure9.prototype = {
77147
77346
  call$1($self) {
77148
- return $self._color0$_alpha;
77347
+ return $self._color1$_alpha;
77149
77348
  },
77150
77349
  $signature: 57
77151
77350
  };
@@ -77153,49 +77352,49 @@ self.readline = _cli_pkg_requires.readline;
77153
77352
  A.SassColor0.prototype = {
77154
77353
  get$red(_) {
77155
77354
  var t1;
77156
- if (this._color0$_red == null)
77157
- this._color0$_hslToRgb$0();
77158
- t1 = this._color0$_red;
77355
+ if (this._color1$_red == null)
77356
+ this._color1$_hslToRgb$0();
77357
+ t1 = this._color1$_red;
77159
77358
  t1.toString;
77160
77359
  return t1;
77161
77360
  },
77162
77361
  get$green(_) {
77163
77362
  var t1;
77164
- if (this._color0$_green == null)
77165
- this._color0$_hslToRgb$0();
77166
- t1 = this._color0$_green;
77363
+ if (this._color1$_green == null)
77364
+ this._color1$_hslToRgb$0();
77365
+ t1 = this._color1$_green;
77167
77366
  t1.toString;
77168
77367
  return t1;
77169
77368
  },
77170
77369
  get$blue(_) {
77171
77370
  var t1;
77172
- if (this._color0$_blue == null)
77173
- this._color0$_hslToRgb$0();
77174
- t1 = this._color0$_blue;
77371
+ if (this._color1$_blue == null)
77372
+ this._color1$_hslToRgb$0();
77373
+ t1 = this._color1$_blue;
77175
77374
  t1.toString;
77176
77375
  return t1;
77177
77376
  },
77178
77377
  get$hue(_) {
77179
77378
  var t1;
77180
- if (this._color0$_hue == null)
77181
- this._color0$_rgbToHsl$0();
77182
- t1 = this._color0$_hue;
77379
+ if (this._color1$_hue == null)
77380
+ this._color1$_rgbToHsl$0();
77381
+ t1 = this._color1$_hue;
77183
77382
  t1.toString;
77184
77383
  return t1;
77185
77384
  },
77186
77385
  get$saturation(_) {
77187
77386
  var t1;
77188
- if (this._color0$_saturation == null)
77189
- this._color0$_rgbToHsl$0();
77190
- t1 = this._color0$_saturation;
77387
+ if (this._color1$_saturation == null)
77388
+ this._color1$_rgbToHsl$0();
77389
+ t1 = this._color1$_saturation;
77191
77390
  t1.toString;
77192
77391
  return t1;
77193
77392
  },
77194
77393
  get$lightness(_) {
77195
77394
  var t1;
77196
- if (this._color0$_lightness == null)
77197
- this._color0$_rgbToHsl$0();
77198
- t1 = this._color0$_lightness;
77395
+ if (this._color1$_lightness == null)
77396
+ this._color1$_rgbToHsl$0();
77397
+ t1 = this._color1$_lightness;
77199
77398
  t1.toString;
77200
77399
  return t1;
77201
77400
  },
@@ -77208,7 +77407,73 @@ self.readline = _cli_pkg_requires.readline;
77208
77407
  return 100 - Math.max(Math.max(_this.get$red(_this), _this.get$green(_this)), _this.get$blue(_this)) / 255 * 100;
77209
77408
  },
77210
77409
  accept$1$1(visitor) {
77211
- return visitor.visitColor$1(this);
77410
+ var $name, hexLength, t1, format, t2, opaque, _this = this;
77411
+ if (visitor._serialize0$_style === B.OutputStyle_compressed0)
77412
+ if (!(Math.abs(_this._color1$_alpha - 1) < $.$get$epsilon0()))
77413
+ visitor._serialize0$_writeRgb$1(_this);
77414
+ else {
77415
+ $name = $.$get$namesByColor0().$index(0, _this);
77416
+ hexLength = visitor._serialize0$_canUseShortHex$1(_this) ? 4 : 7;
77417
+ if ($name != null && $name.length <= hexLength)
77418
+ visitor._serialize0$_buffer.write$1(0, $name);
77419
+ else {
77420
+ t1 = visitor._serialize0$_buffer;
77421
+ if (visitor._serialize0$_canUseShortHex$1(_this)) {
77422
+ t1.writeCharCode$1(35);
77423
+ t1.writeCharCode$1(A.hexCharFor0(_this.get$red(_this) & 15));
77424
+ t1.writeCharCode$1(A.hexCharFor0(_this.get$green(_this) & 15));
77425
+ t1.writeCharCode$1(A.hexCharFor0(_this.get$blue(_this) & 15));
77426
+ } else {
77427
+ t1.writeCharCode$1(35);
77428
+ visitor._serialize0$_writeHexComponent$1(_this.get$red(_this));
77429
+ visitor._serialize0$_writeHexComponent$1(_this.get$green(_this));
77430
+ visitor._serialize0$_writeHexComponent$1(_this.get$blue(_this));
77431
+ }
77432
+ }
77433
+ }
77434
+ else {
77435
+ format = _this.format;
77436
+ if (format != null)
77437
+ if (format === B._ColorFormatEnum_rgbFunction0)
77438
+ visitor._serialize0$_writeRgb$1(_this);
77439
+ else {
77440
+ t1 = visitor._serialize0$_buffer;
77441
+ if (format === B._ColorFormatEnum_hslFunction0) {
77442
+ t2 = _this._color1$_alpha;
77443
+ opaque = Math.abs(t2 - 1) < $.$get$epsilon0();
77444
+ t1.write$1(0, opaque ? "hsl(" : "hsla(");
77445
+ visitor._serialize0$_writeNumber$1(_this.get$hue(_this));
77446
+ t1.write$1(0, "deg");
77447
+ t1.write$1(0, ", ");
77448
+ visitor._serialize0$_writeNumber$1(_this.get$saturation(_this));
77449
+ t1.writeCharCode$1(37);
77450
+ t1.write$1(0, ", ");
77451
+ visitor._serialize0$_writeNumber$1(_this.get$lightness(_this));
77452
+ t1.writeCharCode$1(37);
77453
+ if (!opaque) {
77454
+ t1.write$1(0, ", ");
77455
+ visitor._serialize0$_writeNumber$1(t2);
77456
+ }
77457
+ t1.writeCharCode$1(41);
77458
+ } else {
77459
+ t2 = type$.SpanColorFormat_2._as(format)._color1$_span;
77460
+ t1.write$1(0, A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t2.file._decodedChars, t2._file$_start, t2._end), 0, null));
77461
+ }
77462
+ }
77463
+ else {
77464
+ t1 = $.$get$namesByColor0();
77465
+ if (t1.containsKey$1(_this) && !(Math.abs(_this._color1$_alpha - 0) < $.$get$epsilon0()))
77466
+ visitor._serialize0$_buffer.write$1(0, t1.$index(0, _this));
77467
+ else if (Math.abs(_this._color1$_alpha - 1) < $.$get$epsilon0()) {
77468
+ visitor._serialize0$_buffer.writeCharCode$1(35);
77469
+ visitor._serialize0$_writeHexComponent$1(_this.get$red(_this));
77470
+ visitor._serialize0$_writeHexComponent$1(_this.get$green(_this));
77471
+ visitor._serialize0$_writeHexComponent$1(_this.get$blue(_this));
77472
+ } else
77473
+ visitor._serialize0$_writeRgb$1(_this);
77474
+ }
77475
+ }
77476
+ return null;
77212
77477
  },
77213
77478
  accept$1(visitor) {
77214
77479
  return this.accept$1$1(visitor, type$.dynamic);
@@ -77221,7 +77486,7 @@ self.readline = _cli_pkg_requires.readline;
77221
77486
  t1 = red == null ? _this.get$red(_this) : red,
77222
77487
  t2 = green == null ? _this.get$green(_this) : green,
77223
77488
  t3 = blue == null ? _this.get$blue(_this) : blue;
77224
- return A.SassColor$rgb0(t1, t2, t3, alpha == null ? _this._color0$_alpha : alpha, null);
77489
+ return A.SassColor$rgb0(t1, t2, t3, alpha == null ? _this._color1$_alpha : alpha);
77225
77490
  },
77226
77491
  changeRgb$3$blue$green$red(blue, green, red) {
77227
77492
  return this.changeRgb$4$alpha$blue$green$red(null, blue, green, red);
@@ -77243,7 +77508,7 @@ self.readline = _cli_pkg_requires.readline;
77243
77508
  t1 = hue == null ? _this.get$hue(_this) : hue,
77244
77509
  t2 = saturation == null ? _this.get$saturation(_this) : saturation,
77245
77510
  t3 = lightness == null ? _this.get$lightness(_this) : lightness;
77246
- return A.SassColor$hsl0(t1, t2, t3, alpha == null ? _this._color0$_alpha : alpha);
77511
+ return A.SassColor$hsl(t1, t2, t3, alpha == null ? _this._color1$_alpha : alpha);
77247
77512
  },
77248
77513
  changeHsl$1$saturation(saturation) {
77249
77514
  return this.changeHsl$4$alpha$hue$lightness$saturation(null, null, null, saturation);
@@ -77260,7 +77525,7 @@ self.readline = _cli_pkg_requires.readline;
77260
77525
  },
77261
77526
  changeAlpha$1(alpha) {
77262
77527
  var _this = this;
77263
- return new A.SassColor0(_this._color0$_red, _this._color0$_green, _this._color0$_blue, _this._color0$_hue, _this._color0$_saturation, _this._color0$_lightness, A.fuzzyAssertRange0(alpha, 0, 1, "alpha"), null);
77528
+ return new A.SassColor0(_this._color1$_red, _this._color1$_green, _this._color1$_blue, _this._color1$_hue, _this._color1$_saturation, _this._color1$_lightness, A.fuzzyAssertRange0(alpha, 0, 1, "alpha"), null);
77264
77529
  },
77265
77530
  plus$1(other) {
77266
77531
  if (!(other instanceof A.SassNumber0) && !(other instanceof A.SassColor0))
@@ -77281,13 +77546,13 @@ self.readline = _cli_pkg_requires.readline;
77281
77546
  var _this = this;
77282
77547
  if (other == null)
77283
77548
  return false;
77284
- return other instanceof A.SassColor0 && other.get$red(other) === _this.get$red(_this) && other.get$green(other) === _this.get$green(_this) && other.get$blue(other) === _this.get$blue(_this) && other._color0$_alpha === _this._color0$_alpha;
77549
+ return other instanceof A.SassColor0 && other.get$red(other) === _this.get$red(_this) && other.get$green(other) === _this.get$green(_this) && other.get$blue(other) === _this.get$blue(_this) && other._color1$_alpha === _this._color1$_alpha;
77285
77550
  },
77286
77551
  get$hashCode(_) {
77287
77552
  var _this = this;
77288
- return B.JSInt_methods.get$hashCode(_this.get$red(_this)) ^ B.JSInt_methods.get$hashCode(_this.get$green(_this)) ^ B.JSInt_methods.get$hashCode(_this.get$blue(_this)) ^ B.JSNumber_methods.get$hashCode(_this._color0$_alpha);
77553
+ return B.JSInt_methods.get$hashCode(_this.get$red(_this)) ^ B.JSInt_methods.get$hashCode(_this.get$green(_this)) ^ B.JSInt_methods.get$hashCode(_this.get$blue(_this)) ^ B.JSNumber_methods.get$hashCode(_this._color1$_alpha);
77289
77554
  },
77290
- _color0$_rgbToHsl$0() {
77555
+ _color1$_rgbToHsl$0() {
77291
77556
  var t2, lightness, _this = this,
77292
77557
  scaledRed = _this.get$red(_this) / 255,
77293
77558
  scaledGreen = _this.get$green(_this) / 255,
@@ -77297,36 +77562,36 @@ self.readline = _cli_pkg_requires.readline;
77297
77562
  delta = max - min,
77298
77563
  t1 = max === min;
77299
77564
  if (t1)
77300
- _this._color0$_hue = 0;
77565
+ _this._color1$_hue = 0;
77301
77566
  else if (max === scaledRed)
77302
- _this._color0$_hue = B.JSNumber_methods.$mod(60 * (scaledGreen - scaledBlue) / delta, 360);
77567
+ _this._color1$_hue = B.JSNumber_methods.$mod(60 * (scaledGreen - scaledBlue) / delta, 360);
77303
77568
  else if (max === scaledGreen)
77304
- _this._color0$_hue = B.JSNumber_methods.$mod(120 + 60 * (scaledBlue - scaledRed) / delta, 360);
77569
+ _this._color1$_hue = B.JSNumber_methods.$mod(120 + 60 * (scaledBlue - scaledRed) / delta, 360);
77305
77570
  else if (max === scaledBlue)
77306
- _this._color0$_hue = B.JSNumber_methods.$mod(240 + 60 * (scaledRed - scaledGreen) / delta, 360);
77571
+ _this._color1$_hue = B.JSNumber_methods.$mod(240 + 60 * (scaledRed - scaledGreen) / delta, 360);
77307
77572
  t2 = max + min;
77308
77573
  lightness = 50 * t2;
77309
- _this._color0$_lightness = lightness;
77574
+ _this._color1$_lightness = lightness;
77310
77575
  if (t1)
77311
- _this._color0$_saturation = 0;
77576
+ _this._color1$_saturation = 0;
77312
77577
  else {
77313
77578
  t1 = 100 * delta;
77314
77579
  if (lightness < 50)
77315
- _this._color0$_saturation = t1 / t2;
77580
+ _this._color1$_saturation = t1 / t2;
77316
77581
  else
77317
- _this._color0$_saturation = t1 / (2 - max - min);
77582
+ _this._color1$_saturation = t1 / (2 - max - min);
77318
77583
  }
77319
77584
  },
77320
- _color0$_hslToRgb$0() {
77585
+ _color1$_hslToRgb$0() {
77321
77586
  var _this = this,
77322
77587
  scaledHue = _this.get$hue(_this) / 360,
77323
77588
  scaledSaturation = _this.get$saturation(_this) / 100,
77324
77589
  scaledLightness = _this.get$lightness(_this) / 100,
77325
77590
  m2 = scaledLightness <= 0.5 ? scaledLightness * (scaledSaturation + 1) : scaledLightness + scaledSaturation - scaledLightness * scaledSaturation,
77326
77591
  m1 = scaledLightness * 2 - m2;
77327
- _this._color0$_red = A.fuzzyRound0(A.SassColor__hueToRgb0(m1, m2, scaledHue + 0.3333333333333333) * 255);
77328
- _this._color0$_green = A.fuzzyRound0(A.SassColor__hueToRgb0(m1, m2, scaledHue) * 255);
77329
- _this._color0$_blue = A.fuzzyRound0(A.SassColor__hueToRgb0(m1, m2, scaledHue - 0.3333333333333333) * 255);
77592
+ _this._color1$_red = A.fuzzyRound0(A.SassColor__hueToRgb0(m1, m2, scaledHue + 0.3333333333333333) * 255);
77593
+ _this._color1$_green = A.fuzzyRound0(A.SassColor__hueToRgb0(m1, m2, scaledHue) * 255);
77594
+ _this._color1$_blue = A.fuzzyRound0(A.SassColor__hueToRgb0(m1, m2, scaledHue - 0.3333333333333333) * 255);
77330
77595
  }
77331
77596
  };
77332
77597
  A.SassColor_SassColor$hwb_toRgb0.prototype = {
@@ -77335,6 +77600,12 @@ self.readline = _cli_pkg_requires.readline;
77335
77600
  },
77336
77601
  $signature: 43
77337
77602
  };
77603
+ A._ColorFormatEnum0.prototype = {
77604
+ toString$0(_) {
77605
+ return this._color1$_name;
77606
+ }
77607
+ };
77608
+ A.SpanColorFormat0.prototype = {};
77338
77609
  A.ModifiableCssComment0.prototype = {
77339
77610
  accept$1$1(visitor) {
77340
77611
  return visitor.visitCssComment$1(this);
@@ -79230,11 +79501,12 @@ self.readline = _cli_pkg_requires.readline;
79230
79501
  visitFunctionRule$1(node) {
79231
79502
  var t1 = this._evaluate0$_environment,
79232
79503
  t2 = t1.closure$0(),
79233
- t3 = t1._environment0$_functions,
79234
- index = t3.length - 1,
79235
- t4 = node.name;
79236
- t1._environment0$_functionIndices.$indexSet(0, t4, index);
79237
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable0(node, t2, type$.UserDefinedCallable_Environment_2));
79504
+ t3 = this._evaluate0$_inDependency,
79505
+ t4 = t1._environment0$_functions,
79506
+ index = t4.length - 1,
79507
+ t5 = node.name;
79508
+ t1._environment0$_functionIndices.$indexSet(0, t5, index);
79509
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable0(node, t2, t3, type$.UserDefinedCallable_Environment_2));
79238
79510
  return null;
79239
79511
  },
79240
79512
  visitIfRule$1(node) {
@@ -79391,11 +79663,12 @@ self.readline = _cli_pkg_requires.readline;
79391
79663
  visitMixinRule$1(node) {
79392
79664
  var t1 = this._evaluate0$_environment,
79393
79665
  t2 = t1.closure$0(),
79394
- t3 = t1._environment0$_mixins,
79395
- index = t3.length - 1,
79396
- t4 = node.name;
79397
- t1._environment0$_mixinIndices.$indexSet(0, t4, index);
79398
- J.$indexSet$ax(t3[index], t4, new A.UserDefinedCallable0(node, t2, type$.UserDefinedCallable_Environment_2));
79666
+ t3 = this._evaluate0$_inDependency,
79667
+ t4 = t1._environment0$_mixins,
79668
+ index = t4.length - 1,
79669
+ t5 = node.name;
79670
+ t1._environment0$_mixinIndices.$indexSet(0, t5, index);
79671
+ J.$indexSet$ax(t4[index], t5, new A.UserDefinedCallable0(node, t2, t3, type$.UserDefinedCallable_Environment_2));
79399
79672
  return null;
79400
79673
  },
79401
79674
  visitLoudComment$1(node) {
@@ -79487,7 +79760,7 @@ self.readline = _cli_pkg_requires.readline;
79487
79760
  return null;
79488
79761
  },
79489
79762
  _evaluate0$_visitSupportsCondition$1(condition) {
79490
- var t1, t2, _this = this;
79763
+ var t1, oldInSupportsDeclaration, t2, result, _this = this;
79491
79764
  if (condition instanceof A.SupportsOperation0) {
79492
79765
  t1 = condition.operator;
79493
79766
  return _this._evaluate0$_parenthesize$2(condition.left, t1) + " " + t1 + " " + _this._evaluate0$_parenthesize$2(condition.right, t1);
@@ -79497,10 +79770,14 @@ self.readline = _cli_pkg_requires.readline;
79497
79770
  t1 = condition.expression;
79498
79771
  return _this._evaluate0$_serialize$3$quote(t1.accept$1(_this), t1, false);
79499
79772
  } else if (condition instanceof A.SupportsDeclaration0) {
79773
+ oldInSupportsDeclaration = _this._evaluate0$_inSupportsDeclaration;
79774
+ _this._evaluate0$_inSupportsDeclaration = true;
79500
79775
  t1 = condition.name;
79501
79776
  t1 = "(" + _this._evaluate0$_serialize$3$quote(t1.accept$1(_this), t1, true) + ":";
79502
79777
  t2 = condition.value;
79503
- return t1 + (condition.get$isCustomProperty() ? "" : " ") + _this._evaluate0$_serialize$3$quote(t2.accept$1(_this), t2, true) + ")";
79778
+ result = t1 + (condition.get$isCustomProperty() ? "" : " ") + _this._evaluate0$_serialize$3$quote(t2.accept$1(_this), t2, true) + ")";
79779
+ _this._evaluate0$_inSupportsDeclaration = oldInSupportsDeclaration;
79780
+ return result;
79504
79781
  } else if (condition instanceof A.SupportsFunction0)
79505
79782
  return _this._evaluate0$_performInterpolation$1(condition.name) + "(" + _this._evaluate0$_performInterpolation$1(condition.$arguments) + ")";
79506
79783
  else if (condition instanceof A.SupportsAnything0)
@@ -79638,13 +79915,15 @@ self.readline = _cli_pkg_requires.readline;
79638
79915
  return node.expression.accept$1(this);
79639
79916
  },
79640
79917
  visitCalculationExpression$1(node) {
79641
- var $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception,
79918
+ var $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, _this = this,
79642
79919
  t1 = A._setArrayType([], type$.JSArray_Object);
79643
79920
  for (t2 = node.$arguments, t3 = t2.length, t4 = node.name, t5 = t4 !== "min", t6 = t4 === "max", _i = 0; _i < t3; ++_i) {
79644
79921
  argument = t2[_i];
79645
- t1.push(this._evaluate0$_visitCalculationValue$2$inMinMax(argument, !t5 || t6));
79922
+ t1.push(_this._evaluate0$_visitCalculationValue$2$inMinMax(argument, !t5 || t6));
79646
79923
  }
79647
79924
  $arguments = t1;
79925
+ if (_this._evaluate0$_inSupportsDeclaration)
79926
+ return new A.SassCalculation0(t4, A.List_List$unmodifiable($arguments, type$.Object));
79648
79927
  try {
79649
79928
  switch (t4) {
79650
79929
  case "calc":
@@ -79670,8 +79949,8 @@ self.readline = _cli_pkg_requires.readline;
79670
79949
  if (t1 instanceof A.SassScriptException0) {
79671
79950
  error = t1;
79672
79951
  stackTrace = A.getTraceFromException(exception);
79673
- this._evaluate0$_verifyCompatibleNumbers$2($arguments, t2);
79674
- A.throwWithTrace0(this._evaluate0$_exception$2(error.message, node.span), stackTrace);
79952
+ _this._evaluate0$_verifyCompatibleNumbers$2($arguments, t2);
79953
+ A.throwWithTrace0(_this._evaluate0$_exception$2(error.message, node.span), stackTrace);
79675
79954
  } else
79676
79955
  throw exception;
79677
79956
  }
@@ -79799,11 +80078,16 @@ self.readline = _cli_pkg_requires.readline;
79799
80078
  return this._evaluate0$_builtInFunctions.$index(0, $name);
79800
80079
  },
79801
80080
  _evaluate0$_runUserDefinedCallable$1$4($arguments, callable, nodeWithSpan, run, $V) {
79802
- var evaluated = this._evaluate0$_evaluateArguments$1($arguments),
80081
+ var oldCallable, result, _this = this,
80082
+ evaluated = _this._evaluate0$_evaluateArguments$1($arguments),
79803
80083
  $name = callable.declaration.name;
79804
80084
  if ($name !== "@content")
79805
80085
  $name += "()";
79806
- return this._evaluate0$_withStackFrame$3($name, nodeWithSpan, new A._EvaluateVisitor__runUserDefinedCallable_closure1(this, callable, evaluated, nodeWithSpan, run, $V));
80086
+ oldCallable = _this._evaluate0$_currentCallable;
80087
+ _this._evaluate0$_currentCallable = callable;
80088
+ result = _this._evaluate0$_withStackFrame$3($name, nodeWithSpan, new A._EvaluateVisitor__runUserDefinedCallable_closure1(_this, callable, evaluated, nodeWithSpan, run, $V));
80089
+ _this._evaluate0$_currentCallable = oldCallable;
80090
+ return result;
79807
80091
  },
79808
80092
  _evaluate0$_runFunctionCallable$3($arguments, callable, nodeWithSpan) {
79809
80093
  var t1, t2, t3, first, _i, argument, restArg, rest, _this = this;
@@ -80033,8 +80317,13 @@ self.readline = _cli_pkg_requires.readline;
80033
80317
  return t1 == null ? B.C__SassNull0 : t1;
80034
80318
  },
80035
80319
  visitStringExpression$1(node) {
80036
- var t1 = node.text.contents;
80037
- return new A.SassString0(new A.MappedListIterable(t1, new A._EvaluateVisitor_visitStringExpression_closure1(this), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0), node.hasQuotes);
80320
+ var t1, _this = this,
80321
+ oldInSupportsDeclaration = _this._evaluate0$_inSupportsDeclaration;
80322
+ _this._evaluate0$_inSupportsDeclaration = false;
80323
+ t1 = node.text.contents;
80324
+ t1 = new A.MappedListIterable(t1, new A._EvaluateVisitor_visitStringExpression_closure1(_this), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0);
80325
+ _this._evaluate0$_inSupportsDeclaration = oldInSupportsDeclaration;
80326
+ return new A.SassString0(t1, node.hasQuotes);
80038
80327
  },
80039
80328
  visitCssAtRule$1(node) {
80040
80329
  var wasInKeyframes, wasInUnknownAtRule, t1, _this = this;
@@ -80170,8 +80459,13 @@ self.readline = _cli_pkg_requires.readline;
80170
80459
  return this._evaluate0$_interpolationToValue$3$trim$warnForColor(interpolation, false, warnForColor);
80171
80460
  },
80172
80461
  _evaluate0$_performInterpolation$2$warnForColor(interpolation, warnForColor) {
80173
- var t1 = interpolation.contents;
80174
- return new A.MappedListIterable(t1, new A._EvaluateVisitor__performInterpolation_closure1(this, warnForColor, interpolation), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0);
80462
+ var t1, result, _this = this,
80463
+ oldInSupportsDeclaration = _this._evaluate0$_inSupportsDeclaration;
80464
+ _this._evaluate0$_inSupportsDeclaration = false;
80465
+ t1 = interpolation.contents;
80466
+ result = new A.MappedListIterable(t1, new A._EvaluateVisitor__performInterpolation_closure1(_this, warnForColor, interpolation), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,String>")).join$0(0);
80467
+ _this._evaluate0$_inSupportsDeclaration = oldInSupportsDeclaration;
80468
+ return result;
80175
80469
  },
80176
80470
  _evaluate0$_performInterpolation$1(interpolation) {
80177
80471
  return this._evaluate0$_performInterpolation$2$warnForColor(interpolation, false);
@@ -80282,8 +80576,17 @@ self.readline = _cli_pkg_requires.readline;
80282
80576
  return this._evaluate0$_stackTrace$1(null);
80283
80577
  },
80284
80578
  _evaluate0$_warn$3$deprecation(message, span, deprecation) {
80285
- var _this = this;
80286
- if (_this._evaluate0$_quietDeps && _this._evaluate0$_inDependency)
80579
+ var t1, _this = this;
80580
+ if (_this._evaluate0$_quietDeps)
80581
+ if (!_this._evaluate0$_inDependency) {
80582
+ t1 = _this._evaluate0$_currentCallable;
80583
+ t1 = t1 == null ? null : t1.inDependency;
80584
+ t1 = t1 === true;
80585
+ } else
80586
+ t1 = true;
80587
+ else
80588
+ t1 = false;
80589
+ if (t1)
80287
80590
  return;
80288
80591
  if (!_this._evaluate0$_warningsEmitted.add$1(0, new A.Tuple2(message, span, type$.Tuple2_String_SourceSpan)))
80289
80592
  return;
@@ -81158,10 +81461,12 @@ self.readline = _cli_pkg_requires.readline;
81158
81461
  _this.children._value = t6;
81159
81462
  t1._evaluate0$_importer = oldImporter;
81160
81463
  t1._evaluate0$__stylesheet = t2;
81161
- t1._evaluate0$__root = t3;
81162
- t1._evaluate0$__parent = t4;
81163
- t1._evaluate0$__endOfImports = t5;
81164
- t1._evaluate0$_outOfOrderImports = oldOutOfOrderImports;
81464
+ if (t8) {
81465
+ t1._evaluate0$__root = t3;
81466
+ t1._evaluate0$__parent = t4;
81467
+ t1._evaluate0$__endOfImports = t5;
81468
+ t1._evaluate0$_outOfOrderImports = oldOutOfOrderImports;
81469
+ }
81165
81470
  t1._evaluate0$_configuration = oldConfiguration;
81166
81471
  t1._evaluate0$_inDependency = oldInDependency;
81167
81472
  },
@@ -81197,7 +81502,8 @@ self.readline = _cli_pkg_requires.readline;
81197
81502
  };
81198
81503
  A._EvaluateVisitor_visitIncludeRule_closure10.prototype = {
81199
81504
  call$1($content) {
81200
- return new A.UserDefinedCallable0($content, this.$this._evaluate0$_environment.closure$0(), type$.UserDefinedCallable_Environment_2);
81505
+ var t1 = this.$this;
81506
+ return new A.UserDefinedCallable0($content, t1._evaluate0$_environment.closure$0(), t1._evaluate0$_inDependency, type$.UserDefinedCallable_Environment_2);
81201
81507
  },
81202
81508
  $signature: 413
81203
81509
  };
@@ -81526,7 +81832,7 @@ self.readline = _cli_pkg_requires.readline;
81526
81832
  var t1 = this.$this,
81527
81833
  t2 = this.node,
81528
81834
  t3 = this.inMinMax;
81529
- return A.SassCalculation_operateInternal0(t1._evaluate0$_binaryOperatorToCalculationOperator$1(t2.operator), t1._evaluate0$_visitCalculationValue$2$inMinMax(t2.left, t3), t1._evaluate0$_visitCalculationValue$2$inMinMax(t2.right, t3), t3);
81835
+ return A.SassCalculation_operateInternal0(t1._evaluate0$_binaryOperatorToCalculationOperator$1(t2.operator), t1._evaluate0$_visitCalculationValue$2$inMinMax(t2.left, t3), t1._evaluate0$_visitCalculationValue$2$inMinMax(t2.right, t3), t3, !t1._evaluate0$_inSupportsDeclaration);
81530
81836
  },
81531
81837
  $signature: 85
81532
81838
  };
@@ -84150,8 +84456,9 @@ self.readline = _cli_pkg_requires.readline;
84150
84456
  resolvedUrl = _this.url;
84151
84457
  t1 = _this.baseImporter;
84152
84458
  canonicalUrl = _this.$this._import_cache$_canonicalize$3(t1, resolvedUrl, _this.forImport);
84153
- if (canonicalUrl != null)
84154
- return new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_Importer_Uri_Uri_2);
84459
+ if (canonicalUrl == null)
84460
+ return null;
84461
+ return new A.Tuple3(t1, canonicalUrl, resolvedUrl, type$.Tuple3_Importer_Uri_Uri_2);
84155
84462
  },
84156
84463
  $signature: 228
84157
84464
  };
@@ -88779,11 +89086,17 @@ self.readline = _cli_pkg_requires.readline;
88779
89086
  };
88780
89087
  A.JSClass0.prototype = {};
88781
89088
  A.JSClassExtension_setCustomInspect_closure.prototype = {
88782
- call$3($self, _, __) {
89089
+ call$4($self, _, __, ___) {
88783
89090
  return this.inspect.call$1($self);
88784
89091
  },
88785
- "call*": "call$3",
89092
+ call$3($self, _, __) {
89093
+ return this.call$4($self, _, __, null);
89094
+ },
89095
+ "call*": "call$4",
88786
89096
  $requiredArgCount: 3,
89097
+ $defaultValues() {
89098
+ return [null];
89099
+ },
88787
89100
  $signature: 517
88788
89101
  };
88789
89102
  A.JSClassExtension_get_defineMethod_closure.prototype = {
@@ -90301,59 +90614,23 @@ self.readline = _cli_pkg_requires.readline;
90301
90614
  return false;
90302
90615
  return right === B.CalculationOperator_Iem0 || right === B.CalculationOperator_uti0;
90303
90616
  },
90304
- visitColor$1(value) {
90305
- var $name, hexLength, t2, t3, _this = this, _null = null,
90306
- t1 = _this._serialize0$_style === B.OutputStyle_compressed0;
90307
- if (t1 && Math.abs(value._color0$_alpha - 1) < $.$get$epsilon0()) {
90308
- $name = $.$get$namesByColor0().$index(0, value);
90309
- hexLength = _this._serialize0$_canUseShortHex$1(value) ? 4 : 7;
90310
- if ($name != null && $name.length <= hexLength)
90311
- _this._serialize0$_buffer.write$1(0, $name);
90312
- else {
90313
- t1 = _this._serialize0$_buffer;
90314
- if (_this._serialize0$_canUseShortHex$1(value)) {
90315
- t1.writeCharCode$1(35);
90316
- t1.writeCharCode$1(A.hexCharFor0(value.get$red(value) & 15));
90317
- t1.writeCharCode$1(A.hexCharFor0(value.get$green(value) & 15));
90318
- t1.writeCharCode$1(A.hexCharFor0(value.get$blue(value) & 15));
90319
- } else {
90320
- t1.writeCharCode$1(35);
90321
- _this._serialize0$_writeHexComponent$1(value.get$red(value));
90322
- _this._serialize0$_writeHexComponent$1(value.get$green(value));
90323
- _this._serialize0$_writeHexComponent$1(value.get$blue(value));
90324
- }
90325
- }
90326
- return;
90327
- }
90328
- t2 = value.originalSpan;
90329
- t3 = t2 == null;
90330
- if ((t3 ? _null : A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t2.file._decodedChars, t2._file$_start, t2._end), 0, _null)) != null) {
90331
- t1 = t3 ? _null : A.String_String$fromCharCodes(B.NativeUint32List_methods.sublist$2(t2.file._decodedChars, t2._file$_start, t2._end), 0, _null);
90332
- _this._serialize0$_buffer.write$1(0, t1);
90333
- } else {
90334
- t2 = $.$get$namesByColor0();
90335
- if (t2.containsKey$1(value) && !(Math.abs(value._color0$_alpha - 0) < $.$get$epsilon0()))
90336
- _this._serialize0$_buffer.write$1(0, t2.$index(0, value));
90337
- else {
90338
- t2 = value._color0$_alpha;
90339
- t3 = _this._serialize0$_buffer;
90340
- if (Math.abs(t2 - 1) < $.$get$epsilon0()) {
90341
- t3.writeCharCode$1(35);
90342
- _this._serialize0$_writeHexComponent$1(value.get$red(value));
90343
- _this._serialize0$_writeHexComponent$1(value.get$green(value));
90344
- _this._serialize0$_writeHexComponent$1(value.get$blue(value));
90345
- } else {
90346
- t3.write$1(0, "rgba(" + value.get$red(value));
90347
- t3.write$1(0, t1 ? "," : ", ");
90348
- t3.write$1(0, value.get$green(value));
90349
- t3.write$1(0, t1 ? "," : ", ");
90350
- t3.write$1(0, value.get$blue(value));
90351
- t3.write$1(0, t1 ? "," : ", ");
90352
- _this._serialize0$_writeNumber$1(t2);
90353
- t3.writeCharCode$1(41);
90354
- }
90355
- }
90356
- }
90617
+ _serialize0$_writeRgb$1(value) {
90618
+ var t3,
90619
+ t1 = value._color1$_alpha,
90620
+ opaque = Math.abs(t1 - 1) < $.$get$epsilon0(),
90621
+ t2 = this._serialize0$_buffer;
90622
+ t2.write$1(0, opaque ? "rgb(" : "rgba(");
90623
+ t2.write$1(0, value.get$red(value));
90624
+ t3 = this._serialize0$_style === B.OutputStyle_compressed0;
90625
+ t2.write$1(0, t3 ? "," : ", ");
90626
+ t2.write$1(0, value.get$green(value));
90627
+ t2.write$1(0, t3 ? "," : ", ");
90628
+ t2.write$1(0, value.get$blue(value));
90629
+ if (!opaque) {
90630
+ t2.write$1(0, t3 ? "," : ", ");
90631
+ this._serialize0$_writeNumber$1(t1);
90632
+ }
90633
+ t2.writeCharCode$1(41);
90357
90634
  },
90358
90635
  _serialize0$_canUseShortHex$1(color) {
90359
90636
  var t1 = color.get$red(color);
@@ -92331,27 +92608,26 @@ self.readline = _cli_pkg_requires.readline;
92331
92608
  return type$.Statement_2._is(declarationOrBuffer) ? declarationOrBuffer : _this._stylesheet0$_styleRule$2(type$.InterpolationBuffer_2._as(declarationOrBuffer), new A._SpanScannerState(t1, t2));
92332
92609
  },
92333
92610
  _stylesheet0$_declarationOrBuffer$0() {
92334
- var midBuffer, couldBeSelector, beforeDeclaration, additional, t4, startsWithPunctuation, variableOrInterpolation, t5, $name, postColonWhitespace, value, exception, _this = this, t1 = {},
92611
+ var midBuffer, couldBeSelector, beforeDeclaration, additional, t3, startsWithPunctuation, variableOrInterpolation, t4, $name, postColonWhitespace, exception, _this = this, t1 = {},
92335
92612
  t2 = _this.scanner,
92336
92613
  start = new A._SpanScannerState(t2, t2._string_scanner$_position),
92337
- t3 = type$.JSArray_Object,
92338
- nameBuffer = new A.InterpolationBuffer0(new A.StringBuffer(""), A._setArrayType([], t3)),
92614
+ nameBuffer = new A.InterpolationBuffer0(new A.StringBuffer(""), A._setArrayType([], type$.JSArray_Object)),
92339
92615
  first = t2.peekChar$0();
92340
92616
  if (first !== 58)
92341
92617
  if (first !== 42)
92342
92618
  if (first !== 46)
92343
- t4 = first === 35 && t2.peekChar$1(1) !== 123;
92619
+ t3 = first === 35 && t2.peekChar$1(1) !== 123;
92344
92620
  else
92345
- t4 = true;
92621
+ t3 = true;
92346
92622
  else
92347
- t4 = true;
92623
+ t3 = true;
92348
92624
  else
92349
- t4 = true;
92350
- if (t4) {
92351
- t4 = t2.readChar$0();
92352
- nameBuffer._interpolation_buffer0$_text._contents += A.Primitives_stringFromCharCode(t4);
92353
- t4 = _this.rawText$1(_this.get$whitespace());
92354
- nameBuffer._interpolation_buffer0$_text._contents += t4;
92625
+ t3 = true;
92626
+ if (t3) {
92627
+ t3 = t2.readChar$0();
92628
+ nameBuffer._interpolation_buffer0$_text._contents += A.Primitives_stringFromCharCode(t3);
92629
+ t3 = _this.rawText$1(_this.get$whitespace());
92630
+ nameBuffer._interpolation_buffer0$_text._contents += t3;
92355
92631
  startsWithPunctuation = true;
92356
92632
  } else
92357
92633
  startsWithPunctuation = false;
@@ -92364,20 +92640,20 @@ self.readline = _cli_pkg_requires.readline;
92364
92640
  nameBuffer.addInterpolation$1(type$.Interpolation_2._as(variableOrInterpolation));
92365
92641
  _this._stylesheet0$_isUseAllowed = false;
92366
92642
  if (t2.matches$1("/*")) {
92367
- t4 = _this.rawText$1(_this.get$loudComment());
92368
- nameBuffer._interpolation_buffer0$_text._contents += t4;
92643
+ t3 = _this.rawText$1(_this.get$loudComment());
92644
+ nameBuffer._interpolation_buffer0$_text._contents += t3;
92369
92645
  }
92370
92646
  midBuffer = new A.StringBuffer("");
92371
- t4 = _this.get$whitespace();
92372
- midBuffer._contents += _this.rawText$1(t4);
92373
- t5 = t2._string_scanner$_position;
92647
+ t3 = _this.get$whitespace();
92648
+ midBuffer._contents += _this.rawText$1(t3);
92649
+ t4 = t2._string_scanner$_position;
92374
92650
  if (!t2.scanChar$1(58)) {
92375
92651
  if (midBuffer._contents.length !== 0)
92376
92652
  nameBuffer._interpolation_buffer0$_text._contents += A.Primitives_stringFromCharCode(32);
92377
92653
  return nameBuffer;
92378
92654
  }
92379
92655
  midBuffer._contents += A.Primitives_stringFromCharCode(58);
92380
- $name = nameBuffer.interpolation$1(t2.spanFrom$2(start, new A._SpanScannerState(t2, t5)));
92656
+ $name = nameBuffer.interpolation$1(t2.spanFrom$2(start, new A._SpanScannerState(t2, t4)));
92381
92657
  if (B.JSString_methods.startsWith$1($name.get$initialPlain(), "--")) {
92382
92658
  t1 = _this._stylesheet0$_interpolatedDeclarationValue$0();
92383
92659
  _this.expectStatementSeparator$1("custom property");
@@ -92394,22 +92670,15 @@ self.readline = _cli_pkg_requires.readline;
92394
92670
  t1._interpolation_buffer0$_text._contents += A.S(midBuffer);
92395
92671
  return t1;
92396
92672
  }
92397
- postColonWhitespace = _this.rawText$1(t4);
92673
+ postColonWhitespace = _this.rawText$1(t3);
92398
92674
  if (_this.lookingAtChildren$0())
92399
92675
  return _this._stylesheet0$_withChildren$3(_this.get$_stylesheet0$_declarationChild(), start, new A.StylesheetParser__declarationOrBuffer_closure1($name));
92400
92676
  midBuffer._contents += postColonWhitespace;
92401
92677
  couldBeSelector = postColonWhitespace.length === 0 && _this._stylesheet0$_lookingAtInterpolatedIdentifier$0();
92402
92678
  beforeDeclaration = new A._SpanScannerState(t2, t2._string_scanner$_position);
92403
- t4 = t1.value = null;
92679
+ t3 = t1.value = null;
92404
92680
  try {
92405
- if (_this.lookingAtChildren$0()) {
92406
- t3 = A._setArrayType([], t3);
92407
- t4 = A.FileLocation$_(t2._sourceFile, t2._string_scanner$_position);
92408
- t5 = t4.offset;
92409
- value = new A.StringExpression0(A.Interpolation$0(t3, A._FileSpan$(t4.file, t5, t5)), true);
92410
- } else
92411
- value = _this.expression$0();
92412
- t3 = t1.value = value;
92681
+ t3 = t1.value = _this.expression$0();
92413
92682
  if (_this.lookingAtChildren$0()) {
92414
92683
  if (couldBeSelector)
92415
92684
  _this.expectStatementSeparator$0();
@@ -93910,20 +94179,13 @@ self.readline = _cli_pkg_requires.readline;
93910
94179
  start = new A._SpanScannerState(t1, t1._string_scanner$_position);
93911
94180
  t1.expectChar$1(35);
93912
94181
  first = t1.peekChar$0();
93913
- if (first != null && A.isDigit0(first)) {
93914
- t1 = _this._stylesheet0$_hexColorContents$1(start);
93915
- t2 = t1.originalSpan;
93916
- t2.toString;
93917
- return new A.ColorExpression0(t1, t2);
93918
- }
94182
+ if (first != null && A.isDigit0(first))
94183
+ return new A.ColorExpression0(_this._stylesheet0$_hexColorContents$1(start), t1.spanFrom$1(start));
93919
94184
  t2 = t1._string_scanner$_position;
93920
94185
  identifier = _this.interpolatedIdentifier$0();
93921
94186
  if (_this._stylesheet0$_isHexColor$1(identifier)) {
93922
94187
  t1.set$state(new A._SpanScannerState(t1, t2));
93923
- t1 = _this._stylesheet0$_hexColorContents$1(start);
93924
- t2 = t1.originalSpan;
93925
- t2.toString;
93926
- return new A.ColorExpression0(t1, t2);
94188
+ return new A.ColorExpression0(_this._stylesheet0$_hexColorContents$1(start), t1.spanFrom$1(start));
93927
94189
  }
93928
94190
  t2 = new A.StringBuffer("");
93929
94191
  buffer = new A.InterpolationBuffer0(t2, A._setArrayType([], type$.JSArray_Object));
@@ -93941,7 +94203,7 @@ self.readline = _cli_pkg_requires.readline;
93941
94203
  red = (digit1 << 4 >>> 0) + digit1;
93942
94204
  green = (digit2 << 4 >>> 0) + digit2;
93943
94205
  blue = (digit3 << 4 >>> 0) + digit3;
93944
- alpha = 1;
94206
+ alpha = null;
93945
94207
  } else {
93946
94208
  digit4 = _this._stylesheet0$_hexDigit$0();
93947
94209
  t2 = digit1 << 4 >>> 0;
@@ -93955,10 +94217,10 @@ self.readline = _cli_pkg_requires.readline;
93955
94217
  red = t2 + digit2;
93956
94218
  green = t3 + digit4;
93957
94219
  blue = (_this._stylesheet0$_hexDigit$0() << 4 >>> 0) + _this._stylesheet0$_hexDigit$0();
93958
- alpha = A.isHex0(t1.peekChar$0()) ? ((_this._stylesheet0$_hexDigit$0() << 4 >>> 0) + _this._stylesheet0$_hexDigit$0()) / 255 : 1;
94220
+ alpha = A.isHex0(t1.peekChar$0()) ? ((_this._stylesheet0$_hexDigit$0() << 4 >>> 0) + _this._stylesheet0$_hexDigit$0()) / 255 : null;
93959
94221
  }
93960
94222
  }
93961
- return A.SassColor$rgb0(red, green, blue, alpha, t1.spanFrom$1(start));
94223
+ return A.SassColor$rgbInternal0(red, green, blue, alpha, alpha == null ? new A.SpanColorFormat0(t1.spanFrom$1(start)) : null);
93962
94224
  },
93963
94225
  _stylesheet0$_isHexColor$1(interpolation) {
93964
94226
  var t1,
@@ -94211,10 +94473,8 @@ self.readline = _cli_pkg_requires.readline;
94211
94473
  }
94212
94474
  color = $.$get$colorsByName0().$index(0, lower);
94213
94475
  if (color != null) {
94214
- color = A.SassColor$rgb0(color.get$red(color), color.get$green(color), color.get$blue(color), color._color0$_alpha, identifier.span);
94215
- t1 = color.originalSpan;
94216
- t1.toString;
94217
- return new A.ColorExpression0(color, t1);
94476
+ t1 = identifier.span;
94477
+ return new A.ColorExpression0(A.SassColor$rgbInternal0(color.get$red(color), color.get$green(color), color.get$blue(color), color._color1$_alpha, new A.SpanColorFormat0(t1)), t1);
94218
94478
  }
94219
94479
  }
94220
94480
  specialFunction = _this.trySpecialFunction$2(lower, start);
@@ -96836,8 +97096,8 @@ self.readline = _cli_pkg_requires.readline;
96836
97096
  }
96837
97097
  };
96838
97098
  (function aliases() {
96839
- var _ = J.JavaScriptObject.prototype;
96840
- _.super$JavaScriptObject$toString = _.toString$0;
97099
+ var _ = J.LegacyJavaScriptObject.prototype;
97100
+ _.super$LegacyJavaScriptObject$toString = _.toString$0;
96841
97101
  _ = A.JsLinkedHashMap.prototype;
96842
97102
  _.super$JsLinkedHashMap$internalContainsKey = _.internalContainsKey$1;
96843
97103
  _.super$JsLinkedHashMap$internalGet = _.internalGet$1;
@@ -97037,8 +97297,8 @@ self.readline = _cli_pkg_requires.readline;
97037
97297
  _instance_1_u(A.EmptyExtensionStore.prototype, "get$addExtensions", "addExtensions$1", 158);
97038
97298
  _instance_1_u(A.ExtensionStore.prototype, "get$addExtensions", "addExtensions$1", 158);
97039
97299
  _static_1(A, "functions___isUnique$closure", "_isUnique", 16);
97040
- _static_1(A, "color___opacify$closure", "_opacify", 23);
97041
- _static_1(A, "color___transparentize$closure", "_transparentize", 23);
97300
+ _static_1(A, "color0___opacify$closure", "_opacify", 23);
97301
+ _static_1(A, "color0___transparentize$closure", "_transparentize", 23);
97042
97302
  _instance_0_u(_ = A.Parser.prototype, "get$whitespace", "whitespace$0", 0);
97043
97303
  _instance_0_u(_, "get$loudComment", "loudComment$0", 0);
97044
97304
  _instance_0_u(_, "get$string", "string$0", 30);
@@ -97083,8 +97343,8 @@ self.readline = _cli_pkg_requires.readline;
97083
97343
  _instance_1_u(_, "get$_async_evaluate0$_visitSupportsCondition", "_async_evaluate0$_visitSupportsCondition$1", 315);
97084
97344
  _instance_1_u(_, "get$_async_evaluate0$_expressionNode", "_async_evaluate0$_expressionNode$1", 157);
97085
97345
  _static_1(A, "calculation0_SassCalculation__simplify$closure", "SassCalculation__simplify0", 171);
97086
- _static_1(A, "color1___opacify$closure", "_opacify0", 24);
97087
- _static_1(A, "color1___transparentize$closure", "_transparentize0", 24);
97346
+ _static_1(A, "color2___opacify$closure", "_opacify0", 24);
97347
+ _static_1(A, "color2___transparentize$closure", "_transparentize0", 24);
97088
97348
  _static(A, "compile__compile$closure", 1, function() {
97089
97349
  return [null];
97090
97350
  }, ["call$2", "call$1"], ["compile0", function(path) {
@@ -97180,17 +97440,18 @@ self.readline = _cli_pkg_requires.readline;
97180
97440
  _inherit = hunkHelpers.inherit,
97181
97441
  _inheritMany = hunkHelpers.inheritMany;
97182
97442
  _inherit(A.Object, null);
97183
- _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.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.Expando, A.MapEntry, A.Null, A._StringStackTrace, A.RuneIterator, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, 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.CssValue, A._FakeAstNode, A.Argument, A.ArgumentDeclaration, A.ArgumentInvocation, A.AtRootQuery, A.ConfiguredVariable, A.BinaryOperationExpression, A.BinaryOperator, 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.UnaryOperationExpression, A.UnaryOperator, 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.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.AttributeOperator, A.Combinator, 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.ExtendMode, 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.Syntax, A.MultiDirWatcher, A.NoSourceMapBuffer, A.SourceMapBuffer, A.Value, A.CalculationOperation, A.CalculationOperator, A.CalculationInterpolation, A.ListSeparator, 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.RecursiveStatementVisitor, A._SerializeVisitor, A.OutputStyle, A.LineFeed, A.SerializeResult, 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.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.AttributeOperator0, A.BinaryOperationExpression0, A.BinaryOperator0, A.BooleanExpression0, A.BuiltInCallable0, A.BuiltInModule0, A.CalculationExpression0, A.CalculationOperation0, A.CalculationOperator0, A.CalculationInterpolation0, A._CloneCssVisitor0, A.ColorExpression0, A.CompileResult0, A.Combinator0, 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.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.ListSeparator0, A._QuietLogger0, A.LoudComment0, A.MapExpression0, A.CssMediaQuery0, A._SingletonCssMediaQueryMergeResult0, A.MediaQuerySuccessfulMergeResult0, A.StatementSearchVisitor0, A.ExtendMode0, A.SupportsNegation0, A.NoSourceMapBuffer0, A._FakeAstNode0, A.FileSystemException0, A.Stderr0, A.NodeToDartLogger, A.NullExpression0, A.NumberExpression0, A.SupportsOperation0, A.ParenthesizedExpression0, A.PlainCssCallable0, A.QualifiedName0, A.ImporterResult0, A.ReturnRule0, A.SelectorExpression0, A._SerializeVisitor0, A.OutputStyle0, A.LineFeed0, A.SerializeResult0, A.ShadowedModuleView0, A.SilentComment0, A.SourceMapBuffer0, A.StaticImport0, A.StderrLogger0, A.StringExpression0, A.Syntax0, A.TerseLogger0, A.UnaryOperationExpression0, A.UnaryOperator0, A.UseRule0, A.UserDefinedCallable0, A.CssValue0, A.ValueExpression0, A.ModifiableCssValue0, A.VariableExpression0, A.VariableDeclaration0, A.WarnRule0]);
97443
+ _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.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.Expando, A.MapEntry, A.Null, A._StringStackTrace, A.RuneIterator, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, 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.CssValue, A._FakeAstNode, A.Argument, A.ArgumentDeclaration, A.ArgumentInvocation, A.AtRootQuery, A.ConfiguredVariable, A.BinaryOperationExpression, A.BinaryOperator, 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.UnaryOperationExpression, A.UnaryOperator, 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.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.AttributeOperator, A.Combinator, 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.ExtendMode, 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.Syntax, A.MultiDirWatcher, A.NoSourceMapBuffer, A.SourceMapBuffer, A.Value, A.CalculationOperation, A.CalculationOperator, A.CalculationInterpolation, A._ColorFormatEnum, A.SpanColorFormat, A.ListSeparator, 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.RecursiveStatementVisitor, A._SerializeVisitor, A.OutputStyle, A.LineFeed, A.SerializeResult, 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.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.AttributeOperator0, A.BinaryOperationExpression0, A.BinaryOperator0, A.BooleanExpression0, A.BuiltInCallable0, A.BuiltInModule0, A.CalculationExpression0, A.CalculationOperation0, A.CalculationOperator0, A.CalculationInterpolation0, A._CloneCssVisitor0, A.ColorExpression0, A._ColorFormatEnum0, A.SpanColorFormat0, A.CompileResult0, A.Combinator0, 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.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.ListSeparator0, A._QuietLogger0, A.LoudComment0, A.MapExpression0, A.CssMediaQuery0, A._SingletonCssMediaQueryMergeResult0, A.MediaQuerySuccessfulMergeResult0, A.StatementSearchVisitor0, A.ExtendMode0, A.SupportsNegation0, A.NoSourceMapBuffer0, A._FakeAstNode0, A.FileSystemException0, A.Stderr0, A.NodeToDartLogger, A.NullExpression0, A.NumberExpression0, A.SupportsOperation0, A.ParenthesizedExpression0, A.PlainCssCallable0, A.QualifiedName0, A.ImporterResult0, A.ReturnRule0, A.SelectorExpression0, A._SerializeVisitor0, A.OutputStyle0, A.LineFeed0, A.SerializeResult0, A.ShadowedModuleView0, A.SilentComment0, A.SourceMapBuffer0, A.StaticImport0, A.StderrLogger0, A.StringExpression0, A.Syntax0, A.TerseLogger0, A.UnaryOperationExpression0, A.UnaryOperator0, A.UseRule0, A.UserDefinedCallable0, A.CssValue0, A.ValueExpression0, A.ModifiableCssValue0, A.VariableExpression0, A.VariableDeclaration0, A.WarnRule0]);
97184
97444
  _inheritMany(J.Interceptor, [J.JSBool, J.JSNull, J.JavaScriptObject, J.JSArray, J.JSNumber, J.JSString, A.NativeTypedData]);
97185
- _inheritMany(J.JavaScriptObject, [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]);
97445
+ _inherit(J.LegacyJavaScriptObject, J.JavaScriptObject);
97446
+ _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]);
97186
97447
  _inherit(J.JSUnmodifiableArray, J.JSArray);
97187
97448
  _inheritMany(J.JSNumber, [J.JSInt, J.JSNumNotInt]);
97188
97449
  _inheritMany(A.Iterable, [A._CastIterableBase, A.EfficientLengthIterable, A.MappedIterable, A.WhereIterable, A.ExpandIterable, A.TakeIterable, A.SkipIterable, A.SkipWhileIterable, A.FollowedByIterable, A.WhereTypeIterable, A._ConstantMapKeyIterable, A.IterableBase, A._StringAllMatchesIterable, A.Runes]);
97189
97450
  _inheritMany(A._CastIterableBase, [A.CastIterable, A.__CastListBase__CastIterableBase_ListMixin, A.CastSet]);
97190
97451
  _inherit(A._EfficientLengthCastIterable, A.CastIterable);
97191
97452
  _inherit(A._CastListBase, A.__CastListBase__CastIterableBase_ListMixin);
97192
- _inheritMany(A.Closure, [A.Closure2Args, A.CastMap_entries_closure, A.Closure0Args, A.ConstantStringMap_values_closure, A.Instantiation, A.TearOffClosure, A.JsLinkedHashMap_values_closure, A.initHooks_closure, A.initHooks_closure1, A._AsyncRun__initializeScheduleImmediate_internalCallback, A._AsyncRun__initializeScheduleImmediate_closure, A._awaitOnObject_closure, A.Future_wait_closure, A._Future__chainForeignFuture_closure, A._Future__propagateToListeners_handleWhenCompleteCallback_closure, A.Stream_Stream$fromFuture_closure, A.Stream_length_closure, A._CustomZone_bindUnaryCallback_closure, A._RootZone_bindUnaryCallback_closure, A._HashMap_values_closure, A._LinkedCustomHashMap_closure, A.MapMixin_entries_closure, A.Uri_parseIPv6Address_error, A._Uri__makePath_closure, A._createTables_setChars, A._createTables_setRange, A._convertDataTree__convert, A.ArgParser__addOption_closure, A._Usage__writeOption_closure, A._Usage__buildAllowedList_closure, A.StreamGroup__onListen_closure, A.StreamGroup__onCancel_closure, A.StreamQueue__ensureListening_closure, A.alwaysValid_closure, A.ReplAdapter_runAsync__closure, A.MapKeySet_difference_closure, A.promiseToFuture_closure, A.promiseToFuture_closure0, A.futureToPromise__closure, A.Context_joinAll_closure, A.Context_split_closure, A._validateArgList_closure, A.ParsedPath__splitExtension_closure, A.PathMap__create_closure0, A.PathMap__create_closure1, A.WindowsStyle_absolutePathToUri_closure, A.ArgumentDeclaration_verify_closure, A.ArgumentDeclaration_verify_closure0, A.CalculationExpression__verifyArguments_closure, A.ListExpression_toString_closure, A.MapExpression_toString_closure, A.Interpolation_toString_closure, A.EachRule_toString_closure, A.IfRuleClause$__closure, A.IfRuleClause$___closure, A.ParentStatement_closure, A.ParentStatement__closure, A.ComplexSelector_isInvisible_closure, A.CompoundSelector_isInvisible_closure, A.IDSelector_unify_closure, A.SelectorList_isInvisible_closure, A.SelectorList_asSassList_closure, A.SelectorList_asSassList__closure, A.SelectorList_unify_closure, A.SelectorList_unify__closure, A.SelectorList_unify___closure, A.SelectorList_resolveParentSelectors_closure, A.SelectorList_resolveParentSelectors__closure, A.SelectorList_resolveParentSelectors__closure0, A.SelectorList__complexContainsParentSelector_closure, A.SelectorList__complexContainsParentSelector__closure, A.SelectorList__resolveParentSelectorsCompound_closure, A.SelectorList__resolveParentSelectorsCompound_closure0, A.SelectorList__resolveParentSelectorsCompound_closure1, A.PseudoSelector_unify_closure, A._compileStylesheet_closure0, A.AsyncEnvironment_importForwards_closure, A.AsyncEnvironment_importForwards_closure0, A.AsyncEnvironment_importForwards_closure1, A.AsyncEnvironment__getVariableFromGlobalModule_closure, A.AsyncEnvironment_setVariable_closure0, A.AsyncEnvironment__getFunctionFromGlobalModule_closure, A.AsyncEnvironment__getMixinFromGlobalModule_closure, A.AsyncEnvironment_toModule_closure, A.AsyncEnvironment_toDummyModule_closure, A.AsyncEnvironment__fromOneModule_closure, A.AsyncEnvironment__fromOneModule__closure, A._EnvironmentModule__EnvironmentModule_closure5, A._EnvironmentModule__EnvironmentModule_closure6, A._EnvironmentModule__EnvironmentModule_closure7, A._EnvironmentModule__EnvironmentModule_closure8, A._EnvironmentModule__EnvironmentModule_closure9, A._EnvironmentModule__EnvironmentModule_closure10, A.AsyncImportCache_humanize_closure, A.AsyncImportCache_humanize_closure0, A.AsyncImportCache_humanize_closure1, A.AsyncBuiltInCallable$mixin_closure, A.BuiltInCallable$mixin_closure, A._compileStylesheet_closure, A.Configuration_toString_closure, A.Environment_importForwards_closure, A.Environment_importForwards_closure0, A.Environment_importForwards_closure1, A.Environment__getVariableFromGlobalModule_closure, A.Environment_setVariable_closure0, A.Environment__getFunctionFromGlobalModule_closure, A.Environment__getMixinFromGlobalModule_closure, A.Environment_toModule_closure, A.Environment_toDummyModule_closure, A.Environment__fromOneModule_closure, A.Environment__fromOneModule__closure, A._EnvironmentModule__EnvironmentModule_closure, A._EnvironmentModule__EnvironmentModule_closure0, A._EnvironmentModule__EnvironmentModule_closure1, A._EnvironmentModule__EnvironmentModule_closure2, A._EnvironmentModule__EnvironmentModule_closure3, A._EnvironmentModule__EnvironmentModule_closure4, A._writeSourceMap_closure, A.ExecutableOptions_emitErrorCss_closure, A.watch_closure, A._Watcher__debounceEvents_closure, A.ExtensionStore_extensionsWhereTarget_closure, A.ExtensionStore_addExtensions_closure0, A.ExtensionStore_addExtensions__closure, A.ExtensionStore_addExtensions__closure0, A.ExtensionStore__extendComplex_closure, A.ExtensionStore__extendComplex_closure0, A.ExtensionStore__extendComplex__closure, A.ExtensionStore__extendComplex__closure0, A.ExtensionStore__extendComplex___closure, A.ExtensionStore__extendCompound_closure, A.ExtensionStore__extendCompound_closure0, A.ExtensionStore__extendCompound__closure, A.ExtensionStore__extendCompound__closure0, A.ExtensionStore__extendCompound_closure1, A.ExtensionStore__extendCompound_closure2, A.ExtensionStore__extendCompound_closure3, A.ExtensionStore__extendSimple_withoutPseudo, A.ExtensionStore__extendSimple_closure, A.ExtensionStore__extendSimple_closure0, A.ExtensionStore__extendPseudo_closure, A.ExtensionStore__extendPseudo_closure0, A.ExtensionStore__extendPseudo_closure1, A.ExtensionStore__extendPseudo_closure2, A.ExtensionStore__extendPseudo_closure3, A.ExtensionStore__trim_closure, A.ExtensionStore__trim_closure0, A.unifyComplex_closure, A._weaveParents_closure0, A._weaveParents_closure1, A._weaveParents__closure1, A._weaveParents_closure2, A._weaveParents_closure3, A._weaveParents__closure0, A._weaveParents_closure4, A._weaveParents_closure5, A._weaveParents__closure, A._mustUnify_closure, A._mustUnify__closure, A.paths__closure, A.paths___closure, A._hasRoot_closure, A.listIsSuperselector_closure, A.listIsSuperselector__closure, A._simpleIsSuperselectorOfCompound_closure, A._simpleIsSuperselectorOfCompound__closure, A._selectorPseudoIsSuperselector_closure, A._selectorPseudoIsSuperselector_closure0, A._selectorPseudoIsSuperselector_closure1, A._selectorPseudoIsSuperselector_closure2, A._selectorPseudoIsSuperselector_closure3, A._selectorPseudoIsSuperselector__closure, A._selectorPseudoIsSuperselector___closure, A._selectorPseudoIsSuperselector___closure0, A._selectorPseudoIsSuperselector_closure4, A._selectorPseudoIsSuperselector_closure5, A._selectorPseudoArgs_closure, A._selectorPseudoArgs_closure0, A.globalFunctions_closure, A.global_closure, A.global_closure0, A.global_closure1, A.global_closure2, A.global_closure3, A.global_closure4, A.global_closure5, A.global_closure6, A.global_closure7, A.global_closure8, A.global_closure9, A.global_closure10, A.global_closure11, A.global_closure12, A.global_closure13, A.global_closure14, A.global_closure15, A.global_closure16, A.global_closure17, A.global_closure18, A.global_closure19, A.global_closure20, A.global_closure21, A.global_closure22, A.global_closure23, A.global_closure24, A.global__closure, A.global_closure25, A.module_closure, A.module_closure0, A.module_closure1, A.module_closure2, A.module_closure3, A.module_closure4, A.module_closure5, A.module_closure6, A.module__closure, A.module_closure7, A._red_closure, A._green_closure, A._blue_closure, A._mix_closure, A._hue_closure, A._saturation_closure, A._lightness_closure, A._complement_closure, A._adjust_closure, A._scale_closure, A._change_closure, A._ieHexStr_closure, A._ieHexStr_closure_hexString, A._updateComponents_getParam, A._updateComponents_closure, A._updateComponents_updateValue, A._functionString_closure, A._removedColorFunction_closure, A._rgb_closure, A._hsl_closure, A._removeUnits_closure, A._removeUnits_closure0, A._hwb_closure, A._parseChannels_closure, A._length_closure0, A._nth_closure, A._setNth_closure, A._join_closure, A._append_closure0, A._zip_closure, A._zip__closure, A._zip__closure0, A._zip__closure1, A._index_closure0, A._separator_closure, A._isBracketed_closure, A._slash_closure, A._get_closure, A._set_closure, A._set__closure0, A._set_closure0, A._set__closure, A._merge_closure, A._merge_closure0, A._merge__closure, A._deepMerge_closure, A._deepRemove_closure, A._deepRemove__closure, A._remove_closure, A._remove_closure0, A._keys_closure, A._values_closure, A._hasKey_closure, A._modify__modifyNestedMap, A._ceil_closure, A._clamp_closure, A._floor_closure, A._max_closure, A._min_closure, A._abs_closure, A._hypot_closure, A._hypot__closure, A._log_closure, A._pow_closure, A._sqrt_closure, A._acos_closure, A._asin_closure, A._atan_closure, A._atan2_closure, A._cos_closure, A._sin_closure, A._tan_closure, A._compatible_closure, A._isUnitless_closure, A._unit_closure, A._percentage_closure, A._randomFunction_closure, A._div_closure, A._numberFunction_closure, A.global_closure26, A.global_closure27, A.global_closure28, A.global_closure29, A.local_closure, A.local_closure0, A.local__closure, A._nest_closure, A._nest__closure, A._append_closure, A._append__closure, A._append___closure, A._extend_closure, A._replace_closure, A._unify_closure, A._isSuperselector_closure, A._simpleSelectors_closure, A._simpleSelectors__closure, A._parse_closure, A._unquote_closure, A._quote_closure, A._length_closure, A._insert_closure, A._index_closure, A._slice_closure, A._toUpperCase_closure, A._toLowerCase_closure, A._uniqueId_closure, A.ImportCache_humanize_closure, A.ImportCache_humanize_closure0, A.ImportCache_humanize_closure1, A.FilesystemImporter_canonicalize_closure, A._exactlyOne_closure, A._realCasePath_helper, A._realCasePath_helper__closure, A.readStdin_closure, A.readStdin_closure0, A.readStdin_closure1, A.readStdin_closure2, A.listDir__closure, A.listDir__closure0, A.listDir_closure_list, A.listDir__list_closure, A.watchDir_closure, A.watchDir_closure0, A.watchDir_closure1, A.watchDir_closure2, A.TerseLogger_summarize_closure, A.TerseLogger_summarize_closure0, A._disallowedFunctionNames_closure, A.Parser_scanIdentChar_matches, A.StylesheetParser_parse__closure0, A.StylesheetParser_expression_addSingleExpression, A.StylesheetParser_expression_addOperator, A.StylesheetParser__unicodeRange_closure, A.StylesheetParser__unicodeRange_closure0, A.StylesheetParser_trySpecialFunction_closure, A.StylesheetGraph_modifiedSince_transitiveModificationTime, A._PrefixedKeys_iterator_closure, A.SourceMapBuffer_buildSourceMap_closure, A._UnprefixedKeys_iterator_closure, A._UnprefixedKeys_iterator_closure0, A.indent_closure, A.flattenVertically_closure, A.flattenVertically_closure0, A.SassCalculation__verifyLength_closure, A.SassColor_SassColor$hwb_toRgb, A.SassList_isBlank_closure, A.SassNumber__coerceOrConvertValue_closure, A.SassNumber__coerceOrConvertValue_closure1, A.SassNumber_multiplyUnits_closure, A.SassNumber_multiplyUnits_closure1, A.SassNumber__areAnyConvertible_closure, A.SassNumber__canonicalizeUnitList_closure, A.SingleUnitSassNumber__coerceToUnit_closure, A.SingleUnitSassNumber__coerceValueToUnit_closure, A.SingleUnitSassNumber_multiplyUnits_closure, A._EvaluateVisitor_closure9, A._EvaluateVisitor_closure10, A._EvaluateVisitor_closure11, A._EvaluateVisitor_closure12, A._EvaluateVisitor_closure13, A._EvaluateVisitor_closure14, A._EvaluateVisitor_closure15, A._EvaluateVisitor_closure16, A._EvaluateVisitor_closure17, A._EvaluateVisitor_closure18, A._EvaluateVisitor__closure3, A._EvaluateVisitor__loadModule__closure0, A._EvaluateVisitor__combineCss_closure2, A._EvaluateVisitor__combineCss_closure3, A._EvaluateVisitor__combineCss_closure4, A._EvaluateVisitor__extendModules_closure1, A._EvaluateVisitor__topologicalModules_visitModule0, A._EvaluateVisitor__scopeForAtRoot_closure5, A._EvaluateVisitor__scopeForAtRoot_closure6, A._EvaluateVisitor__scopeForAtRoot_closure7, A._EvaluateVisitor__scopeForAtRoot_closure8, A._EvaluateVisitor__scopeForAtRoot_closure9, A._EvaluateVisitor__scopeForAtRoot_closure10, A._EvaluateVisitor_visitDeclaration_closure1, A._EvaluateVisitor_visitEachRule_closure2, A._EvaluateVisitor_visitEachRule_closure3, A._EvaluateVisitor_visitEachRule__closure0, A._EvaluateVisitor_visitEachRule___closure0, A._EvaluateVisitor_visitAtRule_closure2, A._EvaluateVisitor_visitAtRule_closure4, A._EvaluateVisitor_visitForRule__closure0, A._EvaluateVisitor_visitForwardRule_closure1, A._EvaluateVisitor_visitForwardRule_closure2, A._EvaluateVisitor_visitIfRule__closure0, A._EvaluateVisitor__visitDynamicImport__closure3, A._EvaluateVisitor__visitDynamicImport__closure4, A._EvaluateVisitor__visitDynamicImport__closure5, A._EvaluateVisitor__visitStaticImport_closure0, A._EvaluateVisitor_visitIncludeRule_closure6, A._EvaluateVisitor_visitMediaRule_closure2, A._EvaluateVisitor_visitMediaRule_closure4, A._EvaluateVisitor_visitStyleRule_closure8, A._EvaluateVisitor_visitStyleRule_closure12, A._EvaluateVisitor_visitSupportsRule_closure2, A._EvaluateVisitor_visitUseRule_closure0, A._EvaluateVisitor_visitWhileRule__closure0, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation0, A._EvaluateVisitor_visitListExpression_closure0, A._EvaluateVisitor__runUserDefinedCallable____closure0, A._EvaluateVisitor__runBuiltInCallable_closure2, A._EvaluateVisitor__evaluateArguments_closure3, A._EvaluateVisitor__evaluateArguments_closure4, A._EvaluateVisitor__evaluateArguments_closure6, A._EvaluateVisitor__evaluateMacroArguments_closure3, A._EvaluateVisitor__evaluateMacroArguments_closure4, A._EvaluateVisitor__evaluateMacroArguments_closure6, A._EvaluateVisitor_visitStringExpression_closure0, A._EvaluateVisitor_visitCssAtRule_closure2, A._EvaluateVisitor_visitCssKeyframeBlock_closure2, A._EvaluateVisitor_visitCssMediaRule_closure2, A._EvaluateVisitor_visitCssMediaRule_closure4, A._EvaluateVisitor_visitCssStyleRule_closure2, A._EvaluateVisitor_visitCssSupportsRule_closure2, A._EvaluateVisitor__performInterpolation_closure0, A._EvaluateVisitor__withoutSlash_recommendation0, A._EvaluateVisitor__stackFrame_closure0, A._EvaluateVisitor__stackTrace_closure0, A._ImportedCssVisitor_visitCssAtRule_closure0, A._ImportedCssVisitor_visitCssMediaRule_closure0, A._ImportedCssVisitor_visitCssStyleRule_closure0, A._ImportedCssVisitor_visitCssSupportsRule_closure0, A._EvaluateVisitor_closure, A._EvaluateVisitor_closure0, A._EvaluateVisitor_closure1, A._EvaluateVisitor_closure2, A._EvaluateVisitor_closure3, A._EvaluateVisitor_closure4, A._EvaluateVisitor_closure5, A._EvaluateVisitor_closure6, A._EvaluateVisitor_closure7, A._EvaluateVisitor_closure8, A._EvaluateVisitor__closure0, A._EvaluateVisitor__loadModule__closure, A._EvaluateVisitor__combineCss_closure, A._EvaluateVisitor__combineCss_closure0, A._EvaluateVisitor__combineCss_closure1, A._EvaluateVisitor__extendModules_closure, A._EvaluateVisitor__topologicalModules_visitModule, A._EvaluateVisitor__scopeForAtRoot_closure, A._EvaluateVisitor__scopeForAtRoot_closure0, A._EvaluateVisitor__scopeForAtRoot_closure1, A._EvaluateVisitor__scopeForAtRoot_closure2, A._EvaluateVisitor__scopeForAtRoot_closure3, A._EvaluateVisitor__scopeForAtRoot_closure4, A._EvaluateVisitor_visitDeclaration_closure, A._EvaluateVisitor_visitEachRule_closure, A._EvaluateVisitor_visitEachRule_closure0, A._EvaluateVisitor_visitEachRule__closure, A._EvaluateVisitor_visitEachRule___closure, A._EvaluateVisitor_visitAtRule_closure, A._EvaluateVisitor_visitAtRule_closure1, A._EvaluateVisitor_visitForRule__closure, A._EvaluateVisitor_visitForwardRule_closure, A._EvaluateVisitor_visitForwardRule_closure0, A._EvaluateVisitor_visitIfRule__closure, A._EvaluateVisitor__visitDynamicImport__closure, A._EvaluateVisitor__visitDynamicImport__closure0, A._EvaluateVisitor__visitDynamicImport__closure1, A._EvaluateVisitor__visitStaticImport_closure, A._EvaluateVisitor_visitIncludeRule_closure2, A._EvaluateVisitor_visitMediaRule_closure, A._EvaluateVisitor_visitMediaRule_closure1, A._EvaluateVisitor_visitStyleRule_closure1, A._EvaluateVisitor_visitStyleRule_closure5, A._EvaluateVisitor_visitSupportsRule_closure0, A._EvaluateVisitor_visitUseRule_closure, A._EvaluateVisitor_visitWhileRule__closure, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation, A._EvaluateVisitor_visitListExpression_closure, A._EvaluateVisitor__runUserDefinedCallable____closure, A._EvaluateVisitor__runBuiltInCallable_closure0, A._EvaluateVisitor__evaluateArguments_closure, A._EvaluateVisitor__evaluateArguments_closure0, A._EvaluateVisitor__evaluateArguments_closure2, A._EvaluateVisitor__evaluateMacroArguments_closure, A._EvaluateVisitor__evaluateMacroArguments_closure0, A._EvaluateVisitor__evaluateMacroArguments_closure2, A._EvaluateVisitor_visitStringExpression_closure, A._EvaluateVisitor_visitCssAtRule_closure0, A._EvaluateVisitor_visitCssKeyframeBlock_closure0, A._EvaluateVisitor_visitCssMediaRule_closure, A._EvaluateVisitor_visitCssMediaRule_closure1, A._EvaluateVisitor_visitCssStyleRule_closure0, A._EvaluateVisitor_visitCssSupportsRule_closure0, A._EvaluateVisitor__performInterpolation_closure, A._EvaluateVisitor__withoutSlash_recommendation, A._EvaluateVisitor__stackFrame_closure, A._EvaluateVisitor__stackTrace_closure, A._ImportedCssVisitor_visitCssAtRule_closure, A._ImportedCssVisitor_visitCssMediaRule_closure, A._ImportedCssVisitor_visitCssStyleRule_closure, A._ImportedCssVisitor_visitCssSupportsRule_closure, A.serialize_closure, A._SerializeVisitor_visitList_closure, A._SerializeVisitor_visitList_closure0, A._SerializeVisitor_visitList_closure1, A._SerializeVisitor_visitMap_closure, A._SerializeVisitor_visitSelectorList_closure, A.StatementSearchVisitor_visitIfRule_closure, A.StatementSearchVisitor_visitIfRule__closure0, A.StatementSearchVisitor_visitIfRule_closure0, A.StatementSearchVisitor_visitIfRule__closure, A.StatementSearchVisitor_visitChildren_closure, A.SingleMapping_SingleMapping$fromEntries_closure1, A.SingleMapping_toJson_closure, A.Highlighter$__closure, A.Highlighter$___closure, A.Highlighter$__closure0, A.Highlighter__collateLines_closure, A.Highlighter__collateLines_closure1, A.Highlighter__collateLines__closure, A.Highlighter_highlight_closure, A.Chain_Chain$parse_closure, A.Chain_Chain$parse_closure0, A.Chain_Chain$parse_closure1, A.Chain_toTrace_closure, A.Chain_toString_closure0, A.Chain_toString__closure0, A.Chain_toString_closure, A.Chain_toString__closure, A.Trace__parseVM_closure, A.Trace__parseVM_closure0, A.Trace$parseV8_closure, A.Trace$parseV8_closure0, A.Trace$parseJSCore_closure, A.Trace$parseJSCore_closure0, A.Trace$parseFirefox_closure, A.Trace$parseFirefox_closure0, A.Trace$parseFriendly_closure, A.Trace$parseFriendly_closure0, A.Trace_terse_closure, A.Trace_foldFrames_closure, A.Trace_foldFrames_closure0, A.Trace_toString_closure0, A.Trace_toString_closure, A.TransformByHandlers_transformByHandlers__closure, A.RateLimit__debounceAggregate_closure0, A.ArgumentDeclaration_verify_closure1, A.ArgumentDeclaration_verify_closure2, A.argumentListClass__closure, A.argumentListClass__closure0, A.AsyncBuiltInCallable$mixin_closure0, A._compileStylesheet_closure2, A.AsyncEnvironment_importForwards_closure2, A.AsyncEnvironment_importForwards_closure3, A.AsyncEnvironment_importForwards_closure4, A.AsyncEnvironment__getVariableFromGlobalModule_closure0, A.AsyncEnvironment_setVariable_closure3, A.AsyncEnvironment__getFunctionFromGlobalModule_closure0, A.AsyncEnvironment__getMixinFromGlobalModule_closure0, A.AsyncEnvironment_toModule_closure0, A.AsyncEnvironment_toDummyModule_closure0, A.AsyncEnvironment__fromOneModule_closure0, A.AsyncEnvironment__fromOneModule__closure0, A._EnvironmentModule__EnvironmentModule_closure17, A._EnvironmentModule__EnvironmentModule_closure18, A._EnvironmentModule__EnvironmentModule_closure19, A._EnvironmentModule__EnvironmentModule_closure20, A._EnvironmentModule__EnvironmentModule_closure21, A._EnvironmentModule__EnvironmentModule_closure22, A._EvaluateVisitor_closure29, A._EvaluateVisitor_closure30, A._EvaluateVisitor_closure31, A._EvaluateVisitor_closure32, A._EvaluateVisitor_closure33, A._EvaluateVisitor_closure34, A._EvaluateVisitor_closure35, A._EvaluateVisitor_closure36, A._EvaluateVisitor_closure37, A._EvaluateVisitor_closure38, A._EvaluateVisitor__closure9, A._EvaluateVisitor__loadModule__closure2, A._EvaluateVisitor__combineCss_closure8, A._EvaluateVisitor__combineCss_closure9, A._EvaluateVisitor__combineCss_closure10, A._EvaluateVisitor__extendModules_closure5, A._EvaluateVisitor__topologicalModules_visitModule2, A._EvaluateVisitor__scopeForAtRoot_closure17, A._EvaluateVisitor__scopeForAtRoot_closure18, A._EvaluateVisitor__scopeForAtRoot_closure19, A._EvaluateVisitor__scopeForAtRoot_closure20, A._EvaluateVisitor__scopeForAtRoot_closure21, A._EvaluateVisitor__scopeForAtRoot_closure22, A._EvaluateVisitor_visitDeclaration_closure5, A._EvaluateVisitor_visitEachRule_closure8, A._EvaluateVisitor_visitEachRule_closure9, A._EvaluateVisitor_visitEachRule__closure2, A._EvaluateVisitor_visitEachRule___closure2, A._EvaluateVisitor_visitAtRule_closure8, A._EvaluateVisitor_visitAtRule_closure10, A._EvaluateVisitor_visitForRule__closure2, A._EvaluateVisitor_visitForwardRule_closure5, A._EvaluateVisitor_visitForwardRule_closure6, A._EvaluateVisitor_visitIfRule__closure2, A._EvaluateVisitor__visitDynamicImport__closure11, A._EvaluateVisitor__visitDynamicImport__closure12, A._EvaluateVisitor__visitDynamicImport__closure13, A._EvaluateVisitor__visitStaticImport_closure2, A._EvaluateVisitor_visitIncludeRule_closure14, A._EvaluateVisitor_visitMediaRule_closure8, A._EvaluateVisitor_visitMediaRule_closure10, A._EvaluateVisitor_visitStyleRule_closure22, A._EvaluateVisitor_visitStyleRule_closure26, A._EvaluateVisitor_visitSupportsRule_closure6, A._EvaluateVisitor_visitUseRule_closure2, A._EvaluateVisitor_visitWhileRule__closure2, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation2, A._EvaluateVisitor_visitListExpression_closure2, A._EvaluateVisitor__runUserDefinedCallable____closure2, A._EvaluateVisitor__runBuiltInCallable_closure6, A._EvaluateVisitor__evaluateArguments_closure11, A._EvaluateVisitor__evaluateArguments_closure12, A._EvaluateVisitor__evaluateArguments_closure14, A._EvaluateVisitor__evaluateMacroArguments_closure11, A._EvaluateVisitor__evaluateMacroArguments_closure12, A._EvaluateVisitor__evaluateMacroArguments_closure14, A._EvaluateVisitor_visitStringExpression_closure2, A._EvaluateVisitor_visitCssAtRule_closure6, A._EvaluateVisitor_visitCssKeyframeBlock_closure6, A._EvaluateVisitor_visitCssMediaRule_closure8, A._EvaluateVisitor_visitCssMediaRule_closure10, A._EvaluateVisitor_visitCssStyleRule_closure6, A._EvaluateVisitor_visitCssSupportsRule_closure6, A._EvaluateVisitor__performInterpolation_closure2, A._EvaluateVisitor__withoutSlash_recommendation2, A._EvaluateVisitor__stackFrame_closure2, A._EvaluateVisitor__stackTrace_closure2, A._ImportedCssVisitor_visitCssAtRule_closure2, A._ImportedCssVisitor_visitCssMediaRule_closure2, A._ImportedCssVisitor_visitCssStyleRule_closure2, A._ImportedCssVisitor_visitCssSupportsRule_closure2, A.AsyncImportCache_humanize_closure2, A.AsyncImportCache_humanize_closure3, A.AsyncImportCache_humanize_closure4, A.legacyBooleanClass__closure, A.legacyBooleanClass__closure0, A.booleanClass__closure, A.BuiltInCallable$mixin_closure0, A.CalculationExpression__verifyArguments_closure0, A.SassCalculation__verifyLength_closure0, A.global_closure30, A.global_closure31, A.global_closure32, A.global_closure33, A.global_closure34, A.global_closure35, A.global_closure36, A.global_closure37, A.global_closure38, A.global_closure39, A.global_closure40, A.global_closure41, A.global_closure42, A.global_closure43, A.global_closure44, A.global_closure45, A.global_closure46, A.global_closure47, A.global_closure48, A.global_closure49, A.global_closure50, A.global_closure51, A.global_closure52, A.global_closure53, A.global_closure54, A.global_closure55, A.global__closure0, A.global_closure56, A.module_closure8, A.module_closure9, A.module_closure10, A.module_closure11, A.module_closure12, A.module_closure13, A.module_closure14, A.module_closure15, A.module__closure0, A.module_closure16, A._red_closure0, A._green_closure0, A._blue_closure0, A._mix_closure0, A._hue_closure0, A._saturation_closure0, A._lightness_closure0, A._complement_closure0, A._adjust_closure0, A._scale_closure0, A._change_closure0, A._ieHexStr_closure0, A._ieHexStr_closure_hexString0, A._updateComponents_getParam0, A._updateComponents_closure0, A._updateComponents_updateValue0, A._functionString_closure0, A._removedColorFunction_closure0, A._rgb_closure0, A._hsl_closure0, A._removeUnits_closure1, A._removeUnits_closure2, A._hwb_closure0, A._parseChannels_closure0, A.legacyColorClass_closure, A.legacyColorClass_closure0, A.legacyColorClass_closure1, A.legacyColorClass_closure2, A.legacyColorClass_closure3, A.colorClass__closure1, A.colorClass__closure2, A.colorClass__closure3, A.colorClass__closure4, A.colorClass__closure5, A.colorClass__closure6, A.colorClass__closure7, A.colorClass__closure8, A.colorClass__closure9, A.SassColor_SassColor$hwb_toRgb0, A.compileAsync__closure, A.compileStringAsync__closure, A.compileStringAsync__closure0, A._wrapAsyncSassExceptions_closure, A._parseFunctions__closure2, A._parseFunctions__closure3, A._compileStylesheet_closure1, A.ComplexSelector_isInvisible_closure0, A.CompoundSelector_isInvisible_closure0, A.Configuration_toString_closure0, A._disallowedFunctionNames_closure0, A.EachRule_toString_closure0, A.Environment_importForwards_closure2, A.Environment_importForwards_closure3, A.Environment_importForwards_closure4, A.Environment__getVariableFromGlobalModule_closure0, A.Environment_setVariable_closure3, A.Environment__getFunctionFromGlobalModule_closure0, A.Environment__getMixinFromGlobalModule_closure0, A.Environment_toModule_closure0, A.Environment_toDummyModule_closure0, A.Environment__fromOneModule_closure0, A.Environment__fromOneModule__closure0, A._EnvironmentModule__EnvironmentModule_closure11, A._EnvironmentModule__EnvironmentModule_closure12, A._EnvironmentModule__EnvironmentModule_closure13, A._EnvironmentModule__EnvironmentModule_closure14, A._EnvironmentModule__EnvironmentModule_closure15, A._EnvironmentModule__EnvironmentModule_closure16, A._EvaluateVisitor_closure19, A._EvaluateVisitor_closure20, A._EvaluateVisitor_closure21, A._EvaluateVisitor_closure22, A._EvaluateVisitor_closure23, A._EvaluateVisitor_closure24, A._EvaluateVisitor_closure25, A._EvaluateVisitor_closure26, A._EvaluateVisitor_closure27, A._EvaluateVisitor_closure28, A._EvaluateVisitor__closure6, A._EvaluateVisitor__loadModule__closure1, A._EvaluateVisitor__combineCss_closure5, A._EvaluateVisitor__combineCss_closure6, A._EvaluateVisitor__combineCss_closure7, A._EvaluateVisitor__extendModules_closure3, A._EvaluateVisitor__topologicalModules_visitModule1, A._EvaluateVisitor__scopeForAtRoot_closure11, A._EvaluateVisitor__scopeForAtRoot_closure12, A._EvaluateVisitor__scopeForAtRoot_closure13, A._EvaluateVisitor__scopeForAtRoot_closure14, A._EvaluateVisitor__scopeForAtRoot_closure15, A._EvaluateVisitor__scopeForAtRoot_closure16, A._EvaluateVisitor_visitDeclaration_closure3, A._EvaluateVisitor_visitEachRule_closure5, A._EvaluateVisitor_visitEachRule_closure6, A._EvaluateVisitor_visitEachRule__closure1, A._EvaluateVisitor_visitEachRule___closure1, A._EvaluateVisitor_visitAtRule_closure5, A._EvaluateVisitor_visitAtRule_closure7, A._EvaluateVisitor_visitForRule__closure1, A._EvaluateVisitor_visitForwardRule_closure3, A._EvaluateVisitor_visitForwardRule_closure4, A._EvaluateVisitor_visitIfRule__closure1, A._EvaluateVisitor__visitDynamicImport__closure7, A._EvaluateVisitor__visitDynamicImport__closure8, A._EvaluateVisitor__visitDynamicImport__closure9, A._EvaluateVisitor__visitStaticImport_closure1, A._EvaluateVisitor_visitIncludeRule_closure10, A._EvaluateVisitor_visitMediaRule_closure5, A._EvaluateVisitor_visitMediaRule_closure7, A._EvaluateVisitor_visitStyleRule_closure15, A._EvaluateVisitor_visitStyleRule_closure19, A._EvaluateVisitor_visitSupportsRule_closure4, A._EvaluateVisitor_visitUseRule_closure1, A._EvaluateVisitor_visitWhileRule__closure1, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation1, A._EvaluateVisitor_visitListExpression_closure1, A._EvaluateVisitor__runUserDefinedCallable____closure1, A._EvaluateVisitor__runBuiltInCallable_closure4, A._EvaluateVisitor__evaluateArguments_closure7, A._EvaluateVisitor__evaluateArguments_closure8, A._EvaluateVisitor__evaluateArguments_closure10, A._EvaluateVisitor__evaluateMacroArguments_closure7, A._EvaluateVisitor__evaluateMacroArguments_closure8, A._EvaluateVisitor__evaluateMacroArguments_closure10, A._EvaluateVisitor_visitStringExpression_closure1, A._EvaluateVisitor_visitCssAtRule_closure4, A._EvaluateVisitor_visitCssKeyframeBlock_closure4, A._EvaluateVisitor_visitCssMediaRule_closure5, A._EvaluateVisitor_visitCssMediaRule_closure7, A._EvaluateVisitor_visitCssStyleRule_closure4, A._EvaluateVisitor_visitCssSupportsRule_closure4, A._EvaluateVisitor__performInterpolation_closure1, A._EvaluateVisitor__withoutSlash_recommendation1, A._EvaluateVisitor__stackFrame_closure1, A._EvaluateVisitor__stackTrace_closure1, A._ImportedCssVisitor_visitCssAtRule_closure1, A._ImportedCssVisitor_visitCssMediaRule_closure1, A._ImportedCssVisitor_visitCssStyleRule_closure1, A._ImportedCssVisitor_visitCssSupportsRule_closure1, A.exceptionClass__closure, A.exceptionClass__closure0, A.exceptionClass__closure1, A.ExtensionStore_extensionsWhereTarget_closure0, A.ExtensionStore_addExtensions_closure2, A.ExtensionStore_addExtensions__closure2, A.ExtensionStore_addExtensions__closure3, A.ExtensionStore__extendComplex_closure1, A.ExtensionStore__extendComplex_closure2, A.ExtensionStore__extendComplex__closure1, A.ExtensionStore__extendComplex__closure2, A.ExtensionStore__extendComplex___closure0, A.ExtensionStore__extendCompound_closure4, A.ExtensionStore__extendCompound_closure5, A.ExtensionStore__extendCompound__closure1, A.ExtensionStore__extendCompound__closure2, A.ExtensionStore__extendCompound_closure6, A.ExtensionStore__extendCompound_closure7, A.ExtensionStore__extendCompound_closure8, A.ExtensionStore__extendSimple_withoutPseudo0, A.ExtensionStore__extendSimple_closure1, A.ExtensionStore__extendSimple_closure2, A.ExtensionStore__extendPseudo_closure4, A.ExtensionStore__extendPseudo_closure5, A.ExtensionStore__extendPseudo_closure6, A.ExtensionStore__extendPseudo_closure7, A.ExtensionStore__extendPseudo_closure8, A.ExtensionStore__trim_closure1, A.ExtensionStore__trim_closure2, A.FilesystemImporter_canonicalize_closure0, A.functionClass__closure, A.functionClass__closure0, A.unifyComplex_closure0, A._weaveParents_closure7, A._weaveParents_closure8, A._weaveParents__closure4, A._weaveParents_closure9, A._weaveParents_closure10, A._weaveParents__closure3, A._weaveParents_closure11, A._weaveParents_closure12, A._weaveParents__closure2, A._mustUnify_closure0, A._mustUnify__closure0, A.paths__closure0, A.paths___closure0, A._hasRoot_closure0, A.listIsSuperselector_closure0, A.listIsSuperselector__closure0, A._simpleIsSuperselectorOfCompound_closure0, A._simpleIsSuperselectorOfCompound__closure0, A._selectorPseudoIsSuperselector_closure6, A._selectorPseudoIsSuperselector_closure7, A._selectorPseudoIsSuperselector_closure8, A._selectorPseudoIsSuperselector_closure9, A._selectorPseudoIsSuperselector_closure10, A._selectorPseudoIsSuperselector__closure0, A._selectorPseudoIsSuperselector___closure1, A._selectorPseudoIsSuperselector___closure2, A._selectorPseudoIsSuperselector_closure11, A._selectorPseudoIsSuperselector_closure12, A._selectorPseudoArgs_closure1, A._selectorPseudoArgs_closure2, A.globalFunctions_closure0, A.IDSelector_unify_closure0, A.IfRuleClause$__closure0, A.IfRuleClause$___closure0, A.immutableMapToDartMap_closure, A.NodeImporter__tryPath_closure0, A.ImportCache_humanize_closure2, A.ImportCache_humanize_closure3, A.ImportCache_humanize_closure4, A.Interpolation_toString_closure0, A._realCasePath_helper0, A._realCasePath_helper__closure0, A.render_closure0, A._parseFunctions__closure, A._parseFunctions___closure0, A._parseFunctions__closure0, A._parseFunctions__closure1, A._parseFunctions___closure, A._parseImporter_closure, A._parseImporter__closure, A._parseImporter___closure, A.ListExpression_toString_closure0, A._length_closure2, A._nth_closure0, A._setNth_closure0, A._join_closure0, A._append_closure2, A._zip_closure0, A._zip__closure2, A._zip__closure3, A._zip__closure4, A._index_closure2, A._separator_closure0, A._isBracketed_closure0, A._slash_closure0, A.SelectorList_isInvisible_closure0, A.SelectorList_asSassList_closure0, A.SelectorList_asSassList__closure0, A.SelectorList_unify_closure0, A.SelectorList_unify__closure0, A.SelectorList_unify___closure0, A.SelectorList_resolveParentSelectors_closure0, A.SelectorList_resolveParentSelectors__closure1, A.SelectorList_resolveParentSelectors__closure2, A.SelectorList__complexContainsParentSelector_closure0, A.SelectorList__complexContainsParentSelector__closure0, A.SelectorList__resolveParentSelectorsCompound_closure2, A.SelectorList__resolveParentSelectorsCompound_closure3, A.SelectorList__resolveParentSelectorsCompound_closure4, A.legacyListClass_closure, A.legacyListClass__closure, A.legacyListClass_closure1, A.legacyListClass_closure2, A.legacyListClass_closure4, A.listClass__closure, A.SassList_isBlank_closure0, A.MapExpression_toString_closure0, A._get_closure0, A._set_closure1, A._set__closure2, A._set_closure2, A._set__closure1, A._merge_closure1, A._merge_closure2, A._merge__closure0, A._deepMerge_closure0, A._deepRemove_closure0, A._deepRemove__closure0, A._remove_closure1, A._remove_closure2, A._keys_closure0, A._values_closure0, A._hasKey_closure0, A._modify__modifyNestedMap0, A.legacyMapClass_closure, A.legacyMapClass__closure, A.legacyMapClass__closure0, A.legacyMapClass_closure2, A.legacyMapClass_closure3, A.legacyMapClass_closure4, A.mapClass__closure, A.mapClass__closure0, A._ceil_closure0, A._clamp_closure0, A._floor_closure0, A._max_closure0, A._min_closure0, A._abs_closure0, A._hypot_closure0, A._hypot__closure0, A._log_closure0, A._pow_closure0, A._sqrt_closure0, A._acos_closure0, A._asin_closure0, A._atan_closure0, A._atan2_closure0, A._cos_closure0, A._sin_closure0, A._tan_closure0, A._compatible_closure0, A._isUnitless_closure0, A._unit_closure0, A._percentage_closure0, A._randomFunction_closure0, A._div_closure0, A._numberFunction_closure0, A.global_closure57, A.global_closure58, A.global_closure59, A.global_closure60, A.local_closure1, A.local_closure2, A.local__closure0, A.listDir__closure1, A.listDir__closure2, A.listDir_closure_list0, A.listDir__list_closure0, A.legacyNullClass__closure, A.legacyNumberClass_closure, A.legacyNumberClass_closure0, A.legacyNumberClass_closure2, A._parseNumber_closure, A._parseNumber_closure0, A.numberClass__closure, A.numberClass__closure0, A.numberClass__closure1, A.numberClass__closure2, A.numberClass__closure3, A.numberClass__closure4, A.numberClass__closure5, A.numberClass__closure6, A.numberClass__closure7, A.numberClass__closure8, A.numberClass__closure9, A.numberClass__closure12, A.numberClass__closure13, A.numberClass__closure14, A.numberClass__closure15, A.numberClass__closure16, A.numberClass__closure17, A.numberClass__closure18, A.numberClass__closure19, A.SassNumber__coerceOrConvertValue_closure3, A.SassNumber__coerceOrConvertValue_closure5, A.SassNumber_multiplyUnits_closure3, A.SassNumber_multiplyUnits_closure5, A.SassNumber__areAnyConvertible_closure0, A.SassNumber__canonicalizeUnitList_closure0, A.ParentStatement_closure0, A.ParentStatement__closure0, A.Parser_scanIdentChar_matches0, A._PrefixedKeys_iterator_closure0, A.PseudoSelector_unify_closure0, A.JSClassExtension_setCustomInspect_closure, A._wrapMain_closure, A._wrapMain_closure0, A._nest_closure0, A._nest__closure1, A._append_closure1, A._append__closure1, A._append___closure0, A._extend_closure0, A._replace_closure0, A._unify_closure0, A._isSuperselector_closure0, A._simpleSelectors_closure0, A._simpleSelectors__closure0, A._parse_closure0, A.serialize_closure0, A._SerializeVisitor_visitList_closure2, A._SerializeVisitor_visitList_closure3, A._SerializeVisitor_visitList_closure4, A._SerializeVisitor_visitMap_closure0, A._SerializeVisitor_visitSelectorList_closure0, A.SingleUnitSassNumber__coerceToUnit_closure0, A.SingleUnitSassNumber__coerceValueToUnit_closure0, A.SingleUnitSassNumber_multiplyUnits_closure1, A.SourceMapBuffer_buildSourceMap_closure0, A.updateSourceSpanPrototype_closure, A.updateSourceSpanPrototype_closure0, A.updateSourceSpanPrototype_closure1, A.updateSourceSpanPrototype_closure2, A.updateSourceSpanPrototype_closure3, A.updateSourceSpanPrototype_closure4, A.updateSourceSpanPrototype_closure5, A.StatementSearchVisitor_visitIfRule_closure1, A.StatementSearchVisitor_visitIfRule__closure2, A.StatementSearchVisitor_visitIfRule_closure2, A.StatementSearchVisitor_visitIfRule__closure1, A.StatementSearchVisitor_visitChildren_closure0, A._unquote_closure0, A._quote_closure0, A._length_closure1, A._insert_closure0, A._index_closure1, A._slice_closure0, A._toUpperCase_closure0, A._toLowerCase_closure0, A._uniqueId_closure0, A.legacyStringClass_closure, A.legacyStringClass_closure0, A.stringClass__closure, A.stringClass__closure0, A.stringClass__closure1, A.stringClass__closure2, A.stringClass__closure3, A.StylesheetParser_parse__closure2, A.StylesheetParser_expression_addSingleExpression0, A.StylesheetParser_expression_addOperator0, A.StylesheetParser__unicodeRange_closure1, A.StylesheetParser__unicodeRange_closure2, A.StylesheetParser_trySpecialFunction_closure0, A.TerseLogger_summarize_closure1, A.TerseLogger_summarize_closure2, A._UnprefixedKeys_iterator_closure1, A._UnprefixedKeys_iterator_closure2, A._exactlyOne_closure0, A.futureToPromise__closure0, A.indent_closure0, A.flattenVertically_closure1, A.flattenVertically_closure2, A.valueClass__closure, A.valueClass__closure0, A.valueClass__closure1, A.valueClass__closure2, A.valueClass__closure3, A.valueClass__closure4, A.valueClass__closure5, A.valueClass__closure7, A.valueClass__closure8, A.valueClass__closure9, A.valueClass__closure10, A.valueClass__closure11, A.valueClass__closure12, A.valueClass__closure13, A.valueClass__closure15, A.valueClass__closure16]);
97193
- _inheritMany(A.Closure2Args, [A._CastListBase_sort_closure, A.CastMap_forEach_closure, A.Primitives_functionNoSuchMethod_closure, A.JsLinkedHashMap_addAll_closure, A.initHooks_closure0, A._awaitOnObject_closure0, A._wrapJsFunctionForAsync_closure, A.Future_wait_handleError, A._Future__chainForeignFuture_closure0, A.Stream_Stream$fromFuture_closure0, A._HashMap_addAll_closure, A.HashMap_HashMap$from_closure, A.LinkedHashMap_LinkedHashMap$from_closure, A.MapBase_mapToString_closure, A._JsonStringifier_writeMap_closure, A.NoSuchMethodError_toString_closure, A.Uri__parseIPv4Address_error, A.Uri_parseIPv6Address_parseHex, A._createTables_build, A.Parser_parse_closure, A.StreamQueue__ensureListening_closure1, A.futureToPromise_closure, A.PathMap__create_closure, A.IfRule_toString_closure, A.ExtensionStore_addExtensions_closure, A.ExtensionStore_addExtensions__closure1, A.ExtensionStore_clone_closure, A._weaveParents_closure, A.paths_closure, A._updateComponents_updateRgb, A._deepMergeImpl_closure, A._nest__closure0, A._append__closure0, A.StylesheetParser__declarationOrBuffer_closure, A.StylesheetParser__declarationOrBuffer_closure0, A.StylesheetParser__styleRule_closure, A.StylesheetParser__propertyOrVariableDeclaration_closure, A.StylesheetParser__propertyOrVariableDeclaration_closure0, A.StylesheetParser__atRootRule_closure, A.StylesheetParser__atRootRule_closure0, A.StylesheetParser__eachRule_closure, A.StylesheetParser__functionRule_closure, A.StylesheetParser__forRule_closure0, A.StylesheetParser__includeRule_closure, A.StylesheetParser_mediaRule_closure, A.StylesheetParser__mixinRule_closure, A.StylesheetParser_mozDocumentRule_closure, A.StylesheetParser_supportsRule_closure, A.StylesheetParser__whileRule_closure, A.StylesheetParser_unknownAtRule_closure, A.StylesheetGraph__recanonicalizeImportsForNode_closure, A.longestCommonSubsequence_closure, A.longestCommonSubsequence_backtrack, A.mapAddAll2_closure, A.SassMap_asList_closure, A.SassNumber_plus_closure, A.SassNumber_minus_closure, A.SassNumber__canonicalMultiplier_closure, A._EvaluateVisitor__closure2, A._EvaluateVisitor__evaluateArguments_closure5, A._EvaluateVisitor__evaluateMacroArguments_closure5, A._EvaluateVisitor__addRestMap_closure0, A._EvaluateVisitor__closure, A._EvaluateVisitor__evaluateArguments_closure1, A._EvaluateVisitor__evaluateMacroArguments_closure1, A._EvaluateVisitor__addRestMap_closure, A.SingleMapping_toJson_closure0, A.Highlighter__collateLines_closure0, A.Frame_Frame$parseV8_closure_parseLocation, A.TransformByHandlers_transformByHandlers__closure1, A.RateLimit__debounceAggregate_closure, A._EvaluateVisitor__closure8, A._EvaluateVisitor__evaluateArguments_closure13, A._EvaluateVisitor__evaluateMacroArguments_closure13, A._EvaluateVisitor__addRestMap_closure2, A._updateComponents_updateRgb0, A.legacyColorClass_closure4, A.legacyColorClass_closure5, A.legacyColorClass_closure6, A.legacyColorClass_closure7, A.colorClass__closure, A.colorClass__closure0, A._parseFunctions_closure0, A._EvaluateVisitor__closure5, A._EvaluateVisitor__evaluateArguments_closure9, A._EvaluateVisitor__evaluateMacroArguments_closure9, A._EvaluateVisitor__addRestMap_closure1, A.ExtensionStore_addExtensions_closure1, A.ExtensionStore_addExtensions__closure4, A.ExtensionStore_clone_closure0, A._weaveParents_closure6, A.paths_closure0, A.IfRule_toString_closure0, A.render_closure1, A._parseFunctions_closure, A.legacyListClass_closure0, A.legacyListClass_closure3, A.listClass__closure0, A._deepMergeImpl_closure0, A.legacyMapClass_closure0, A.legacyMapClass_closure1, A.mapClass__closure1, A.SassMap_asList_closure0, A.main_closure0, A.main_closure1, A.legacyNumberClass_closure1, A.legacyNumberClass_closure3, A.numberClass__closure10, A.numberClass__closure11, A.SassNumber_plus_closure0, A.SassNumber_minus_closure0, A.SassNumber__canonicalMultiplier_closure0, A.JSClassExtension_get_defineMethod_closure, A.JSClassExtension_get_defineGetter_closure, A.main_printError, A._nest__closure2, A._append__closure2, A.legacyStringClass_closure1, A.StylesheetParser__declarationOrBuffer_closure1, A.StylesheetParser__declarationOrBuffer_closure2, A.StylesheetParser__styleRule_closure0, A.StylesheetParser__propertyOrVariableDeclaration_closure1, A.StylesheetParser__propertyOrVariableDeclaration_closure2, A.StylesheetParser__atRootRule_closure1, A.StylesheetParser__atRootRule_closure2, A.StylesheetParser__eachRule_closure0, A.StylesheetParser__functionRule_closure0, A.StylesheetParser__forRule_closure2, A.StylesheetParser__includeRule_closure0, A.StylesheetParser_mediaRule_closure0, A.StylesheetParser__mixinRule_closure0, A.StylesheetParser_mozDocumentRule_closure0, A.StylesheetParser_supportsRule_closure0, A.StylesheetParser__whileRule_closure0, A.StylesheetParser_unknownAtRule_closure0, A.futureToPromise_closure0, A.futureToPromise__closure1, A.objectToMap_closure, A.longestCommonSubsequence_closure0, A.longestCommonSubsequence_backtrack0, A.mapAddAll2_closure0, A.valueClass__closure6, A.valueClass__closure14]);
97453
+ _inheritMany(A.Closure, [A.Closure2Args, A.CastMap_entries_closure, A.Closure0Args, A.ConstantStringMap_values_closure, A.Instantiation, A.TearOffClosure, A.JsLinkedHashMap_values_closure, A.initHooks_closure, A.initHooks_closure1, A._AsyncRun__initializeScheduleImmediate_internalCallback, A._AsyncRun__initializeScheduleImmediate_closure, A._awaitOnObject_closure, A.Future_wait_closure, A._Future__chainForeignFuture_closure, A._Future__propagateToListeners_handleWhenCompleteCallback_closure, A.Stream_Stream$fromFuture_closure, A.Stream_length_closure, A._CustomZone_bindUnaryCallback_closure, A._RootZone_bindUnaryCallback_closure, A._HashMap_values_closure, A._LinkedCustomHashMap_closure, A.MapMixin_entries_closure, A._Uri__makePath_closure, A._createTables_setChars, A._createTables_setRange, A._convertDataTree__convert, A.ArgParser__addOption_closure, A._Usage__writeOption_closure, A._Usage__buildAllowedList_closure, A.StreamGroup__onListen_closure, A.StreamGroup__onCancel_closure, A.StreamQueue__ensureListening_closure, A.alwaysValid_closure, A.ReplAdapter_runAsync__closure, A.MapKeySet_difference_closure, A.promiseToFuture_closure, A.promiseToFuture_closure0, A.futureToPromise__closure, A.Context_joinAll_closure, A.Context_split_closure, A._validateArgList_closure, A.ParsedPath__splitExtension_closure, A.PathMap__create_closure0, A.PathMap__create_closure1, A.WindowsStyle_absolutePathToUri_closure, A.ArgumentDeclaration_verify_closure, A.ArgumentDeclaration_verify_closure0, A.CalculationExpression__verifyArguments_closure, A.ListExpression_toString_closure, A.MapExpression_toString_closure, A.Interpolation_toString_closure, A.EachRule_toString_closure, A.IfRuleClause$__closure, A.IfRuleClause$___closure, A.ParentStatement_closure, A.ParentStatement__closure, A.ComplexSelector_isInvisible_closure, A.CompoundSelector_isInvisible_closure, A.IDSelector_unify_closure, A.SelectorList_isInvisible_closure, A.SelectorList_asSassList_closure, A.SelectorList_asSassList__closure, A.SelectorList_unify_closure, A.SelectorList_unify__closure, A.SelectorList_unify___closure, A.SelectorList_resolveParentSelectors_closure, A.SelectorList_resolveParentSelectors__closure, A.SelectorList_resolveParentSelectors__closure0, A.SelectorList__complexContainsParentSelector_closure, A.SelectorList__complexContainsParentSelector__closure, A.SelectorList__resolveParentSelectorsCompound_closure, A.SelectorList__resolveParentSelectorsCompound_closure0, A.SelectorList__resolveParentSelectorsCompound_closure1, A.PseudoSelector_unify_closure, A._compileStylesheet_closure0, A.AsyncEnvironment_importForwards_closure, A.AsyncEnvironment_importForwards_closure0, A.AsyncEnvironment_importForwards_closure1, A.AsyncEnvironment__getVariableFromGlobalModule_closure, A.AsyncEnvironment_setVariable_closure0, A.AsyncEnvironment__getFunctionFromGlobalModule_closure, A.AsyncEnvironment__getMixinFromGlobalModule_closure, A.AsyncEnvironment_toModule_closure, A.AsyncEnvironment_toDummyModule_closure, A.AsyncEnvironment__fromOneModule_closure, A.AsyncEnvironment__fromOneModule__closure, A._EnvironmentModule__EnvironmentModule_closure5, A._EnvironmentModule__EnvironmentModule_closure6, A._EnvironmentModule__EnvironmentModule_closure7, A._EnvironmentModule__EnvironmentModule_closure8, A._EnvironmentModule__EnvironmentModule_closure9, A._EnvironmentModule__EnvironmentModule_closure10, A.AsyncImportCache_humanize_closure, A.AsyncImportCache_humanize_closure0, A.AsyncImportCache_humanize_closure1, A.AsyncBuiltInCallable$mixin_closure, A.BuiltInCallable$mixin_closure, A._compileStylesheet_closure, A.Configuration_toString_closure, A.Environment_importForwards_closure, A.Environment_importForwards_closure0, A.Environment_importForwards_closure1, A.Environment__getVariableFromGlobalModule_closure, A.Environment_setVariable_closure0, A.Environment__getFunctionFromGlobalModule_closure, A.Environment__getMixinFromGlobalModule_closure, A.Environment_toModule_closure, A.Environment_toDummyModule_closure, A.Environment__fromOneModule_closure, A.Environment__fromOneModule__closure, A._EnvironmentModule__EnvironmentModule_closure, A._EnvironmentModule__EnvironmentModule_closure0, A._EnvironmentModule__EnvironmentModule_closure1, A._EnvironmentModule__EnvironmentModule_closure2, A._EnvironmentModule__EnvironmentModule_closure3, A._EnvironmentModule__EnvironmentModule_closure4, A._writeSourceMap_closure, A.ExecutableOptions_emitErrorCss_closure, A.watch_closure, A._Watcher__debounceEvents_closure, A.ExtensionStore_extensionsWhereTarget_closure, A.ExtensionStore_addExtensions_closure0, A.ExtensionStore_addExtensions__closure, A.ExtensionStore_addExtensions__closure0, A.ExtensionStore__extendComplex_closure, A.ExtensionStore__extendComplex_closure0, A.ExtensionStore__extendComplex__closure, A.ExtensionStore__extendComplex__closure0, A.ExtensionStore__extendComplex___closure, A.ExtensionStore__extendCompound_closure, A.ExtensionStore__extendCompound_closure0, A.ExtensionStore__extendCompound__closure, A.ExtensionStore__extendCompound__closure0, A.ExtensionStore__extendCompound_closure1, A.ExtensionStore__extendCompound_closure2, A.ExtensionStore__extendCompound_closure3, A.ExtensionStore__extendSimple_withoutPseudo, A.ExtensionStore__extendSimple_closure, A.ExtensionStore__extendSimple_closure0, A.ExtensionStore__extendPseudo_closure, A.ExtensionStore__extendPseudo_closure0, A.ExtensionStore__extendPseudo_closure1, A.ExtensionStore__extendPseudo_closure2, A.ExtensionStore__extendPseudo_closure3, A.ExtensionStore__trim_closure, A.ExtensionStore__trim_closure0, A.unifyComplex_closure, A._weaveParents_closure0, A._weaveParents_closure1, A._weaveParents__closure1, A._weaveParents_closure2, A._weaveParents_closure3, A._weaveParents__closure0, A._weaveParents_closure4, A._weaveParents_closure5, A._weaveParents__closure, A._mustUnify_closure, A._mustUnify__closure, A.paths__closure, A.paths___closure, A._hasRoot_closure, A.listIsSuperselector_closure, A.listIsSuperselector__closure, A._simpleIsSuperselectorOfCompound_closure, A._simpleIsSuperselectorOfCompound__closure, A._selectorPseudoIsSuperselector_closure, A._selectorPseudoIsSuperselector_closure0, A._selectorPseudoIsSuperselector_closure1, A._selectorPseudoIsSuperselector_closure2, A._selectorPseudoIsSuperselector_closure3, A._selectorPseudoIsSuperselector__closure, A._selectorPseudoIsSuperselector___closure, A._selectorPseudoIsSuperselector___closure0, A._selectorPseudoIsSuperselector_closure4, A._selectorPseudoIsSuperselector_closure5, A._selectorPseudoArgs_closure, A._selectorPseudoArgs_closure0, A.globalFunctions_closure, A.global_closure, A.global_closure0, A.global_closure1, A.global_closure2, A.global_closure3, A.global_closure4, A.global_closure5, A.global_closure6, A.global_closure7, A.global_closure8, A.global_closure9, A.global_closure10, A.global_closure11, A.global_closure12, A.global_closure13, A.global_closure14, A.global_closure15, A.global_closure16, A.global_closure17, A.global_closure18, A.global_closure19, A.global_closure20, A.global_closure21, A.global_closure22, A.global_closure23, A.global_closure24, A.global__closure, A.global_closure25, A.module_closure, A.module_closure0, A.module_closure1, A.module_closure2, A.module_closure3, A.module_closure4, A.module_closure5, A.module_closure6, A.module__closure, A.module_closure7, A._red_closure, A._green_closure, A._blue_closure, A._mix_closure, A._hue_closure, A._saturation_closure, A._lightness_closure, A._complement_closure, A._adjust_closure, A._scale_closure, A._change_closure, A._ieHexStr_closure, A._ieHexStr_closure_hexString, A._updateComponents_getParam, A._updateComponents_closure, A._updateComponents_updateValue, A._functionString_closure, A._removedColorFunction_closure, A._rgb_closure, A._hsl_closure, A._removeUnits_closure, A._removeUnits_closure0, A._hwb_closure, A._parseChannels_closure, A._length_closure0, A._nth_closure, A._setNth_closure, A._join_closure, A._append_closure0, A._zip_closure, A._zip__closure, A._zip__closure0, A._zip__closure1, A._index_closure0, A._separator_closure, A._isBracketed_closure, A._slash_closure, A._get_closure, A._set_closure, A._set__closure0, A._set_closure0, A._set__closure, A._merge_closure, A._merge_closure0, A._merge__closure, A._deepMerge_closure, A._deepRemove_closure, A._deepRemove__closure, A._remove_closure, A._remove_closure0, A._keys_closure, A._values_closure, A._hasKey_closure, A._modify__modifyNestedMap, A._ceil_closure, A._clamp_closure, A._floor_closure, A._max_closure, A._min_closure, A._abs_closure, A._hypot_closure, A._hypot__closure, A._log_closure, A._pow_closure, A._sqrt_closure, A._acos_closure, A._asin_closure, A._atan_closure, A._atan2_closure, A._cos_closure, A._sin_closure, A._tan_closure, A._compatible_closure, A._isUnitless_closure, A._unit_closure, A._percentage_closure, A._randomFunction_closure, A._div_closure, A._numberFunction_closure, A.global_closure26, A.global_closure27, A.global_closure28, A.global_closure29, A.local_closure, A.local_closure0, A.local__closure, A._nest_closure, A._nest__closure, A._append_closure, A._append__closure, A._append___closure, A._extend_closure, A._replace_closure, A._unify_closure, A._isSuperselector_closure, A._simpleSelectors_closure, A._simpleSelectors__closure, A._parse_closure, A._unquote_closure, A._quote_closure, A._length_closure, A._insert_closure, A._index_closure, A._slice_closure, A._toUpperCase_closure, A._toLowerCase_closure, A._uniqueId_closure, A.ImportCache_humanize_closure, A.ImportCache_humanize_closure0, A.ImportCache_humanize_closure1, A.FilesystemImporter_canonicalize_closure, A._exactlyOne_closure, A._realCasePath_helper, A._realCasePath_helper__closure, A.readStdin_closure, A.readStdin_closure0, A.readStdin_closure1, A.readStdin_closure2, A.listDir__closure, A.listDir__closure0, A.listDir_closure_list, A.listDir__list_closure, A.watchDir_closure, A.watchDir_closure0, A.watchDir_closure1, A.watchDir_closure2, A.TerseLogger_summarize_closure, A.TerseLogger_summarize_closure0, A._disallowedFunctionNames_closure, A.Parser_scanIdentChar_matches, A.StylesheetParser_parse__closure0, A.StylesheetParser_expression_addSingleExpression, A.StylesheetParser_expression_addOperator, A.StylesheetParser__unicodeRange_closure, A.StylesheetParser__unicodeRange_closure0, A.StylesheetParser_trySpecialFunction_closure, A.StylesheetGraph_modifiedSince_transitiveModificationTime, A._PrefixedKeys_iterator_closure, A.SourceMapBuffer_buildSourceMap_closure, A._UnprefixedKeys_iterator_closure, A._UnprefixedKeys_iterator_closure0, A.indent_closure, A.flattenVertically_closure, A.flattenVertically_closure0, A.SassCalculation__verifyLength_closure, A.SassColor_SassColor$hwb_toRgb, A.SassList_isBlank_closure, A.SassNumber__coerceOrConvertValue_closure, A.SassNumber__coerceOrConvertValue_closure1, A.SassNumber_multiplyUnits_closure, A.SassNumber_multiplyUnits_closure1, A.SassNumber__areAnyConvertible_closure, A.SassNumber__canonicalizeUnitList_closure, A.SingleUnitSassNumber__coerceToUnit_closure, A.SingleUnitSassNumber__coerceValueToUnit_closure, A.SingleUnitSassNumber_multiplyUnits_closure, A._EvaluateVisitor_closure9, A._EvaluateVisitor_closure10, A._EvaluateVisitor_closure11, A._EvaluateVisitor_closure12, A._EvaluateVisitor_closure13, A._EvaluateVisitor_closure14, A._EvaluateVisitor_closure15, A._EvaluateVisitor_closure16, A._EvaluateVisitor_closure17, A._EvaluateVisitor_closure18, A._EvaluateVisitor__closure3, A._EvaluateVisitor__loadModule__closure0, A._EvaluateVisitor__combineCss_closure2, A._EvaluateVisitor__combineCss_closure3, A._EvaluateVisitor__combineCss_closure4, A._EvaluateVisitor__extendModules_closure1, A._EvaluateVisitor__topologicalModules_visitModule0, A._EvaluateVisitor__scopeForAtRoot_closure5, A._EvaluateVisitor__scopeForAtRoot_closure6, A._EvaluateVisitor__scopeForAtRoot_closure7, A._EvaluateVisitor__scopeForAtRoot_closure8, A._EvaluateVisitor__scopeForAtRoot_closure9, A._EvaluateVisitor__scopeForAtRoot_closure10, A._EvaluateVisitor_visitDeclaration_closure1, A._EvaluateVisitor_visitEachRule_closure2, A._EvaluateVisitor_visitEachRule_closure3, A._EvaluateVisitor_visitEachRule__closure0, A._EvaluateVisitor_visitEachRule___closure0, A._EvaluateVisitor_visitAtRule_closure2, A._EvaluateVisitor_visitAtRule_closure4, A._EvaluateVisitor_visitForRule__closure0, A._EvaluateVisitor_visitForwardRule_closure1, A._EvaluateVisitor_visitForwardRule_closure2, A._EvaluateVisitor_visitIfRule__closure0, A._EvaluateVisitor__visitDynamicImport__closure3, A._EvaluateVisitor__visitDynamicImport__closure4, A._EvaluateVisitor__visitDynamicImport__closure5, A._EvaluateVisitor__visitStaticImport_closure0, A._EvaluateVisitor_visitIncludeRule_closure6, A._EvaluateVisitor_visitMediaRule_closure2, A._EvaluateVisitor_visitMediaRule_closure4, A._EvaluateVisitor_visitStyleRule_closure8, A._EvaluateVisitor_visitStyleRule_closure12, A._EvaluateVisitor_visitSupportsRule_closure2, A._EvaluateVisitor_visitUseRule_closure0, A._EvaluateVisitor_visitWhileRule__closure0, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation0, A._EvaluateVisitor_visitListExpression_closure0, A._EvaluateVisitor__runUserDefinedCallable____closure0, A._EvaluateVisitor__runBuiltInCallable_closure2, A._EvaluateVisitor__evaluateArguments_closure3, A._EvaluateVisitor__evaluateArguments_closure4, A._EvaluateVisitor__evaluateArguments_closure6, A._EvaluateVisitor__evaluateMacroArguments_closure3, A._EvaluateVisitor__evaluateMacroArguments_closure4, A._EvaluateVisitor__evaluateMacroArguments_closure6, A._EvaluateVisitor_visitStringExpression_closure0, A._EvaluateVisitor_visitCssAtRule_closure2, A._EvaluateVisitor_visitCssKeyframeBlock_closure2, A._EvaluateVisitor_visitCssMediaRule_closure2, A._EvaluateVisitor_visitCssMediaRule_closure4, A._EvaluateVisitor_visitCssStyleRule_closure2, A._EvaluateVisitor_visitCssSupportsRule_closure2, A._EvaluateVisitor__performInterpolation_closure0, A._EvaluateVisitor__withoutSlash_recommendation0, A._EvaluateVisitor__stackFrame_closure0, A._EvaluateVisitor__stackTrace_closure0, A._ImportedCssVisitor_visitCssAtRule_closure0, A._ImportedCssVisitor_visitCssMediaRule_closure0, A._ImportedCssVisitor_visitCssStyleRule_closure0, A._ImportedCssVisitor_visitCssSupportsRule_closure0, A._EvaluateVisitor_closure, A._EvaluateVisitor_closure0, A._EvaluateVisitor_closure1, A._EvaluateVisitor_closure2, A._EvaluateVisitor_closure3, A._EvaluateVisitor_closure4, A._EvaluateVisitor_closure5, A._EvaluateVisitor_closure6, A._EvaluateVisitor_closure7, A._EvaluateVisitor_closure8, A._EvaluateVisitor__closure0, A._EvaluateVisitor__loadModule__closure, A._EvaluateVisitor__combineCss_closure, A._EvaluateVisitor__combineCss_closure0, A._EvaluateVisitor__combineCss_closure1, A._EvaluateVisitor__extendModules_closure, A._EvaluateVisitor__topologicalModules_visitModule, A._EvaluateVisitor__scopeForAtRoot_closure, A._EvaluateVisitor__scopeForAtRoot_closure0, A._EvaluateVisitor__scopeForAtRoot_closure1, A._EvaluateVisitor__scopeForAtRoot_closure2, A._EvaluateVisitor__scopeForAtRoot_closure3, A._EvaluateVisitor__scopeForAtRoot_closure4, A._EvaluateVisitor_visitDeclaration_closure, A._EvaluateVisitor_visitEachRule_closure, A._EvaluateVisitor_visitEachRule_closure0, A._EvaluateVisitor_visitEachRule__closure, A._EvaluateVisitor_visitEachRule___closure, A._EvaluateVisitor_visitAtRule_closure, A._EvaluateVisitor_visitAtRule_closure1, A._EvaluateVisitor_visitForRule__closure, A._EvaluateVisitor_visitForwardRule_closure, A._EvaluateVisitor_visitForwardRule_closure0, A._EvaluateVisitor_visitIfRule__closure, A._EvaluateVisitor__visitDynamicImport__closure, A._EvaluateVisitor__visitDynamicImport__closure0, A._EvaluateVisitor__visitDynamicImport__closure1, A._EvaluateVisitor__visitStaticImport_closure, A._EvaluateVisitor_visitIncludeRule_closure2, A._EvaluateVisitor_visitMediaRule_closure, A._EvaluateVisitor_visitMediaRule_closure1, A._EvaluateVisitor_visitStyleRule_closure1, A._EvaluateVisitor_visitStyleRule_closure5, A._EvaluateVisitor_visitSupportsRule_closure0, A._EvaluateVisitor_visitUseRule_closure, A._EvaluateVisitor_visitWhileRule__closure, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation, A._EvaluateVisitor_visitListExpression_closure, A._EvaluateVisitor__runUserDefinedCallable____closure, A._EvaluateVisitor__runBuiltInCallable_closure0, A._EvaluateVisitor__evaluateArguments_closure, A._EvaluateVisitor__evaluateArguments_closure0, A._EvaluateVisitor__evaluateArguments_closure2, A._EvaluateVisitor__evaluateMacroArguments_closure, A._EvaluateVisitor__evaluateMacroArguments_closure0, A._EvaluateVisitor__evaluateMacroArguments_closure2, A._EvaluateVisitor_visitStringExpression_closure, A._EvaluateVisitor_visitCssAtRule_closure0, A._EvaluateVisitor_visitCssKeyframeBlock_closure0, A._EvaluateVisitor_visitCssMediaRule_closure, A._EvaluateVisitor_visitCssMediaRule_closure1, A._EvaluateVisitor_visitCssStyleRule_closure0, A._EvaluateVisitor_visitCssSupportsRule_closure0, A._EvaluateVisitor__performInterpolation_closure, A._EvaluateVisitor__withoutSlash_recommendation, A._EvaluateVisitor__stackFrame_closure, A._EvaluateVisitor__stackTrace_closure, A._ImportedCssVisitor_visitCssAtRule_closure, A._ImportedCssVisitor_visitCssMediaRule_closure, A._ImportedCssVisitor_visitCssStyleRule_closure, A._ImportedCssVisitor_visitCssSupportsRule_closure, A.serialize_closure, A._SerializeVisitor_visitList_closure, A._SerializeVisitor_visitList_closure0, A._SerializeVisitor_visitList_closure1, A._SerializeVisitor_visitMap_closure, A._SerializeVisitor_visitSelectorList_closure, A.StatementSearchVisitor_visitIfRule_closure, A.StatementSearchVisitor_visitIfRule__closure0, A.StatementSearchVisitor_visitIfRule_closure0, A.StatementSearchVisitor_visitIfRule__closure, A.StatementSearchVisitor_visitChildren_closure, A.SingleMapping_SingleMapping$fromEntries_closure1, A.SingleMapping_toJson_closure, A.Highlighter$__closure, A.Highlighter$___closure, A.Highlighter$__closure0, A.Highlighter__collateLines_closure, A.Highlighter__collateLines_closure1, A.Highlighter__collateLines__closure, A.Highlighter_highlight_closure, A.Chain_Chain$parse_closure, A.Chain_Chain$parse_closure0, A.Chain_Chain$parse_closure1, A.Chain_toTrace_closure, A.Chain_toString_closure0, A.Chain_toString__closure0, A.Chain_toString_closure, A.Chain_toString__closure, A.Trace__parseVM_closure, A.Trace__parseVM_closure0, A.Trace$parseV8_closure, A.Trace$parseV8_closure0, A.Trace$parseJSCore_closure, A.Trace$parseJSCore_closure0, A.Trace$parseFirefox_closure, A.Trace$parseFirefox_closure0, A.Trace$parseFriendly_closure, A.Trace$parseFriendly_closure0, A.Trace_terse_closure, A.Trace_foldFrames_closure, A.Trace_foldFrames_closure0, A.Trace_toString_closure0, A.Trace_toString_closure, A.TransformByHandlers_transformByHandlers__closure, A.RateLimit__debounceAggregate_closure0, A.ArgumentDeclaration_verify_closure1, A.ArgumentDeclaration_verify_closure2, A.argumentListClass__closure, A.argumentListClass__closure0, A.AsyncBuiltInCallable$mixin_closure0, A._compileStylesheet_closure2, A.AsyncEnvironment_importForwards_closure2, A.AsyncEnvironment_importForwards_closure3, A.AsyncEnvironment_importForwards_closure4, A.AsyncEnvironment__getVariableFromGlobalModule_closure0, A.AsyncEnvironment_setVariable_closure3, A.AsyncEnvironment__getFunctionFromGlobalModule_closure0, A.AsyncEnvironment__getMixinFromGlobalModule_closure0, A.AsyncEnvironment_toModule_closure0, A.AsyncEnvironment_toDummyModule_closure0, A.AsyncEnvironment__fromOneModule_closure0, A.AsyncEnvironment__fromOneModule__closure0, A._EnvironmentModule__EnvironmentModule_closure17, A._EnvironmentModule__EnvironmentModule_closure18, A._EnvironmentModule__EnvironmentModule_closure19, A._EnvironmentModule__EnvironmentModule_closure20, A._EnvironmentModule__EnvironmentModule_closure21, A._EnvironmentModule__EnvironmentModule_closure22, A._EvaluateVisitor_closure29, A._EvaluateVisitor_closure30, A._EvaluateVisitor_closure31, A._EvaluateVisitor_closure32, A._EvaluateVisitor_closure33, A._EvaluateVisitor_closure34, A._EvaluateVisitor_closure35, A._EvaluateVisitor_closure36, A._EvaluateVisitor_closure37, A._EvaluateVisitor_closure38, A._EvaluateVisitor__closure9, A._EvaluateVisitor__loadModule__closure2, A._EvaluateVisitor__combineCss_closure8, A._EvaluateVisitor__combineCss_closure9, A._EvaluateVisitor__combineCss_closure10, A._EvaluateVisitor__extendModules_closure5, A._EvaluateVisitor__topologicalModules_visitModule2, A._EvaluateVisitor__scopeForAtRoot_closure17, A._EvaluateVisitor__scopeForAtRoot_closure18, A._EvaluateVisitor__scopeForAtRoot_closure19, A._EvaluateVisitor__scopeForAtRoot_closure20, A._EvaluateVisitor__scopeForAtRoot_closure21, A._EvaluateVisitor__scopeForAtRoot_closure22, A._EvaluateVisitor_visitDeclaration_closure5, A._EvaluateVisitor_visitEachRule_closure8, A._EvaluateVisitor_visitEachRule_closure9, A._EvaluateVisitor_visitEachRule__closure2, A._EvaluateVisitor_visitEachRule___closure2, A._EvaluateVisitor_visitAtRule_closure8, A._EvaluateVisitor_visitAtRule_closure10, A._EvaluateVisitor_visitForRule__closure2, A._EvaluateVisitor_visitForwardRule_closure5, A._EvaluateVisitor_visitForwardRule_closure6, A._EvaluateVisitor_visitIfRule__closure2, A._EvaluateVisitor__visitDynamicImport__closure11, A._EvaluateVisitor__visitDynamicImport__closure12, A._EvaluateVisitor__visitDynamicImport__closure13, A._EvaluateVisitor__visitStaticImport_closure2, A._EvaluateVisitor_visitIncludeRule_closure14, A._EvaluateVisitor_visitMediaRule_closure8, A._EvaluateVisitor_visitMediaRule_closure10, A._EvaluateVisitor_visitStyleRule_closure22, A._EvaluateVisitor_visitStyleRule_closure26, A._EvaluateVisitor_visitSupportsRule_closure6, A._EvaluateVisitor_visitUseRule_closure2, A._EvaluateVisitor_visitWhileRule__closure2, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation2, A._EvaluateVisitor_visitListExpression_closure2, A._EvaluateVisitor__runUserDefinedCallable____closure2, A._EvaluateVisitor__runBuiltInCallable_closure6, A._EvaluateVisitor__evaluateArguments_closure11, A._EvaluateVisitor__evaluateArguments_closure12, A._EvaluateVisitor__evaluateArguments_closure14, A._EvaluateVisitor__evaluateMacroArguments_closure11, A._EvaluateVisitor__evaluateMacroArguments_closure12, A._EvaluateVisitor__evaluateMacroArguments_closure14, A._EvaluateVisitor_visitStringExpression_closure2, A._EvaluateVisitor_visitCssAtRule_closure6, A._EvaluateVisitor_visitCssKeyframeBlock_closure6, A._EvaluateVisitor_visitCssMediaRule_closure8, A._EvaluateVisitor_visitCssMediaRule_closure10, A._EvaluateVisitor_visitCssStyleRule_closure6, A._EvaluateVisitor_visitCssSupportsRule_closure6, A._EvaluateVisitor__performInterpolation_closure2, A._EvaluateVisitor__withoutSlash_recommendation2, A._EvaluateVisitor__stackFrame_closure2, A._EvaluateVisitor__stackTrace_closure2, A._ImportedCssVisitor_visitCssAtRule_closure2, A._ImportedCssVisitor_visitCssMediaRule_closure2, A._ImportedCssVisitor_visitCssStyleRule_closure2, A._ImportedCssVisitor_visitCssSupportsRule_closure2, A.AsyncImportCache_humanize_closure2, A.AsyncImportCache_humanize_closure3, A.AsyncImportCache_humanize_closure4, A.legacyBooleanClass__closure, A.legacyBooleanClass__closure0, A.booleanClass__closure, A.BuiltInCallable$mixin_closure0, A.CalculationExpression__verifyArguments_closure0, A.SassCalculation__verifyLength_closure0, A.global_closure30, A.global_closure31, A.global_closure32, A.global_closure33, A.global_closure34, A.global_closure35, A.global_closure36, A.global_closure37, A.global_closure38, A.global_closure39, A.global_closure40, A.global_closure41, A.global_closure42, A.global_closure43, A.global_closure44, A.global_closure45, A.global_closure46, A.global_closure47, A.global_closure48, A.global_closure49, A.global_closure50, A.global_closure51, A.global_closure52, A.global_closure53, A.global_closure54, A.global_closure55, A.global__closure0, A.global_closure56, A.module_closure8, A.module_closure9, A.module_closure10, A.module_closure11, A.module_closure12, A.module_closure13, A.module_closure14, A.module_closure15, A.module__closure0, A.module_closure16, A._red_closure0, A._green_closure0, A._blue_closure0, A._mix_closure0, A._hue_closure0, A._saturation_closure0, A._lightness_closure0, A._complement_closure0, A._adjust_closure0, A._scale_closure0, A._change_closure0, A._ieHexStr_closure0, A._ieHexStr_closure_hexString0, A._updateComponents_getParam0, A._updateComponents_closure0, A._updateComponents_updateValue0, A._functionString_closure0, A._removedColorFunction_closure0, A._rgb_closure0, A._hsl_closure0, A._removeUnits_closure1, A._removeUnits_closure2, A._hwb_closure0, A._parseChannels_closure0, A.legacyColorClass_closure, A.legacyColorClass_closure0, A.legacyColorClass_closure1, A.legacyColorClass_closure2, A.legacyColorClass_closure3, A.colorClass__closure1, A.colorClass__closure2, A.colorClass__closure3, A.colorClass__closure4, A.colorClass__closure5, A.colorClass__closure6, A.colorClass__closure7, A.colorClass__closure8, A.colorClass__closure9, A.SassColor_SassColor$hwb_toRgb0, A.compileAsync__closure, A.compileStringAsync__closure, A.compileStringAsync__closure0, A._wrapAsyncSassExceptions_closure, A._parseFunctions__closure2, A._parseFunctions__closure3, A._compileStylesheet_closure1, A.ComplexSelector_isInvisible_closure0, A.CompoundSelector_isInvisible_closure0, A.Configuration_toString_closure0, A._disallowedFunctionNames_closure0, A.EachRule_toString_closure0, A.Environment_importForwards_closure2, A.Environment_importForwards_closure3, A.Environment_importForwards_closure4, A.Environment__getVariableFromGlobalModule_closure0, A.Environment_setVariable_closure3, A.Environment__getFunctionFromGlobalModule_closure0, A.Environment__getMixinFromGlobalModule_closure0, A.Environment_toModule_closure0, A.Environment_toDummyModule_closure0, A.Environment__fromOneModule_closure0, A.Environment__fromOneModule__closure0, A._EnvironmentModule__EnvironmentModule_closure11, A._EnvironmentModule__EnvironmentModule_closure12, A._EnvironmentModule__EnvironmentModule_closure13, A._EnvironmentModule__EnvironmentModule_closure14, A._EnvironmentModule__EnvironmentModule_closure15, A._EnvironmentModule__EnvironmentModule_closure16, A._EvaluateVisitor_closure19, A._EvaluateVisitor_closure20, A._EvaluateVisitor_closure21, A._EvaluateVisitor_closure22, A._EvaluateVisitor_closure23, A._EvaluateVisitor_closure24, A._EvaluateVisitor_closure25, A._EvaluateVisitor_closure26, A._EvaluateVisitor_closure27, A._EvaluateVisitor_closure28, A._EvaluateVisitor__closure6, A._EvaluateVisitor__loadModule__closure1, A._EvaluateVisitor__combineCss_closure5, A._EvaluateVisitor__combineCss_closure6, A._EvaluateVisitor__combineCss_closure7, A._EvaluateVisitor__extendModules_closure3, A._EvaluateVisitor__topologicalModules_visitModule1, A._EvaluateVisitor__scopeForAtRoot_closure11, A._EvaluateVisitor__scopeForAtRoot_closure12, A._EvaluateVisitor__scopeForAtRoot_closure13, A._EvaluateVisitor__scopeForAtRoot_closure14, A._EvaluateVisitor__scopeForAtRoot_closure15, A._EvaluateVisitor__scopeForAtRoot_closure16, A._EvaluateVisitor_visitDeclaration_closure3, A._EvaluateVisitor_visitEachRule_closure5, A._EvaluateVisitor_visitEachRule_closure6, A._EvaluateVisitor_visitEachRule__closure1, A._EvaluateVisitor_visitEachRule___closure1, A._EvaluateVisitor_visitAtRule_closure5, A._EvaluateVisitor_visitAtRule_closure7, A._EvaluateVisitor_visitForRule__closure1, A._EvaluateVisitor_visitForwardRule_closure3, A._EvaluateVisitor_visitForwardRule_closure4, A._EvaluateVisitor_visitIfRule__closure1, A._EvaluateVisitor__visitDynamicImport__closure7, A._EvaluateVisitor__visitDynamicImport__closure8, A._EvaluateVisitor__visitDynamicImport__closure9, A._EvaluateVisitor__visitStaticImport_closure1, A._EvaluateVisitor_visitIncludeRule_closure10, A._EvaluateVisitor_visitMediaRule_closure5, A._EvaluateVisitor_visitMediaRule_closure7, A._EvaluateVisitor_visitStyleRule_closure15, A._EvaluateVisitor_visitStyleRule_closure19, A._EvaluateVisitor_visitSupportsRule_closure4, A._EvaluateVisitor_visitUseRule_closure1, A._EvaluateVisitor_visitWhileRule__closure1, A._EvaluateVisitor_visitBinaryOperationExpression_closure_recommendation1, A._EvaluateVisitor_visitListExpression_closure1, A._EvaluateVisitor__runUserDefinedCallable____closure1, A._EvaluateVisitor__runBuiltInCallable_closure4, A._EvaluateVisitor__evaluateArguments_closure7, A._EvaluateVisitor__evaluateArguments_closure8, A._EvaluateVisitor__evaluateArguments_closure10, A._EvaluateVisitor__evaluateMacroArguments_closure7, A._EvaluateVisitor__evaluateMacroArguments_closure8, A._EvaluateVisitor__evaluateMacroArguments_closure10, A._EvaluateVisitor_visitStringExpression_closure1, A._EvaluateVisitor_visitCssAtRule_closure4, A._EvaluateVisitor_visitCssKeyframeBlock_closure4, A._EvaluateVisitor_visitCssMediaRule_closure5, A._EvaluateVisitor_visitCssMediaRule_closure7, A._EvaluateVisitor_visitCssStyleRule_closure4, A._EvaluateVisitor_visitCssSupportsRule_closure4, A._EvaluateVisitor__performInterpolation_closure1, A._EvaluateVisitor__withoutSlash_recommendation1, A._EvaluateVisitor__stackFrame_closure1, A._EvaluateVisitor__stackTrace_closure1, A._ImportedCssVisitor_visitCssAtRule_closure1, A._ImportedCssVisitor_visitCssMediaRule_closure1, A._ImportedCssVisitor_visitCssStyleRule_closure1, A._ImportedCssVisitor_visitCssSupportsRule_closure1, A.exceptionClass__closure, A.exceptionClass__closure0, A.exceptionClass__closure1, A.ExtensionStore_extensionsWhereTarget_closure0, A.ExtensionStore_addExtensions_closure2, A.ExtensionStore_addExtensions__closure2, A.ExtensionStore_addExtensions__closure3, A.ExtensionStore__extendComplex_closure1, A.ExtensionStore__extendComplex_closure2, A.ExtensionStore__extendComplex__closure1, A.ExtensionStore__extendComplex__closure2, A.ExtensionStore__extendComplex___closure0, A.ExtensionStore__extendCompound_closure4, A.ExtensionStore__extendCompound_closure5, A.ExtensionStore__extendCompound__closure1, A.ExtensionStore__extendCompound__closure2, A.ExtensionStore__extendCompound_closure6, A.ExtensionStore__extendCompound_closure7, A.ExtensionStore__extendCompound_closure8, A.ExtensionStore__extendSimple_withoutPseudo0, A.ExtensionStore__extendSimple_closure1, A.ExtensionStore__extendSimple_closure2, A.ExtensionStore__extendPseudo_closure4, A.ExtensionStore__extendPseudo_closure5, A.ExtensionStore__extendPseudo_closure6, A.ExtensionStore__extendPseudo_closure7, A.ExtensionStore__extendPseudo_closure8, A.ExtensionStore__trim_closure1, A.ExtensionStore__trim_closure2, A.FilesystemImporter_canonicalize_closure0, A.functionClass__closure, A.functionClass__closure0, A.unifyComplex_closure0, A._weaveParents_closure7, A._weaveParents_closure8, A._weaveParents__closure4, A._weaveParents_closure9, A._weaveParents_closure10, A._weaveParents__closure3, A._weaveParents_closure11, A._weaveParents_closure12, A._weaveParents__closure2, A._mustUnify_closure0, A._mustUnify__closure0, A.paths__closure0, A.paths___closure0, A._hasRoot_closure0, A.listIsSuperselector_closure0, A.listIsSuperselector__closure0, A._simpleIsSuperselectorOfCompound_closure0, A._simpleIsSuperselectorOfCompound__closure0, A._selectorPseudoIsSuperselector_closure6, A._selectorPseudoIsSuperselector_closure7, A._selectorPseudoIsSuperselector_closure8, A._selectorPseudoIsSuperselector_closure9, A._selectorPseudoIsSuperselector_closure10, A._selectorPseudoIsSuperselector__closure0, A._selectorPseudoIsSuperselector___closure1, A._selectorPseudoIsSuperselector___closure2, A._selectorPseudoIsSuperselector_closure11, A._selectorPseudoIsSuperselector_closure12, A._selectorPseudoArgs_closure1, A._selectorPseudoArgs_closure2, A.globalFunctions_closure0, A.IDSelector_unify_closure0, A.IfRuleClause$__closure0, A.IfRuleClause$___closure0, A.immutableMapToDartMap_closure, A.NodeImporter__tryPath_closure0, A.ImportCache_humanize_closure2, A.ImportCache_humanize_closure3, A.ImportCache_humanize_closure4, A.Interpolation_toString_closure0, A._realCasePath_helper0, A._realCasePath_helper__closure0, A.render_closure0, A._parseFunctions__closure, A._parseFunctions___closure0, A._parseFunctions__closure0, A._parseFunctions__closure1, A._parseFunctions___closure, A._parseImporter_closure, A._parseImporter__closure, A._parseImporter___closure, A.ListExpression_toString_closure0, A._length_closure2, A._nth_closure0, A._setNth_closure0, A._join_closure0, A._append_closure2, A._zip_closure0, A._zip__closure2, A._zip__closure3, A._zip__closure4, A._index_closure2, A._separator_closure0, A._isBracketed_closure0, A._slash_closure0, A.SelectorList_isInvisible_closure0, A.SelectorList_asSassList_closure0, A.SelectorList_asSassList__closure0, A.SelectorList_unify_closure0, A.SelectorList_unify__closure0, A.SelectorList_unify___closure0, A.SelectorList_resolveParentSelectors_closure0, A.SelectorList_resolveParentSelectors__closure1, A.SelectorList_resolveParentSelectors__closure2, A.SelectorList__complexContainsParentSelector_closure0, A.SelectorList__complexContainsParentSelector__closure0, A.SelectorList__resolveParentSelectorsCompound_closure2, A.SelectorList__resolveParentSelectorsCompound_closure3, A.SelectorList__resolveParentSelectorsCompound_closure4, A.legacyListClass_closure, A.legacyListClass__closure, A.legacyListClass_closure1, A.legacyListClass_closure2, A.legacyListClass_closure4, A.listClass__closure, A.SassList_isBlank_closure0, A.MapExpression_toString_closure0, A._get_closure0, A._set_closure1, A._set__closure2, A._set_closure2, A._set__closure1, A._merge_closure1, A._merge_closure2, A._merge__closure0, A._deepMerge_closure0, A._deepRemove_closure0, A._deepRemove__closure0, A._remove_closure1, A._remove_closure2, A._keys_closure0, A._values_closure0, A._hasKey_closure0, A._modify__modifyNestedMap0, A.legacyMapClass_closure, A.legacyMapClass__closure, A.legacyMapClass__closure0, A.legacyMapClass_closure2, A.legacyMapClass_closure3, A.legacyMapClass_closure4, A.mapClass__closure, A.mapClass__closure0, A._ceil_closure0, A._clamp_closure0, A._floor_closure0, A._max_closure0, A._min_closure0, A._abs_closure0, A._hypot_closure0, A._hypot__closure0, A._log_closure0, A._pow_closure0, A._sqrt_closure0, A._acos_closure0, A._asin_closure0, A._atan_closure0, A._atan2_closure0, A._cos_closure0, A._sin_closure0, A._tan_closure0, A._compatible_closure0, A._isUnitless_closure0, A._unit_closure0, A._percentage_closure0, A._randomFunction_closure0, A._div_closure0, A._numberFunction_closure0, A.global_closure57, A.global_closure58, A.global_closure59, A.global_closure60, A.local_closure1, A.local_closure2, A.local__closure0, A.listDir__closure1, A.listDir__closure2, A.listDir_closure_list0, A.listDir__list_closure0, A.legacyNullClass__closure, A.legacyNumberClass_closure, A.legacyNumberClass_closure0, A.legacyNumberClass_closure2, A._parseNumber_closure, A._parseNumber_closure0, A.numberClass__closure, A.numberClass__closure0, A.numberClass__closure1, A.numberClass__closure2, A.numberClass__closure3, A.numberClass__closure4, A.numberClass__closure5, A.numberClass__closure6, A.numberClass__closure7, A.numberClass__closure8, A.numberClass__closure9, A.numberClass__closure12, A.numberClass__closure13, A.numberClass__closure14, A.numberClass__closure15, A.numberClass__closure16, A.numberClass__closure17, A.numberClass__closure18, A.numberClass__closure19, A.SassNumber__coerceOrConvertValue_closure3, A.SassNumber__coerceOrConvertValue_closure5, A.SassNumber_multiplyUnits_closure3, A.SassNumber_multiplyUnits_closure5, A.SassNumber__areAnyConvertible_closure0, A.SassNumber__canonicalizeUnitList_closure0, A.ParentStatement_closure0, A.ParentStatement__closure0, A.Parser_scanIdentChar_matches0, A._PrefixedKeys_iterator_closure0, A.PseudoSelector_unify_closure0, A.JSClassExtension_setCustomInspect_closure, A._wrapMain_closure, A._wrapMain_closure0, A._nest_closure0, A._nest__closure1, A._append_closure1, A._append__closure1, A._append___closure0, A._extend_closure0, A._replace_closure0, A._unify_closure0, A._isSuperselector_closure0, A._simpleSelectors_closure0, A._simpleSelectors__closure0, A._parse_closure0, A.serialize_closure0, A._SerializeVisitor_visitList_closure2, A._SerializeVisitor_visitList_closure3, A._SerializeVisitor_visitList_closure4, A._SerializeVisitor_visitMap_closure0, A._SerializeVisitor_visitSelectorList_closure0, A.SingleUnitSassNumber__coerceToUnit_closure0, A.SingleUnitSassNumber__coerceValueToUnit_closure0, A.SingleUnitSassNumber_multiplyUnits_closure1, A.SourceMapBuffer_buildSourceMap_closure0, A.updateSourceSpanPrototype_closure, A.updateSourceSpanPrototype_closure0, A.updateSourceSpanPrototype_closure1, A.updateSourceSpanPrototype_closure2, A.updateSourceSpanPrototype_closure3, A.updateSourceSpanPrototype_closure4, A.updateSourceSpanPrototype_closure5, A.StatementSearchVisitor_visitIfRule_closure1, A.StatementSearchVisitor_visitIfRule__closure2, A.StatementSearchVisitor_visitIfRule_closure2, A.StatementSearchVisitor_visitIfRule__closure1, A.StatementSearchVisitor_visitChildren_closure0, A._unquote_closure0, A._quote_closure0, A._length_closure1, A._insert_closure0, A._index_closure1, A._slice_closure0, A._toUpperCase_closure0, A._toLowerCase_closure0, A._uniqueId_closure0, A.legacyStringClass_closure, A.legacyStringClass_closure0, A.stringClass__closure, A.stringClass__closure0, A.stringClass__closure1, A.stringClass__closure2, A.stringClass__closure3, A.StylesheetParser_parse__closure2, A.StylesheetParser_expression_addSingleExpression0, A.StylesheetParser_expression_addOperator0, A.StylesheetParser__unicodeRange_closure1, A.StylesheetParser__unicodeRange_closure2, A.StylesheetParser_trySpecialFunction_closure0, A.TerseLogger_summarize_closure1, A.TerseLogger_summarize_closure2, A._UnprefixedKeys_iterator_closure1, A._UnprefixedKeys_iterator_closure2, A._exactlyOne_closure0, A.futureToPromise__closure0, A.indent_closure0, A.flattenVertically_closure1, A.flattenVertically_closure2, A.valueClass__closure, A.valueClass__closure0, A.valueClass__closure1, A.valueClass__closure2, A.valueClass__closure3, A.valueClass__closure4, A.valueClass__closure5, A.valueClass__closure7, A.valueClass__closure8, A.valueClass__closure9, A.valueClass__closure10, A.valueClass__closure11, A.valueClass__closure12, A.valueClass__closure13, A.valueClass__closure15, A.valueClass__closure16]);
97454
+ _inheritMany(A.Closure2Args, [A._CastListBase_sort_closure, A.CastMap_forEach_closure, A.Primitives_functionNoSuchMethod_closure, A.JsLinkedHashMap_addAll_closure, A.initHooks_closure0, A._awaitOnObject_closure0, A._wrapJsFunctionForAsync_closure, A.Future_wait_handleError, A._Future__chainForeignFuture_closure0, A.Stream_Stream$fromFuture_closure0, A._HashMap_addAll_closure, A.HashMap_HashMap$from_closure, A.LinkedHashMap_LinkedHashMap$from_closure, A.MapBase_mapToString_closure, A._JsonStringifier_writeMap_closure, A.NoSuchMethodError_toString_closure, A.Uri__parseIPv4Address_error, A.Uri_parseIPv6Address_error, A.Uri_parseIPv6Address_parseHex, A._createTables_build, A.Parser_parse_closure, A.StreamQueue__ensureListening_closure1, A.futureToPromise_closure, A.PathMap__create_closure, A.IfRule_toString_closure, A.ExtensionStore_addExtensions_closure, A.ExtensionStore_addExtensions__closure1, A.ExtensionStore_clone_closure, A._weaveParents_closure, A.paths_closure, A._updateComponents_updateRgb, A._deepMergeImpl_closure, A._nest__closure0, A._append__closure0, A.StylesheetParser__declarationOrBuffer_closure, A.StylesheetParser__declarationOrBuffer_closure0, A.StylesheetParser__styleRule_closure, A.StylesheetParser__propertyOrVariableDeclaration_closure, A.StylesheetParser__propertyOrVariableDeclaration_closure0, A.StylesheetParser__atRootRule_closure, A.StylesheetParser__atRootRule_closure0, A.StylesheetParser__eachRule_closure, A.StylesheetParser__functionRule_closure, A.StylesheetParser__forRule_closure0, A.StylesheetParser__includeRule_closure, A.StylesheetParser_mediaRule_closure, A.StylesheetParser__mixinRule_closure, A.StylesheetParser_mozDocumentRule_closure, A.StylesheetParser_supportsRule_closure, A.StylesheetParser__whileRule_closure, A.StylesheetParser_unknownAtRule_closure, A.StylesheetGraph__recanonicalizeImportsForNode_closure, A.longestCommonSubsequence_closure, A.longestCommonSubsequence_backtrack, A.mapAddAll2_closure, A.SassMap_asList_closure, A.SassNumber_plus_closure, A.SassNumber_minus_closure, A.SassNumber__canonicalMultiplier_closure, A._EvaluateVisitor__closure2, A._EvaluateVisitor__evaluateArguments_closure5, A._EvaluateVisitor__evaluateMacroArguments_closure5, A._EvaluateVisitor__addRestMap_closure0, A._EvaluateVisitor__closure, A._EvaluateVisitor__evaluateArguments_closure1, A._EvaluateVisitor__evaluateMacroArguments_closure1, A._EvaluateVisitor__addRestMap_closure, A.SingleMapping_toJson_closure0, A.Highlighter__collateLines_closure0, A.Frame_Frame$parseV8_closure_parseLocation, A.TransformByHandlers_transformByHandlers__closure1, A.RateLimit__debounceAggregate_closure, A._EvaluateVisitor__closure8, A._EvaluateVisitor__evaluateArguments_closure13, A._EvaluateVisitor__evaluateMacroArguments_closure13, A._EvaluateVisitor__addRestMap_closure2, A._updateComponents_updateRgb0, A.legacyColorClass_closure4, A.legacyColorClass_closure5, A.legacyColorClass_closure6, A.legacyColorClass_closure7, A.colorClass__closure, A.colorClass__closure0, A._parseFunctions_closure0, A._EvaluateVisitor__closure5, A._EvaluateVisitor__evaluateArguments_closure9, A._EvaluateVisitor__evaluateMacroArguments_closure9, A._EvaluateVisitor__addRestMap_closure1, A.ExtensionStore_addExtensions_closure1, A.ExtensionStore_addExtensions__closure4, A.ExtensionStore_clone_closure0, A._weaveParents_closure6, A.paths_closure0, A.IfRule_toString_closure0, A.render_closure1, A._parseFunctions_closure, A.legacyListClass_closure0, A.legacyListClass_closure3, A.listClass__closure0, A._deepMergeImpl_closure0, A.legacyMapClass_closure0, A.legacyMapClass_closure1, A.mapClass__closure1, A.SassMap_asList_closure0, A.main_closure0, A.main_closure1, A.legacyNumberClass_closure1, A.legacyNumberClass_closure3, A.numberClass__closure10, A.numberClass__closure11, A.SassNumber_plus_closure0, A.SassNumber_minus_closure0, A.SassNumber__canonicalMultiplier_closure0, A.JSClassExtension_get_defineMethod_closure, A.JSClassExtension_get_defineGetter_closure, A.main_printError, A._nest__closure2, A._append__closure2, A.legacyStringClass_closure1, A.StylesheetParser__declarationOrBuffer_closure1, A.StylesheetParser__declarationOrBuffer_closure2, A.StylesheetParser__styleRule_closure0, A.StylesheetParser__propertyOrVariableDeclaration_closure1, A.StylesheetParser__propertyOrVariableDeclaration_closure2, A.StylesheetParser__atRootRule_closure1, A.StylesheetParser__atRootRule_closure2, A.StylesheetParser__eachRule_closure0, A.StylesheetParser__functionRule_closure0, A.StylesheetParser__forRule_closure2, A.StylesheetParser__includeRule_closure0, A.StylesheetParser_mediaRule_closure0, A.StylesheetParser__mixinRule_closure0, A.StylesheetParser_mozDocumentRule_closure0, A.StylesheetParser_supportsRule_closure0, A.StylesheetParser__whileRule_closure0, A.StylesheetParser_unknownAtRule_closure0, A.futureToPromise_closure0, A.futureToPromise__closure1, A.objectToMap_closure, A.longestCommonSubsequence_closure0, A.longestCommonSubsequence_backtrack0, A.mapAddAll2_closure0, A.valueClass__closure6, A.valueClass__closure14]);
97194
97455
  _inherit(A.CastList, A._CastListBase);
97195
97456
  _inherit(A.MapBase, A.MapMixin);
97196
97457
  _inheritMany(A.MapBase, [A.CastMap, A.JsLinkedHashMap, A._HashMap, A.UnmodifiableMapBase, A.MergedMapView, A.MergedMapView0]);
@@ -97348,12 +97609,12 @@ self.readline = _cli_pkg_requires.readline;
97348
97609
  typeUniverse: {eC: new Map(), tR: {}, eT: {}, tPV: {}, sEA: []},
97349
97610
  mangledGlobalNames: {int: "int", double: "double", num: "num", String: "String", bool: "bool", Null: "Null", List: "List"},
97350
97611
  mangledNames: {},
97351
- types: ["~()", "Null()", "Future<Null>()", "Value0(List<Value0>)", "Value(List<Value>)", "String(String)", "bool(String)", "bool(CssNode)", "bool(CssNode0)", "SassNumber(List<Value>)", "SassNumber0(List<Value0>)", "bool(Object?)", "int()", "SassString(List<Value>)", "SassString0(List<Value0>)", "bool(SimpleSelector0)", "bool(SimpleSelector)", "SassBoolean(List<Value>)", "SassBoolean0(List<Value0>)", "bool(ComplexSelector)", "bool(ComplexSelector0)", "SassList(List<Value>)", "SassList0(List<Value0>)", "SassColor(List<Value>)", "SassColor0(List<Value0>)", "JSClass0()", "Null(~())", "~(Object?)", "bool()", "FileSpan()", "String()", "Future<Null>(Future<~>())", "bool(int?)", "Value?()", "SassMap0(List<Value0>)", "Value()", "Value0(Value0)", "Future<~>()", "Value0?()", "Value(Value)", "SassMap(List<Value>)", "bool(num,num)", "String?()", "int(num)", "bool(Value0)", "Value0()", "SelectorList()", "String(Object)", "List<String>()", "SelectorList0()", "~(Value,Value)", "ValueExpression(Value)", "~(Value)", "~(Value0,Value0)", "num(num,num)", "~(Value0)", "bool(int)", "num(SassColor0)", "ValueExpression0(Value0)", "Future<Value>()", "~(Module0<Callable0>)", "Future<Value0>()", "bool(Value)", "~(Module<Callable>)", "Frame(String)", "Null(@)", "Frame()", "Future<Value?>()", "Null(Object,StackTrace)", "~(Object,StackTrace)", "Future<Value0?>()", "Declaration0(List<Statement0>,FileSpan)", "Null(_NodeSassColor,num)", "Value?(Statement)", "int(Uri)", "~(String,Value)", "List<CssMediaQuery0>?(List<CssMediaQuery0>)", "num(num)", "bool(SelectorList0)", "@()", "Tuple3<Importer,Uri,Uri>?()", "Future<String>(Object?)", "Stylesheet?()", "List<CssMediaQuery>?(List<CssMediaQuery>)", "SassRuntimeException0(AstNode0)", "Object()", "Future<Value?>(Statement)", "Null([Object?])", "Uri(Uri)", "~(String,Value0)", "ComplexSelector(List<ComplexSelectorComponent>)", "SassRuntimeException(AstNode)", "String(@)", "Future<Value0>(List<Value0>)", "Value0?(Statement0)", "ComplexSelector0(List<ComplexSelectorComponent0>)", "Declaration(List<Statement>,FileSpan)", "bool(SelectorList)", "@(@)", "Future<Value0?>(Statement0)", "ComplexSelector0(ComplexSelector0)", "List<CssMediaQuery>()", "AtRootQuery()", "~(Object)", "bool(Object)", "AsyncCallable?()", "~(String)", "Null(Module<AsyncCallable>)", "Iterable<String>(Module0<AsyncCallable0>)", "num(Value)", "Callable?()", "bool(_Highlight)", "Callable0?()", "Iterable<ComplexSelector0>(ComplexSelector0)", "bool(Module0<Callable0>)", "Iterable<String>(Module0<Callable0>)", "bool(ComplexSelectorComponent0)", "~(String,Object?)", "Statement()", "int(SassColor0)", "int(_NodeSassColor)", "~(~())", "num(Value0)", "~(@)", "String(Expression)", "bool(ComplexSelectorComponent)", "Statement0()", "Iterable<ComplexSelector>(ComplexSelector)", "ComplexSelector(ComplexSelector)", "Iterable<String>(Module<AsyncCallable>)", "String(Expression0)", "List<ComplexSelectorComponent0>(List<ComplexSelectorComponent0>)", "List<CssMediaQuery0>()", "Null(Module0<AsyncCallable0>)", "bool(Module<AsyncCallable>)", "Iterable<String>(Module<Callable>)", "AtRootQuery0()", "AsyncCallable0?()", "bool(@)", "bool(Module<Callable>)", "bool(Module0<AsyncCallable0>)", "Map<ComplexSelector,Extension>()", "List<ComplexSelectorComponent>(List<ComplexSelectorComponent>)", "Map<ComplexSelector0,Extension0>()", "Trace(String)", "int(Frame)", "String(Frame)", "Iterable<ComplexSelectorComponent>(List<List<ComplexSelectorComponent>>)", "Trace()", "List<Extension>()", "bool(Frame)", "SassNumber()", "VariableDeclaration()", "AsyncCallable0?(Module0<AsyncCallable0>)", "MapKeySet<Module0<AsyncCallable0>>(Map<Module0<AsyncCallable0>,AstNode0>)", "Map<String,AsyncCallable0>(Module0<AsyncCallable0>)", "bool(Queue<Object?>)", "AstNode0(AstNode0)", "~(Iterable<ExtensionStore>)", "String(int)", "SassFunction0(List<Value0>)", "Frame(Tuple2<String,AstNode>)", "Map<String,Callable>(Module<Callable>)", "~(Module0<AsyncCallable0>)", "MapKeySet<Module<Callable>>(Map<Module<Callable>,AstNode>)", "Callable?(Module<Callable>)", "List<ExtensionStore0>()", "num?(String,num{assertPercent:bool,checkPercent:bool})", "bool(ModifiableCssParentNode0)", "String(SassNumber)", "Future<Value>(List<Value>)", "Object(Object)", "Uri?/()", "AstNode?()", "Future<SassNumber0>()", "num(num,num?,num)", "bool(UseRule0)", "bool(ForwardRule0)", "Uri(String)", "int(int,num?)", "MapKeySet<Module<AsyncCallable>>(Map<Module<AsyncCallable>,AstNode>)", "AsyncCallable?(Module<AsyncCallable>)", "Future<Object>()", "SelectorList(Value)", "SelectorList(SelectorList,SelectorList)", "Uri?()", "bool(ForwardRule)", "AstNode0?()", "String(SassNumber0)", "Frame(Tuple2<String,AstNode0>)", "Future<Tuple3<AsyncImporter0,Uri,Uri>?>()", "0&(@[@])", "bool(Import)", "bool(Statement)", "bool(UseRule)", "bool(String?)", "~(Uint8List,String,int)", "String(Value0)", "Future<SassNumber>()", "Iterable<String>()", "~(Object?,Object?)", "Iterable<String>(String)", "~(@,@)", "Future<NodeCompileResult>()", "bool(ModifiableCssParentNode)", "Iterable<String>(@)", "List<ExtensionStore>()", "~(Iterable<ExtensionStore0>)", "DateTime()", "Callable0?(Module0<Callable0>)", "MapKeySet<Module0<Callable0>>(Map<Module0<Callable0>,AstNode0>)", "Map<String,Callable0>(Module0<Callable0>)", "~(Module<AsyncCallable>)", "SassFunction(List<Value>)", "Future<Tuple3<AsyncImporter,Uri,Uri>?>()", "Value0?(Value0)", "Set<0^>()<Object?>", "SassNumber0()", "String(_NodeException)", "AstNode(AstNode)", "List<Extension0>()", "num(num,String)", "~(Object[StackTrace?])", "~(String[~])", "Iterable<ComplexSelectorComponent0>(List<List<ComplexSelectorComponent0>>)", "~([Object?])", "bool(Statement0)", "bool(Import0)", "Tuple3<Importer0,Uri,Uri>?()", "Entry(Entry)", "int(int)", "AsyncImporter0(Object?)", "Value0(int)", "@(Value0,num)", "Object(_NodeSassMap,int)", "Null(_NodeSassMap,int,Object)", "bool(SassNumber0)", "ImmutableList(SassNumber0)", "bool(SassNumber0,String)", "SassNumber0(SassNumber0,Object,Object[String?])", "SassNumber0(SassNumber0,SassNumber0[String?,String?])", "num(SassNumber0,Object,Object[String?])", "num(SassNumber0,SassNumber0[String?,String?])", "~(String,Function)", "SelectorList0(Value0)", "SelectorList0(SelectorList0,SelectorList0)", "FileLocation(FileSpan)", "String(FileSpan)", "int(SourceLocation)", "AtRule(List<Statement>,FileSpan)", "~(String,@)", "AtRootRule0(List<Statement0>,FileSpan)", "AtRule0(List<Statement0>,FileSpan)", "int(@,@)", "AtRootRule(List<Statement>,FileSpan)", "bool(Object?,Object?)", "int(Object?)", "Map<String,AsyncCallable>(Module<AsyncCallable>)", "SupportsRule(List<Statement>,FileSpan)", "Module<AsyncCallable>?(Module<AsyncCallable>)", "EvaluateResult()", "Module<Callable>(Module<Callable>)", "CssValue<Value>(Expression)", "Value?(Value)", "@(@,String)", "CssValue<String>(Interpolation)", "String(Value)", "CssValue<String>(SupportsCondition)", "UserDefinedCallable<Environment>(ContentBlock)", "0&(List<Value>)", "Value(Expression)", "~(ContentBlock)", "~(List<Statement>)", "~(CssMediaQuery)", "~(MapEntry<Value,Value>)", "SourceFile()", "SourceFile?(int)", "String?(SourceFile?)", "int(_Line)", "Future<@>?()", "Object(_Line)", "Object(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(MapEntry<Object,List<_Highlight>>)", "SourceSpanWithContext()", "String(String{color:@})", "FileSpan?(MapEntry<Module<AsyncCallable>,AstNode>)", "List<Frame>(Trace)", "int(Trace)", "List<Value>(Value)", "String(Trace)", "bool(List<Value>)", "Map<String,Value>(Module<AsyncCallable>)", "Frame(String,String)", "Map<String,AstNode>(Module<AsyncCallable>)", "Null(@,StackTrace)", "SassMap(Value)", "Frame(Frame)", "Future<~>?()", "String(Argument0)", "SassMap(SassMap)", "SassArgumentList0(Object,Object,Object[String?])", "ImmutableMap(SassArgumentList0)", "Null(Function,Function)", "Set<ModifiableCssValue<SelectorList>>()", "Value0?(Module0<AsyncCallable0>)", "Module0<AsyncCallable0>?(Module0<AsyncCallable0>)", "String(String?)", "_Future<@>(@)", "FileSpan?(MapEntry<Module0<AsyncCallable0>,AstNode0>)", "Map<String,Value0>(Module0<AsyncCallable0>)", "Map<String,AstNode0>(Module0<AsyncCallable0>)", "SassNumber(Value)", "Value(Object)", "Future<List<CssMediaQuery0>>(Interpolation0)", "Future<String>(SupportsCondition0)", "Future<Stylesheet?>()", "bool(Tuple3<AsyncImporter,Uri,Uri>)", "SassString(SimpleSelector)", "Uri(Tuple3<AsyncImporter,Uri,Uri>)", "bool(String?,String?)", "Future<~>(List<Value0>)", "int(String?)", "bool(Tuple3<Importer,Uri,Uri>)", "Future<EvaluateResult0>()", "Uri(Tuple3<Importer,Uri,Uri>)", "Null(@,@)", "Module0<AsyncCallable0>(Module0<AsyncCallable0>)", "String(MapEntry<String,ConfiguredValue>)", "String(Argument)", "Value?(Module<Callable>)", "Future<CssValue0<Value0>>(Expression0)", "Module<Callable>?(Module<Callable>)", "Expression(Expression)", "Future<Value0?>(Value0)", "~(int,@)", "FileSpan?(MapEntry<Module<Callable>,AstNode>)", "Future<CssValue0<String>>(Interpolation0)", "Map<String,Value>(Module<Callable>)", "Map<String,AstNode>(Module<Callable>)", "String(Tuple2<Expression,Expression>)", "~(Symbol0,@)", "ArgParser()", "Future<CssValue0<String>>(SupportsCondition0)", "UserDefinedCallable0<AsyncEnvironment0>(ContentBlock0)", "String(int,IfClause)", "String(BuiltInCallable)", "Future<~>(String)", "List<WatchEvent>(List<WatchEvent>)", "CompoundSelector()", "Statement({root:bool})", "Future<Value0>(Expression0)", "~(String,int)", "Expression({bracketList:bool,singleEquals:bool,until:bool()?})", "Stylesheet()", "Statement?()", "VariableDeclaration(VariableDeclaration)", "ArgumentDeclaration()", "bool(Extension)", "Future<Stylesheet0?>()", "bool(Tuple3<AsyncImporter0,Uri,Uri>)", "Uri(Tuple3<AsyncImporter0,Uri,Uri>)", "UseRule()", "0&(Object[Object?])", "~(String[@])", "Expression0(Expression0)", "int(int,int)", "StyleRule(List<Statement>,FileSpan)", "@(String)", "EachRule(List<Statement>,FileSpan)", "FunctionRule(List<Statement>,FileSpan)", "0&(List<Value0>)", "ForRule(List<Statement>,FileSpan)", "Null(_NodeSassColor,num?[num?,num?,num?,SassColor0?])", "ContentBlock(List<Statement>,FileSpan)", "num(_NodeSassColor)", "MediaRule(List<Statement>,FileSpan)", "SassColor0(Object,_Channels)", "SassColor0(SassColor0,_Channels)", "MixinRule(List<Statement>,FileSpan)", "~(SimpleSelector,Map<ComplexSelector,Extension>)", "~(ComplexSelector,Extension)", "WhileRule(List<Statement>,FileSpan)", "AsyncImporter0(NodeImporter0)", "0&(@)", "~(Expression)", "~(BinaryOperator)", "String(MapEntry<String,ConfiguredValue0>)", "String(BuiltInCallable0)", "Null(Map<SimpleSelector,Map<ComplexSelector,Extension>>)", "StringExpression(Interpolation)", "Value0?(Module0<Callable0>)", "Module0<Callable0>?(Module0<Callable0>)", "DateTime(StylesheetNode)", "~(Uri,StylesheetNode?)", "FileSpan?(MapEntry<Module0<Callable0>,AstNode0>)", "Map<String,Value0>(Module0<Callable0>)", "Map<String,AstNode0>(Module0<Callable0>)", "Map<SimpleSelector,Map<ComplexSelector,Extension>>?(List<Extension>)", "~(Set<ModifiableCssValue<SelectorList>>)", "List<CssMediaQuery0>(Interpolation0)", "String(SupportsCondition0)", "List<ComplexSelector>(ComplexSelectorComponent)", "~(List<Value0>)", "SassScriptException()", "Object(Value0)", "Module0<Callable0>(Module0<Callable0>)", "CssValue0<Value0>(Expression0)", "Iterable<ComplexSelector>(List<ComplexSelector>)", "SingleUnitSassNumber(num)", "CssValue0<String>(Interpolation0)", "Future<List<CssMediaQuery>>(Interpolation)", "CssValue0<String>(SupportsCondition0)", "UserDefinedCallable0<Environment0>(ContentBlock0)", "Value0(Expression0)", "Future<String>(SupportsCondition)", "FileSpan(_NodeException)", "bool(Extension0)", "Set<ModifiableCssValue0<SelectorList0>>()", "List<ComplexSelectorComponent>(ComplexSelector)", "ComplexSelector(Extender)", "~(SimpleSelector0,Map<ComplexSelector0,Extension0>)", "~(ComplexSelector0,Extension0)", "Null(Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>)", "Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>?(List<Extension0>)", "~(Set<ModifiableCssValue0<SelectorList0>>)", "List<ComplexSelector0>(ComplexSelectorComponent0)", "Iterable<ComplexSelector0>(List<ComplexSelector0>)", "List<ComplexSelectorComponent0>(ComplexSelector0)", "List<ComplexSelector>?(List<Extender>)", "Future<~>(List<Value>)", "ComplexSelector0(Extender0)", "List<ComplexSelector0>?(List<Extender0>)", "List<SimpleSelector0>(Extender0)", "List<ComplexSelector0>(List<ComplexSelector0>)", "List<Extender0>?(SimpleSelector0)", "List<Extender0>(PseudoSelector0)", "List<List<Extender0>>(List<Extender0>)", "List<ComplexSelector0>(ComplexSelector0)", "PseudoSelector0(ComplexSelector0)", "~(SimpleSelector0,Set<ModifiableCssValue0<SelectorList0>>)", "SassFunction0(Object,String,Value0(List<Value0>))", "List<SimpleSelector>(Extender)", "List<ComplexSelectorComponent0>?(List<ComplexSelectorComponent0>,List<ComplexSelectorComponent0>)", "bool(Queue<List<ComplexSelectorComponent0>>)", "Future<EvaluateResult>()", "bool(List<Iterable<ComplexSelectorComponent0>>)", "List<ComplexSelectorComponent0>(List<Iterable<ComplexSelectorComponent0>>)", "Iterable<ComplexSelectorComponent0>(Iterable<ComplexSelectorComponent0>)", "List<ComplexSelector>(List<ComplexSelector>)", "bool(PseudoSelector0)", "SelectorList0?(PseudoSelector0)", "String(int,IfClause0)", "Module<AsyncCallable>(Module<AsyncCallable>)", "List<Extender>?(SimpleSelector)", "~(Object?,Object,Object?)", "Tuple2<String,String>(String)", "List<Extender>(PseudoSelector)", "Stylesheet0?()", "bool(Tuple3<Importer0,Uri,Uri>)", "Uri(Tuple3<Importer0,Uri,Uri>)", "Null(RenderResult)", "JSFunction0(JSFunction0)", "Object?(Object,String,String[Object?])", "Null(Object)", "List<List<Extender>>(List<Extender>)", "List<Value0>(Value0)", "bool(List<Value0>)", "SassList0(ComplexSelector0)", "SassString0(ComplexSelectorComponent0)", "Future<CssValue<Value>>(Expression)", "List<ComplexSelector>(ComplexSelector)", "SimpleSelector0(SimpleSelector0)", "Null(_NodeSassList,int?[bool?,SassList0?])", "PseudoSelector(ComplexSelector)", "Object(_NodeSassList,int)", "Null(_NodeSassList,int,Object)", "bool(_NodeSassList)", "Null(_NodeSassList,bool)", "int(_NodeSassList)", "SassList0(Object[Object?,_ConstructorOptions?])", "Future<Value?>(Value)", "String(Tuple2<Expression0,Expression0>)", "SassMap0(Value0)", "SassMap0(SassMap0)", "Null(_NodeSassMap,int?[SassMap0?])", "SassNumber0(int)", "~(SimpleSelector,Set<ModifiableCssValue<SelectorList>>)", "int(_NodeSassMap)", "Future<CssValue<String>>(Interpolation)", "SassMap0(Object[ImmutableMap?])", "ImmutableMap(SassMap0)", "@(SassMap0,Object)", "SassNumber0(Value0)", "Value0(Object)", "~(String,WarnOptions)", "~(String,DebugOptions)", "Null(_NodeSassNumber,num?[String?,SassNumber0?])", "num(_NodeSassNumber)", "Null(_NodeSassNumber,num)", "String(_NodeSassNumber)", "Null(_NodeSassNumber,String)", "SassNumber0(Object,num[Object?])", "num(SassNumber0)", "Uint8List(@,@)", "int?(SassNumber0)", "List<ComplexSelectorComponent>?(List<ComplexSelectorComponent>,List<ComplexSelectorComponent>)", "int(SassNumber0[String?])", "num(SassNumber0,num,num[String?])", "~(SassNumber0[String?])", "~(SassNumber0,String[String?])", "bool(Queue<List<ComplexSelectorComponent>>)", "SassList(ComplexSelector)", "Future<CssValue<String>>(SupportsCondition)", "UserDefinedCallable<AsyncEnvironment>(ContentBlock)", "SassString(ComplexSelectorComponent)", "SassScriptException0()", "String(Object,@,@)", "bool(List<Iterable<ComplexSelectorComponent>>)", "~(String,StackTrace?)", "List<ComplexSelectorComponent>(List<Iterable<ComplexSelectorComponent>>)", "Iterable<ComplexSelectorComponent>(Iterable<ComplexSelectorComponent>)", "SassString0(SimpleSelector0)", "CompoundSelector0()", "~(CssMediaQuery0)", "~(MapEntry<Value0,Value0>)", "SingleUnitSassNumber0(num)", "Future<@>()", "JSUrl0?(FileSpan)", "Future<Value>(Expression)", "bool(PseudoSelector)", "Null(_NodeSassString,String?[SassString0?])", "String(_NodeSassString)", "Null(_NodeSassString,String)", "SassString0(Object[Object?,_ConstructorOptions1?])", "String(SassString0)", "bool(SassString0)", "int(SassString0)", "int(SassString0,Value0[String?])", "Statement0({root:bool})", "SelectorList?(PseudoSelector)", "Stylesheet0()", "Statement0?()", "VariableDeclaration0(VariableDeclaration0)", "ArgumentDeclaration0()", "Tuple2<String,ArgumentDeclaration0>()", "VariableDeclaration0()", "Object?(Object?)", "StyleRule0(List<Statement0>,FileSpan)", "~([Future<~>?])", "EachRule0(List<Statement0>,FileSpan)", "FunctionRule0(List<Statement0>,FileSpan)", "ForRule0(List<Statement0>,FileSpan)", "ContentBlock0(List<Statement0>,FileSpan)", "MediaRule0(List<Statement0>,FileSpan)", "MixinRule0(List<Statement0>,FileSpan)", "SimpleSelector(SimpleSelector)", "SupportsRule0(List<Statement0>,FileSpan)", "WhileRule0(List<Statement0>,FileSpan)", "~(Expression0)", "~(BinaryOperator0)", "StringExpression0(Interpolation0)", "Null(~(Object?),~(Object?))", "ImmutableList(Value0)", "String?(Value0)", "int(Value0,Value0[String?])", "SassBoolean0(Value0[String?])", "SassColor0(Value0[String?])", "SassFunction0(Value0[String?])", "SassMap0(Value0[String?])", "SassNumber0(Value0[String?])", "SassString0(Value0[String?])", "SassMap0?(Value0)", "bool(Value0,Object?)", "int(Value0[Object?])", "~(String,Option)", "Value?(Module<AsyncCallable>)", "~(Zone?,ZoneDelegate?,Zone,Object,StackTrace)", "0^(Zone?,ZoneDelegate?,Zone,0^())<Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^),1^)<Object?Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^,2^),1^,2^)<Object?Object?Object?>", "0^()(Zone,ZoneDelegate,Zone,0^())<Object?>", "0^(1^)(Zone,ZoneDelegate,Zone,0^(1^))<Object?Object?>", "0^(1^,2^)(Zone,ZoneDelegate,Zone,0^(1^,2^))<Object?Object?Object?>", "AsyncError?(Zone,ZoneDelegate,Zone,Object,StackTrace?)", "~(Zone?,ZoneDelegate?,Zone,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~(Timer))", "~(Zone,ZoneDelegate,Zone,String)", "Zone(Zone?,ZoneDelegate?,Zone,ZoneSpecification?,Map<Object?,Object?>?)", "List<CssMediaQuery>(Interpolation)", "String(SupportsCondition)", "0^(0^,0^)<num>", "~(@,StackTrace)", "~(Object,StackTrace,EventSink<0^>)<Object?>", "List<0^>(0^,List<0^>?)<Object?>", "NodeCompileResult(String[CompileOptions?])", "NodeCompileResult(String[CompileStringOptions?])", "Promise(String[CompileOptions?])", "Promise(String[CompileStringOptions?])", "Importer0(Object?)", "List<Object?>(Object?)", "~(RenderOptions,~(Object?,RenderResult?))", "RenderResult(RenderOptions)", "Future<~>(List<String>)", "Uri(JSUrl0)", "JSUrl0(Uri)", "String(String[String?,String?,String?,String?,String?,String?])", "~(List<Value>)", "EvaluateResult0()"],
97612
+ types: ["~()", "Null()", "Future<Null>()", "Value0(List<Value0>)", "Value(List<Value>)", "String(String)", "bool(String)", "bool(CssNode)", "bool(CssNode0)", "SassNumber(List<Value>)", "SassNumber0(List<Value0>)", "bool(Object?)", "int()", "SassString(List<Value>)", "SassString0(List<Value0>)", "bool(SimpleSelector0)", "bool(SimpleSelector)", "SassBoolean(List<Value>)", "SassBoolean0(List<Value0>)", "bool(ComplexSelector)", "bool(ComplexSelector0)", "SassList(List<Value>)", "SassList0(List<Value0>)", "SassColor(List<Value>)", "SassColor0(List<Value0>)", "JSClass0()", "Null(~())", "~(Object?)", "bool()", "FileSpan()", "String()", "Future<Null>(Future<~>())", "bool(int?)", "Value?()", "SassMap0(List<Value0>)", "Value()", "Value0(Value0)", "Future<~>()", "Value0?()", "Value(Value)", "SassMap(List<Value>)", "bool(num,num)", "String?()", "int(num)", "bool(Value0)", "Value0()", "SelectorList()", "String(Object)", "List<String>()", "SelectorList0()", "~(Value,Value)", "ValueExpression(Value)", "~(Value)", "~(Value0,Value0)", "num(num,num)", "~(Value0)", "bool(int)", "num(SassColor0)", "ValueExpression0(Value0)", "Future<Value>()", "~(Module0<Callable0>)", "Future<Value0>()", "bool(Value)", "~(Module<Callable>)", "Frame(String)", "Null(@)", "Frame()", "Future<Value?>()", "Null(Object,StackTrace)", "~(Object,StackTrace)", "Future<Value0?>()", "Declaration0(List<Statement0>,FileSpan)", "Null(_NodeSassColor,num)", "Value?(Statement)", "int(Uri)", "~(String,Value)", "List<CssMediaQuery0>?(List<CssMediaQuery0>)", "num(num)", "bool(SelectorList0)", "@()", "Tuple3<Importer,Uri,Uri>?()", "Future<String>(Object?)", "Stylesheet?()", "List<CssMediaQuery>?(List<CssMediaQuery>)", "SassRuntimeException0(AstNode0)", "Object()", "Future<Value?>(Statement)", "Null([Object?])", "Uri(Uri)", "~(String,Value0)", "ComplexSelector(List<ComplexSelectorComponent>)", "SassRuntimeException(AstNode)", "String(@)", "Future<Value0>(List<Value0>)", "Value0?(Statement0)", "ComplexSelector0(List<ComplexSelectorComponent0>)", "Declaration(List<Statement>,FileSpan)", "bool(SelectorList)", "@(@)", "Future<Value0?>(Statement0)", "ComplexSelector0(ComplexSelector0)", "List<CssMediaQuery>()", "AtRootQuery()", "~(Object)", "bool(Object)", "AsyncCallable?()", "~(String)", "Null(Module<AsyncCallable>)", "Iterable<String>(Module0<AsyncCallable0>)", "num(Value)", "Callable?()", "bool(_Highlight)", "Callable0?()", "Iterable<ComplexSelector0>(ComplexSelector0)", "bool(Module0<Callable0>)", "Iterable<String>(Module0<Callable0>)", "bool(ComplexSelectorComponent0)", "~(String,Object?)", "Statement()", "int(SassColor0)", "int(_NodeSassColor)", "~(~())", "num(Value0)", "~(@)", "String(Expression)", "bool(ComplexSelectorComponent)", "Statement0()", "Iterable<ComplexSelector>(ComplexSelector)", "ComplexSelector(ComplexSelector)", "Iterable<String>(Module<AsyncCallable>)", "String(Expression0)", "List<ComplexSelectorComponent0>(List<ComplexSelectorComponent0>)", "List<CssMediaQuery0>()", "Null(Module0<AsyncCallable0>)", "bool(Module<AsyncCallable>)", "Iterable<String>(Module<Callable>)", "AtRootQuery0()", "AsyncCallable0?()", "bool(@)", "bool(Module<Callable>)", "bool(Module0<AsyncCallable0>)", "Map<ComplexSelector,Extension>()", "List<ComplexSelectorComponent>(List<ComplexSelectorComponent>)", "Map<ComplexSelector0,Extension0>()", "Trace(String)", "int(Frame)", "String(Frame)", "Iterable<ComplexSelectorComponent>(List<List<ComplexSelectorComponent>>)", "Trace()", "List<Extension>()", "bool(Frame)", "SassNumber()", "VariableDeclaration()", "AsyncCallable0?(Module0<AsyncCallable0>)", "MapKeySet<Module0<AsyncCallable0>>(Map<Module0<AsyncCallable0>,AstNode0>)", "Map<String,AsyncCallable0>(Module0<AsyncCallable0>)", "bool(Queue<Object?>)", "AstNode0(AstNode0)", "~(Iterable<ExtensionStore>)", "String(int)", "SassFunction0(List<Value0>)", "Frame(Tuple2<String,AstNode>)", "Map<String,Callable>(Module<Callable>)", "~(Module0<AsyncCallable0>)", "MapKeySet<Module<Callable>>(Map<Module<Callable>,AstNode>)", "Callable?(Module<Callable>)", "List<ExtensionStore0>()", "num?(String,num{assertPercent:bool,checkPercent:bool})", "bool(ModifiableCssParentNode0)", "String(SassNumber)", "Future<Value>(List<Value>)", "Object(Object)", "Uri?/()", "AstNode?()", "Future<SassNumber0>()", "num(num,num?,num)", "bool(UseRule0)", "bool(ForwardRule0)", "Uri(String)", "int(int,num?)", "MapKeySet<Module<AsyncCallable>>(Map<Module<AsyncCallable>,AstNode>)", "AsyncCallable?(Module<AsyncCallable>)", "Future<Object>()", "SelectorList(Value)", "SelectorList(SelectorList,SelectorList)", "Uri?()", "bool(ForwardRule)", "AstNode0?()", "String(SassNumber0)", "Frame(Tuple2<String,AstNode0>)", "Future<Tuple3<AsyncImporter0,Uri,Uri>?>()", "0&(@[@])", "bool(Import)", "bool(Statement)", "bool(UseRule)", "bool(String?)", "~(Uint8List,String,int)", "String(Value0)", "Future<SassNumber>()", "Iterable<String>()", "~(Object?,Object?)", "Iterable<String>(String)", "~(@,@)", "Future<NodeCompileResult>()", "bool(ModifiableCssParentNode)", "Iterable<String>(@)", "List<ExtensionStore>()", "~(Iterable<ExtensionStore0>)", "DateTime()", "Callable0?(Module0<Callable0>)", "MapKeySet<Module0<Callable0>>(Map<Module0<Callable0>,AstNode0>)", "Map<String,Callable0>(Module0<Callable0>)", "~(Module<AsyncCallable>)", "SassFunction(List<Value>)", "Future<Tuple3<AsyncImporter,Uri,Uri>?>()", "Value0?(Value0)", "Set<0^>()<Object?>", "SassNumber0()", "String(_NodeException)", "AstNode(AstNode)", "List<Extension0>()", "num(num,String)", "~(Object[StackTrace?])", "~(String[~])", "Iterable<ComplexSelectorComponent0>(List<List<ComplexSelectorComponent0>>)", "~([Object?])", "bool(Statement0)", "bool(Import0)", "Tuple3<Importer0,Uri,Uri>?()", "Entry(Entry)", "int(int)", "AsyncImporter0(Object?)", "Value0(int)", "@(Value0,num)", "Object(_NodeSassMap,int)", "Null(_NodeSassMap,int,Object)", "bool(SassNumber0)", "ImmutableList(SassNumber0)", "bool(SassNumber0,String)", "SassNumber0(SassNumber0,Object,Object[String?])", "SassNumber0(SassNumber0,SassNumber0[String?,String?])", "num(SassNumber0,Object,Object[String?])", "num(SassNumber0,SassNumber0[String?,String?])", "~(String,Function)", "SelectorList0(Value0)", "SelectorList0(SelectorList0,SelectorList0)", "FileLocation(FileSpan)", "String(FileSpan)", "int(SourceLocation)", "AtRule(List<Statement>,FileSpan)", "~(String,@)", "AtRootRule0(List<Statement0>,FileSpan)", "AtRule0(List<Statement0>,FileSpan)", "int(@,@)", "AtRootRule(List<Statement>,FileSpan)", "bool(Object?,Object?)", "int(Object?)", "Map<String,AsyncCallable>(Module<AsyncCallable>)", "SupportsRule(List<Statement>,FileSpan)", "Module<AsyncCallable>?(Module<AsyncCallable>)", "EvaluateResult()", "Module<Callable>(Module<Callable>)", "CssValue<Value>(Expression)", "Value?(Value)", "@(@,String)", "CssValue<String>(Interpolation)", "String(Value)", "CssValue<String>(SupportsCondition)", "UserDefinedCallable<Environment>(ContentBlock)", "0&(List<Value>)", "Value(Expression)", "~(ContentBlock)", "~(List<Statement>)", "~(CssMediaQuery)", "~(MapEntry<Value,Value>)", "SourceFile()", "SourceFile?(int)", "String?(SourceFile?)", "int(_Line)", "Future<@>?()", "Object(_Line)", "Object(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(MapEntry<Object,List<_Highlight>>)", "SourceSpanWithContext()", "String(String{color:@})", "FileSpan?(MapEntry<Module<AsyncCallable>,AstNode>)", "List<Frame>(Trace)", "int(Trace)", "List<Value>(Value)", "String(Trace)", "bool(List<Value>)", "Map<String,Value>(Module<AsyncCallable>)", "Frame(String,String)", "Map<String,AstNode>(Module<AsyncCallable>)", "Null(@,StackTrace)", "SassMap(Value)", "Frame(Frame)", "Future<~>?()", "String(Argument0)", "SassMap(SassMap)", "SassArgumentList0(Object,Object,Object[String?])", "ImmutableMap(SassArgumentList0)", "Null(Function,Function)", "Set<ModifiableCssValue<SelectorList>>()", "Value0?(Module0<AsyncCallable0>)", "Module0<AsyncCallable0>?(Module0<AsyncCallable0>)", "String(String?)", "_Future<@>(@)", "FileSpan?(MapEntry<Module0<AsyncCallable0>,AstNode0>)", "Map<String,Value0>(Module0<AsyncCallable0>)", "Map<String,AstNode0>(Module0<AsyncCallable0>)", "SassNumber(Value)", "Value(Object)", "Future<List<CssMediaQuery0>>(Interpolation0)", "Future<String>(SupportsCondition0)", "Future<Stylesheet?>()", "bool(Tuple3<AsyncImporter,Uri,Uri>)", "SassString(SimpleSelector)", "Uri(Tuple3<AsyncImporter,Uri,Uri>)", "bool(String?,String?)", "Future<~>(List<Value0>)", "int(String?)", "bool(Tuple3<Importer,Uri,Uri>)", "Future<EvaluateResult0>()", "Uri(Tuple3<Importer,Uri,Uri>)", "Null(@,@)", "Module0<AsyncCallable0>(Module0<AsyncCallable0>)", "String(MapEntry<String,ConfiguredValue>)", "String(Argument)", "Value?(Module<Callable>)", "Future<CssValue0<Value0>>(Expression0)", "Module<Callable>?(Module<Callable>)", "Expression(Expression)", "Future<Value0?>(Value0)", "~(int,@)", "FileSpan?(MapEntry<Module<Callable>,AstNode>)", "Future<CssValue0<String>>(Interpolation0)", "Map<String,Value>(Module<Callable>)", "Map<String,AstNode>(Module<Callable>)", "String(Tuple2<Expression,Expression>)", "~(Symbol0,@)", "ArgParser()", "Future<CssValue0<String>>(SupportsCondition0)", "UserDefinedCallable0<AsyncEnvironment0>(ContentBlock0)", "String(int,IfClause)", "String(BuiltInCallable)", "Future<~>(String)", "List<WatchEvent>(List<WatchEvent>)", "CompoundSelector()", "Statement({root:bool})", "Future<Value0>(Expression0)", "~(String,int)", "Expression({bracketList:bool,singleEquals:bool,until:bool()?})", "Stylesheet()", "Statement?()", "VariableDeclaration(VariableDeclaration)", "ArgumentDeclaration()", "bool(Extension)", "Future<Stylesheet0?>()", "bool(Tuple3<AsyncImporter0,Uri,Uri>)", "Uri(Tuple3<AsyncImporter0,Uri,Uri>)", "UseRule()", "0&(Object[Object?])", "~(String,int?)", "Expression0(Expression0)", "int(int,int)", "StyleRule(List<Statement>,FileSpan)", "@(String)", "EachRule(List<Statement>,FileSpan)", "FunctionRule(List<Statement>,FileSpan)", "0&(List<Value0>)", "ForRule(List<Statement>,FileSpan)", "Null(_NodeSassColor,num?[num?,num?,num?,SassColor0?])", "ContentBlock(List<Statement>,FileSpan)", "num(_NodeSassColor)", "MediaRule(List<Statement>,FileSpan)", "SassColor0(Object,_Channels)", "SassColor0(SassColor0,_Channels)", "MixinRule(List<Statement>,FileSpan)", "~(SimpleSelector,Map<ComplexSelector,Extension>)", "~(ComplexSelector,Extension)", "WhileRule(List<Statement>,FileSpan)", "AsyncImporter0(NodeImporter0)", "0&(@)", "~(Expression)", "~(BinaryOperator)", "String(MapEntry<String,ConfiguredValue0>)", "String(BuiltInCallable0)", "Null(Map<SimpleSelector,Map<ComplexSelector,Extension>>)", "StringExpression(Interpolation)", "Value0?(Module0<Callable0>)", "Module0<Callable0>?(Module0<Callable0>)", "DateTime(StylesheetNode)", "~(Uri,StylesheetNode?)", "FileSpan?(MapEntry<Module0<Callable0>,AstNode0>)", "Map<String,Value0>(Module0<Callable0>)", "Map<String,AstNode0>(Module0<Callable0>)", "Map<SimpleSelector,Map<ComplexSelector,Extension>>?(List<Extension>)", "~(Set<ModifiableCssValue<SelectorList>>)", "List<CssMediaQuery0>(Interpolation0)", "String(SupportsCondition0)", "List<ComplexSelector>(ComplexSelectorComponent)", "~(List<Value0>)", "SassScriptException()", "Object(Value0)", "Module0<Callable0>(Module0<Callable0>)", "CssValue0<Value0>(Expression0)", "Iterable<ComplexSelector>(List<ComplexSelector>)", "SingleUnitSassNumber(num)", "CssValue0<String>(Interpolation0)", "Future<List<CssMediaQuery>>(Interpolation)", "CssValue0<String>(SupportsCondition0)", "UserDefinedCallable0<Environment0>(ContentBlock0)", "Value0(Expression0)", "Future<String>(SupportsCondition)", "FileSpan(_NodeException)", "bool(Extension0)", "Set<ModifiableCssValue0<SelectorList0>>()", "List<ComplexSelectorComponent>(ComplexSelector)", "ComplexSelector(Extender)", "~(SimpleSelector0,Map<ComplexSelector0,Extension0>)", "~(ComplexSelector0,Extension0)", "Null(Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>)", "Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>?(List<Extension0>)", "~(Set<ModifiableCssValue0<SelectorList0>>)", "List<ComplexSelector0>(ComplexSelectorComponent0)", "Iterable<ComplexSelector0>(List<ComplexSelector0>)", "List<ComplexSelectorComponent0>(ComplexSelector0)", "List<ComplexSelector>?(List<Extender>)", "Future<~>(List<Value>)", "ComplexSelector0(Extender0)", "List<ComplexSelector0>?(List<Extender0>)", "List<SimpleSelector0>(Extender0)", "List<ComplexSelector0>(List<ComplexSelector0>)", "List<Extender0>?(SimpleSelector0)", "List<Extender0>(PseudoSelector0)", "List<List<Extender0>>(List<Extender0>)", "List<ComplexSelector0>(ComplexSelector0)", "PseudoSelector0(ComplexSelector0)", "~(SimpleSelector0,Set<ModifiableCssValue0<SelectorList0>>)", "SassFunction0(Object,String,Value0(List<Value0>))", "List<SimpleSelector>(Extender)", "List<ComplexSelectorComponent0>?(List<ComplexSelectorComponent0>,List<ComplexSelectorComponent0>)", "bool(Queue<List<ComplexSelectorComponent0>>)", "Future<EvaluateResult>()", "bool(List<Iterable<ComplexSelectorComponent0>>)", "List<ComplexSelectorComponent0>(List<Iterable<ComplexSelectorComponent0>>)", "Iterable<ComplexSelectorComponent0>(Iterable<ComplexSelectorComponent0>)", "List<ComplexSelector>(List<ComplexSelector>)", "bool(PseudoSelector0)", "SelectorList0?(PseudoSelector0)", "String(int,IfClause0)", "Module<AsyncCallable>(Module<AsyncCallable>)", "List<Extender>?(SimpleSelector)", "~(Object?,Object,Object?)", "Tuple2<String,String>(String)", "List<Extender>(PseudoSelector)", "Stylesheet0?()", "bool(Tuple3<Importer0,Uri,Uri>)", "Uri(Tuple3<Importer0,Uri,Uri>)", "Null(RenderResult)", "JSFunction0(JSFunction0)", "Object?(Object,String,String[Object?])", "Null(Object)", "List<List<Extender>>(List<Extender>)", "List<Value0>(Value0)", "bool(List<Value0>)", "SassList0(ComplexSelector0)", "SassString0(ComplexSelectorComponent0)", "Future<CssValue<Value>>(Expression)", "List<ComplexSelector>(ComplexSelector)", "SimpleSelector0(SimpleSelector0)", "Null(_NodeSassList,int?[bool?,SassList0?])", "PseudoSelector(ComplexSelector)", "Object(_NodeSassList,int)", "Null(_NodeSassList,int,Object)", "bool(_NodeSassList)", "Null(_NodeSassList,bool)", "int(_NodeSassList)", "SassList0(Object[Object?,_ConstructorOptions?])", "Future<Value?>(Value)", "String(Tuple2<Expression0,Expression0>)", "SassMap0(Value0)", "SassMap0(SassMap0)", "Null(_NodeSassMap,int?[SassMap0?])", "SassNumber0(int)", "~(SimpleSelector,Set<ModifiableCssValue<SelectorList>>)", "int(_NodeSassMap)", "Future<CssValue<String>>(Interpolation)", "SassMap0(Object[ImmutableMap?])", "ImmutableMap(SassMap0)", "@(SassMap0,Object)", "SassNumber0(Value0)", "Value0(Object)", "~(String,WarnOptions)", "~(String,DebugOptions)", "Null(_NodeSassNumber,num?[String?,SassNumber0?])", "num(_NodeSassNumber)", "Null(_NodeSassNumber,num)", "String(_NodeSassNumber)", "Null(_NodeSassNumber,String)", "SassNumber0(Object,num[Object?])", "num(SassNumber0)", "Uint8List(@,@)", "int?(SassNumber0)", "List<ComplexSelectorComponent>?(List<ComplexSelectorComponent>,List<ComplexSelectorComponent>)", "int(SassNumber0[String?])", "num(SassNumber0,num,num[String?])", "~(SassNumber0[String?])", "~(SassNumber0,String[String?])", "bool(Queue<List<ComplexSelectorComponent>>)", "SassList(ComplexSelector)", "Future<CssValue<String>>(SupportsCondition)", "UserDefinedCallable<AsyncEnvironment>(ContentBlock)", "SassString(ComplexSelectorComponent)", "SassScriptException0()", "String(Object,@,@[@])", "bool(List<Iterable<ComplexSelectorComponent>>)", "~(String,StackTrace?)", "List<ComplexSelectorComponent>(List<Iterable<ComplexSelectorComponent>>)", "Iterable<ComplexSelectorComponent>(Iterable<ComplexSelectorComponent>)", "SassString0(SimpleSelector0)", "CompoundSelector0()", "~(CssMediaQuery0)", "~(MapEntry<Value0,Value0>)", "SingleUnitSassNumber0(num)", "Future<@>()", "JSUrl0?(FileSpan)", "Future<Value>(Expression)", "bool(PseudoSelector)", "Null(_NodeSassString,String?[SassString0?])", "String(_NodeSassString)", "Null(_NodeSassString,String)", "SassString0(Object[Object?,_ConstructorOptions1?])", "String(SassString0)", "bool(SassString0)", "int(SassString0)", "int(SassString0,Value0[String?])", "Statement0({root:bool})", "SelectorList?(PseudoSelector)", "Stylesheet0()", "Statement0?()", "VariableDeclaration0(VariableDeclaration0)", "ArgumentDeclaration0()", "Tuple2<String,ArgumentDeclaration0>()", "VariableDeclaration0()", "Object?(Object?)", "StyleRule0(List<Statement0>,FileSpan)", "~([Future<~>?])", "EachRule0(List<Statement0>,FileSpan)", "FunctionRule0(List<Statement0>,FileSpan)", "ForRule0(List<Statement0>,FileSpan)", "ContentBlock0(List<Statement0>,FileSpan)", "MediaRule0(List<Statement0>,FileSpan)", "MixinRule0(List<Statement0>,FileSpan)", "SimpleSelector(SimpleSelector)", "SupportsRule0(List<Statement0>,FileSpan)", "WhileRule0(List<Statement0>,FileSpan)", "~(Expression0)", "~(BinaryOperator0)", "StringExpression0(Interpolation0)", "Null(~(Object?),~(Object?))", "ImmutableList(Value0)", "String?(Value0)", "int(Value0,Value0[String?])", "SassBoolean0(Value0[String?])", "SassColor0(Value0[String?])", "SassFunction0(Value0[String?])", "SassMap0(Value0[String?])", "SassNumber0(Value0[String?])", "SassString0(Value0[String?])", "SassMap0?(Value0)", "bool(Value0,Object?)", "int(Value0[Object?])", "~(String,Option)", "Value?(Module<AsyncCallable>)", "~(Zone?,ZoneDelegate?,Zone,Object,StackTrace)", "0^(Zone?,ZoneDelegate?,Zone,0^())<Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^),1^)<Object?Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^,2^),1^,2^)<Object?Object?Object?>", "0^()(Zone,ZoneDelegate,Zone,0^())<Object?>", "0^(1^)(Zone,ZoneDelegate,Zone,0^(1^))<Object?Object?>", "0^(1^,2^)(Zone,ZoneDelegate,Zone,0^(1^,2^))<Object?Object?Object?>", "AsyncError?(Zone,ZoneDelegate,Zone,Object,StackTrace?)", "~(Zone?,ZoneDelegate?,Zone,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~(Timer))", "~(Zone,ZoneDelegate,Zone,String)", "Zone(Zone?,ZoneDelegate?,Zone,ZoneSpecification?,Map<Object?,Object?>?)", "List<CssMediaQuery>(Interpolation)", "String(SupportsCondition)", "0^(0^,0^)<num>", "~(@,StackTrace)", "~(Object,StackTrace,EventSink<0^>)<Object?>", "List<0^>(0^,List<0^>?)<Object?>", "NodeCompileResult(String[CompileOptions?])", "NodeCompileResult(String[CompileStringOptions?])", "Promise(String[CompileOptions?])", "Promise(String[CompileStringOptions?])", "Importer0(Object?)", "List<Object?>(Object?)", "~(RenderOptions,~(Object?,RenderResult?))", "RenderResult(RenderOptions)", "Future<~>(List<String>)", "Uri(JSUrl0)", "JSUrl0(Uri)", "String(String[String?,String?,String?,String?,String?,String?])", "~(List<Value>)", "EvaluateResult0()"],
97352
97613
  interceptorsByTag: null,
97353
97614
  leafTags: null,
97354
97615
  arrayRti: Symbol("$ti")
97355
97616
  };
97356
- A._Universe_addRules(init.typeUniverse, JSON.parse('{"PlainJavaScriptObject":"JavaScriptObject","UnknownJavaScriptObject":"JavaScriptObject","JavaScriptFunction":"JavaScriptObject","Stdin":"JavaScriptObject","Stdout":"JavaScriptObject","ReadlineModule":"JavaScriptObject","ReadlineOptions":"JavaScriptObject","ReadlineInterface":"JavaScriptObject","BufferModule":"JavaScriptObject","BufferConstants":"JavaScriptObject","Buffer":"JavaScriptObject","ConsoleModule":"JavaScriptObject","Console":"JavaScriptObject","EventEmitter":"JavaScriptObject","FS":"JavaScriptObject","FSConstants":"JavaScriptObject","FSWatcher":"JavaScriptObject","ReadStream":"JavaScriptObject","ReadStreamOptions":"JavaScriptObject","WriteStream":"JavaScriptObject","WriteStreamOptions":"JavaScriptObject","FileOptions":"JavaScriptObject","StatOptions":"JavaScriptObject","MkdirOptions":"JavaScriptObject","RmdirOptions":"JavaScriptObject","WatchOptions":"JavaScriptObject","WatchFileOptions":"JavaScriptObject","Stats":"JavaScriptObject","Promise":"JavaScriptObject","Date":"JavaScriptObject","JsError":"JavaScriptObject","Atomics":"JavaScriptObject","Modules":"JavaScriptObject","Module1":"JavaScriptObject","Net":"JavaScriptObject","Socket":"JavaScriptObject","NetAddress":"JavaScriptObject","NetServer":"JavaScriptObject","NodeJsError":"JavaScriptObject","JsAssertionError":"JavaScriptObject","JsRangeError":"JavaScriptObject","JsReferenceError":"JavaScriptObject","JsSyntaxError":"JavaScriptObject","JsTypeError":"JavaScriptObject","JsSystemError":"JavaScriptObject","Process":"JavaScriptObject","CPUUsage":"JavaScriptObject","Release":"JavaScriptObject","StreamModule":"JavaScriptObject","Readable":"JavaScriptObject","Writable":"JavaScriptObject","Duplex":"JavaScriptObject","Transform":"JavaScriptObject","WritableOptions":"JavaScriptObject","ReadableOptions":"JavaScriptObject","Immediate":"JavaScriptObject","Timeout":"JavaScriptObject","TTY":"JavaScriptObject","TTYReadStream":"JavaScriptObject","TTYWriteStream":"JavaScriptObject","Util":"JavaScriptObject","JSArray0":"JavaScriptObject","Chokidar":"JavaScriptObject","ChokidarOptions":"JavaScriptObject","ChokidarWatcher":"JavaScriptObject","JSFunction":"JavaScriptObject","NodeImporterResult":"JavaScriptObject","RenderContext":"JavaScriptObject","RenderContextOptions":"JavaScriptObject","RenderContextResult":"JavaScriptObject","RenderContextResultStats":"JavaScriptObject","JSClass":"JavaScriptObject","JSUrl":"JavaScriptObject","_PropertyDescriptor":"JavaScriptObject","JSArray1":"JavaScriptObject","Chokidar0":"JavaScriptObject","ChokidarOptions0":"JavaScriptObject","ChokidarWatcher0":"JavaScriptObject","_NodeSassColor":"JavaScriptObject","_Channels":"JavaScriptObject","CompileOptions":"JavaScriptObject","CompileStringOptions":"JavaScriptObject","NodeCompileResult":"JavaScriptObject","_NodeException":"JavaScriptObject","Exports":"JavaScriptObject","LoggerNamespace":"JavaScriptObject","Fiber":"JavaScriptObject","FiberClass":"JavaScriptObject","JSFunction0":"JavaScriptObject","ImmutableList":"JavaScriptObject","ImmutableMap":"JavaScriptObject","NodeImporter0":"JavaScriptObject","CanonicalizeOptions":"JavaScriptObject","NodeImporterResult0":"JavaScriptObject","NodeImporterResult1":"JavaScriptObject","_NodeSassList":"JavaScriptObject","_ConstructorOptions":"JavaScriptObject","WarnOptions":"JavaScriptObject","DebugOptions":"JavaScriptObject","NodeLogger":"JavaScriptObject","_NodeSassMap":"JavaScriptObject","_NodeSassNumber":"JavaScriptObject","_ConstructorOptions0":"JavaScriptObject","JSClass0":"JavaScriptObject","RenderContext0":"JavaScriptObject","RenderContextOptions0":"JavaScriptObject","RenderContextResult0":"JavaScriptObject","RenderContextResultStats0":"JavaScriptObject","RenderOptions":"JavaScriptObject","RenderResult":"JavaScriptObject","RenderResultStats":"JavaScriptObject","_Exports":"JavaScriptObject","_NodeSassString":"JavaScriptObject","_ConstructorOptions1":"JavaScriptObject","Types":"JavaScriptObject","JSUrl0":"JavaScriptObject","_PropertyDescriptor0":"JavaScriptObject","JSBool":{"bool":[]},"JSNull":{"Null":[]},"JavaScriptObject":{"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"},"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"]},"NativeTypedArrayOfInt":{"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"NativeFloat32List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"NativeFloat64List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"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"},"_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":[]},"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":{"SupportsCondition":[],"AstNode":[]},"SupportsDeclaration":{"SupportsCondition":[],"AstNode":[]},"SupportsFunction":{"SupportsCondition":[],"AstNode":[]},"SupportsInterpolation":{"SupportsCondition":[],"AstNode":[]},"SupportsNegation":{"SupportsCondition":[],"AstNode":[]},"SupportsOperation":{"SupportsCondition":[],"AstNode":[]},"AttributeSelector":{"SimpleSelector":[]},"ClassSelector":{"SimpleSelector":[]},"Combinator":{"ComplexSelectorComponent":[]},"CompoundSelector":{"ComplexSelectorComponent":[]},"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"},"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":{"SupportsCondition0":[],"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":[]},"Combinator0":{"ComplexSelectorComponent0":[]},"CompoundSelector0":{"ComplexSelectorComponent0":[]},"ExplicitConfiguration0":{"Configuration0":[]},"ConfiguredVariable0":{"AstNode0":[]},"ContentBlock0":{"Statement0":[],"AstNode0":[]},"ContentRule0":{"Statement0":[],"AstNode0":[]},"DebugRule0":{"Statement0":[],"AstNode0":[]},"ModifiableCssDeclaration0":{"ModifiableCssNode0":[],"CssNode0":[],"AstNode0":[]},"Declaration0":{"Statement0":[],"AstNode0":[]},"SupportsDeclaration0":{"SupportsCondition0":[],"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":{"SupportsCondition0":[],"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":{"SupportsCondition0":[],"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"},"SupportsNegation0":{"SupportsCondition0":[],"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":{"SupportsCondition0":[],"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":[]},"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":[]},"SupportsCondition":{"AstNode":[]},"Callable":{"AsyncCallable":[]},"Callable0":{"AsyncCallable0":[]},"Expression0":{"AstNode0":[]},"Import0":{"AstNode0":[]},"Statement0":{"AstNode0":[]},"SupportsCondition0":{"AstNode0":[]}}'));
97617
+ 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","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"},"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"]},"NativeTypedArrayOfInt":{"ListMixin":["int"],"JavaScriptIndexingBehavior":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"NativeFloat32List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"NativeFloat64List":{"NativeTypedArrayOfDouble":[],"ListMixin":["double"],"JavaScriptIndexingBehavior":["double"],"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"ListMixin.E":"double"},"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"},"_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":[]},"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":{"SupportsCondition":[],"AstNode":[]},"SupportsDeclaration":{"SupportsCondition":[],"AstNode":[]},"SupportsFunction":{"SupportsCondition":[],"AstNode":[]},"SupportsInterpolation":{"SupportsCondition":[],"AstNode":[]},"SupportsNegation":{"SupportsCondition":[],"AstNode":[]},"SupportsOperation":{"SupportsCondition":[],"AstNode":[]},"AttributeSelector":{"SimpleSelector":[]},"ClassSelector":{"SimpleSelector":[]},"Combinator":{"ComplexSelectorComponent":[]},"CompoundSelector":{"ComplexSelectorComponent":[]},"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"},"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":{"SupportsCondition0":[],"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":[]},"Combinator0":{"ComplexSelectorComponent0":[]},"CompoundSelector0":{"ComplexSelectorComponent0":[]},"ExplicitConfiguration0":{"Configuration0":[]},"ConfiguredVariable0":{"AstNode0":[]},"ContentBlock0":{"Statement0":[],"AstNode0":[]},"ContentRule0":{"Statement0":[],"AstNode0":[]},"DebugRule0":{"Statement0":[],"AstNode0":[]},"ModifiableCssDeclaration0":{"ModifiableCssNode0":[],"CssNode0":[],"AstNode0":[]},"Declaration0":{"Statement0":[],"AstNode0":[]},"SupportsDeclaration0":{"SupportsCondition0":[],"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":{"SupportsCondition0":[],"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":{"SupportsCondition0":[],"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"},"SupportsNegation0":{"SupportsCondition0":[],"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":{"SupportsCondition0":[],"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":[]},"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":[]},"SupportsCondition":{"AstNode":[]},"Callable":{"AsyncCallable":[]},"Callable0":{"AsyncCallable0":[]},"Expression0":{"AstNode0":[]},"Import0":{"AstNode0":[]},"Statement0":{"AstNode0":[]},"SupportsCondition0":{"AstNode0":[]}}'));
97357
97618
  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,"Expando":1,"Iterator":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}'));
97358
97619
  var string$ = {
97359
97620
  x0a_BUG_: "\n\nBUG: This should include a source span!",
@@ -97845,6 +98106,8 @@ self.readline = _cli_pkg_requires.readline;
97845
98106
  SourceSpan: findType("SourceSpan"),
97846
98107
  SourceSpanFormatException: findType("SourceSpanFormatException"),
97847
98108
  SourceSpanWithContext: findType("SourceSpanWithContext"),
98109
+ SpanColorFormat: findType("SpanColorFormat"),
98110
+ SpanColorFormat_2: findType("SpanColorFormat0"),
97848
98111
  StackTrace: findType("StackTrace"),
97849
98112
  Statement: findType("Statement"),
97850
98113
  Statement_2: findType("Statement0"),
@@ -98016,6 +98279,7 @@ self.readline = _cli_pkg_requires.readline;
98016
98279
  B.JSNumber_methods = J.JSNumber.prototype;
98017
98280
  B.JSString_methods = J.JSString.prototype;
98018
98281
  B.JavaScriptFunction_methods = J.JavaScriptFunction.prototype;
98282
+ B.JavaScriptObject_methods = J.JavaScriptObject.prototype;
98019
98283
  B.NativeUint32List_methods = A.NativeUint32List.prototype;
98020
98284
  B.NativeUint8List_methods = A.NativeUint8List.prototype;
98021
98285
  B.PlainJavaScriptObject_methods = J.PlainJavaScriptObject.prototype;
@@ -98402,6 +98666,10 @@ self.readline = _cli_pkg_requires.readline;
98402
98666
  B.UnaryOperator_zDx = new A.UnaryOperator("divide", "/");
98403
98667
  B.UnaryOperator_zDx0 = new A.UnaryOperator0("divide", "/");
98404
98668
  B.Utf8Decoder_false = new A.Utf8Decoder(false);
98669
+ B._ColorFormatEnum_hslFunction = new A._ColorFormatEnum("hslFunction");
98670
+ B._ColorFormatEnum_hslFunction0 = new A._ColorFormatEnum0("hslFunction");
98671
+ B._ColorFormatEnum_rgbFunction = new A._ColorFormatEnum("rgbFunction");
98672
+ B._ColorFormatEnum_rgbFunction0 = new A._ColorFormatEnum0("rgbFunction");
98405
98673
  B._IterationMarker_null_2 = new A._IterationMarker(null, 2);
98406
98674
  B._PathDirection_8Gl = new A._PathDirection("at root");
98407
98675
  B._PathDirection_988 = new A._PathDirection("below root");
@@ -98438,6 +98706,7 @@ self.readline = _cli_pkg_requires.readline;
98438
98706
  (function staticFields() {
98439
98707
  $._JS_INTEROP_INTERCEPTOR_TAG = null;
98440
98708
  $.printToZone = null;
98709
+ $.Primitives__identityHashCodeProperty = null;
98441
98710
  $.BoundClosure__receiverFieldNameCache = null;
98442
98711
  $.BoundClosure__interceptorFieldNameCache = null;
98443
98712
  $.getTagFunction = null;
@@ -98551,7 +98820,7 @@ self.readline = _cli_pkg_requires.readline;
98551
98820
  _lazyFinal($, "IfExpression_declaration", "$get$IfExpression_declaration", () => A.ArgumentDeclaration_ArgumentDeclaration$parse(string$.x40funct, null));
98552
98821
  _lazyFinal($, "colorsByName", "$get$colorsByName", () => {
98553
98822
  var _null = null;
98554
- return A.LinkedHashMap_LinkedHashMap$_literal(["yellowgreen", A.SassColor$rgb(154, 205, 50, _null, _null), "yellow", A.SassColor$rgb(255, 255, 0, _null, _null), "whitesmoke", A.SassColor$rgb(245, 245, 245, _null, _null), "white", A.SassColor$rgb(255, 255, 255, _null, _null), "wheat", A.SassColor$rgb(245, 222, 179, _null, _null), "violet", A.SassColor$rgb(238, 130, 238, _null, _null), "turquoise", A.SassColor$rgb(64, 224, 208, _null, _null), "transparent", A.SassColor$rgb(0, 0, 0, 0, _null), "tomato", A.SassColor$rgb(255, 99, 71, _null, _null), "thistle", A.SassColor$rgb(216, 191, 216, _null, _null), "teal", A.SassColor$rgb(0, 128, 128, _null, _null), "tan", A.SassColor$rgb(210, 180, 140, _null, _null), "steelblue", A.SassColor$rgb(70, 130, 180, _null, _null), "springgreen", A.SassColor$rgb(0, 255, 127, _null, _null), "snow", A.SassColor$rgb(255, 250, 250, _null, _null), "slategrey", A.SassColor$rgb(112, 128, 144, _null, _null), "slategray", A.SassColor$rgb(112, 128, 144, _null, _null), "slateblue", A.SassColor$rgb(106, 90, 205, _null, _null), "skyblue", A.SassColor$rgb(135, 206, 235, _null, _null), "silver", A.SassColor$rgb(192, 192, 192, _null, _null), "sienna", A.SassColor$rgb(160, 82, 45, _null, _null), "seashell", A.SassColor$rgb(255, 245, 238, _null, _null), "seagreen", A.SassColor$rgb(46, 139, 87, _null, _null), "sandybrown", A.SassColor$rgb(244, 164, 96, _null, _null), "salmon", A.SassColor$rgb(250, 128, 114, _null, _null), "saddlebrown", A.SassColor$rgb(139, 69, 19, _null, _null), "royalblue", A.SassColor$rgb(65, 105, 225, _null, _null), "rosybrown", A.SassColor$rgb(188, 143, 143, _null, _null), "red", A.SassColor$rgb(255, 0, 0, _null, _null), "rebeccapurple", A.SassColor$rgb(102, 51, 153, _null, _null), "purple", A.SassColor$rgb(128, 0, 128, _null, _null), "powderblue", A.SassColor$rgb(176, 224, 230, _null, _null), "plum", A.SassColor$rgb(221, 160, 221, _null, _null), "pink", A.SassColor$rgb(255, 192, 203, _null, _null), "peru", A.SassColor$rgb(205, 133, 63, _null, _null), "peachpuff", A.SassColor$rgb(255, 218, 185, _null, _null), "papayawhip", A.SassColor$rgb(255, 239, 213, _null, _null), "palevioletred", A.SassColor$rgb(219, 112, 147, _null, _null), "paleturquoise", A.SassColor$rgb(175, 238, 238, _null, _null), "palegreen", A.SassColor$rgb(152, 251, 152, _null, _null), "palegoldenrod", A.SassColor$rgb(238, 232, 170, _null, _null), "orchid", A.SassColor$rgb(218, 112, 214, _null, _null), "orangered", A.SassColor$rgb(255, 69, 0, _null, _null), "orange", A.SassColor$rgb(255, 165, 0, _null, _null), "olivedrab", A.SassColor$rgb(107, 142, 35, _null, _null), "olive", A.SassColor$rgb(128, 128, 0, _null, _null), "oldlace", A.SassColor$rgb(253, 245, 230, _null, _null), "navy", A.SassColor$rgb(0, 0, 128, _null, _null), "navajowhite", A.SassColor$rgb(255, 222, 173, _null, _null), "moccasin", A.SassColor$rgb(255, 228, 181, _null, _null), "mistyrose", A.SassColor$rgb(255, 228, 225, _null, _null), "mintcream", A.SassColor$rgb(245, 255, 250, _null, _null), "midnightblue", A.SassColor$rgb(25, 25, 112, _null, _null), "mediumvioletred", A.SassColor$rgb(199, 21, 133, _null, _null), "mediumturquoise", A.SassColor$rgb(72, 209, 204, _null, _null), "mediumspringgreen", A.SassColor$rgb(0, 250, 154, _null, _null), "mediumslateblue", A.SassColor$rgb(123, 104, 238, _null, _null), "mediumseagreen", A.SassColor$rgb(60, 179, 113, _null, _null), "mediumpurple", A.SassColor$rgb(147, 112, 219, _null, _null), "mediumorchid", A.SassColor$rgb(186, 85, 211, _null, _null), "mediumblue", A.SassColor$rgb(0, 0, 205, _null, _null), "mediumaquamarine", A.SassColor$rgb(102, 205, 170, _null, _null), "maroon", A.SassColor$rgb(128, 0, 0, _null, _null), "magenta", A.SassColor$rgb(255, 0, 255, _null, _null), "linen", A.SassColor$rgb(250, 240, 230, _null, _null), "limegreen", A.SassColor$rgb(50, 205, 50, _null, _null), "lime", A.SassColor$rgb(0, 255, 0, _null, _null), "lightyellow", A.SassColor$rgb(255, 255, 224, _null, _null), "lightsteelblue", A.SassColor$rgb(176, 196, 222, _null, _null), "lightslategrey", A.SassColor$rgb(119, 136, 153, _null, _null), "lightslategray", A.SassColor$rgb(119, 136, 153, _null, _null), "lightskyblue", A.SassColor$rgb(135, 206, 250, _null, _null), "lightseagreen", A.SassColor$rgb(32, 178, 170, _null, _null), "lightsalmon", A.SassColor$rgb(255, 160, 122, _null, _null), "lightpink", A.SassColor$rgb(255, 182, 193, _null, _null), "lightgrey", A.SassColor$rgb(211, 211, 211, _null, _null), "lightgreen", A.SassColor$rgb(144, 238, 144, _null, _null), "lightgray", A.SassColor$rgb(211, 211, 211, _null, _null), "lightgoldenrodyellow", A.SassColor$rgb(250, 250, 210, _null, _null), "lightcyan", A.SassColor$rgb(224, 255, 255, _null, _null), "lightcoral", A.SassColor$rgb(240, 128, 128, _null, _null), "lightblue", A.SassColor$rgb(173, 216, 230, _null, _null), "lemonchiffon", A.SassColor$rgb(255, 250, 205, _null, _null), "lawngreen", A.SassColor$rgb(124, 252, 0, _null, _null), "lavenderblush", A.SassColor$rgb(255, 240, 245, _null, _null), "lavender", A.SassColor$rgb(230, 230, 250, _null, _null), "khaki", A.SassColor$rgb(240, 230, 140, _null, _null), "ivory", A.SassColor$rgb(255, 255, 240, _null, _null), "indigo", A.SassColor$rgb(75, 0, 130, _null, _null), "indianred", A.SassColor$rgb(205, 92, 92, _null, _null), "hotpink", A.SassColor$rgb(255, 105, 180, _null, _null), "honeydew", A.SassColor$rgb(240, 255, 240, _null, _null), "grey", A.SassColor$rgb(128, 128, 128, _null, _null), "greenyellow", A.SassColor$rgb(173, 255, 47, _null, _null), "green", A.SassColor$rgb(0, 128, 0, _null, _null), "gray", A.SassColor$rgb(128, 128, 128, _null, _null), "goldenrod", A.SassColor$rgb(218, 165, 32, _null, _null), "gold", A.SassColor$rgb(255, 215, 0, _null, _null), "ghostwhite", A.SassColor$rgb(248, 248, 255, _null, _null), "gainsboro", A.SassColor$rgb(220, 220, 220, _null, _null), "fuchsia", A.SassColor$rgb(255, 0, 255, _null, _null), "forestgreen", A.SassColor$rgb(34, 139, 34, _null, _null), "floralwhite", A.SassColor$rgb(255, 250, 240, _null, _null), "firebrick", A.SassColor$rgb(178, 34, 34, _null, _null), "dodgerblue", A.SassColor$rgb(30, 144, 255, _null, _null), "dimgrey", A.SassColor$rgb(105, 105, 105, _null, _null), "dimgray", A.SassColor$rgb(105, 105, 105, _null, _null), "deepskyblue", A.SassColor$rgb(0, 191, 255, _null, _null), "deeppink", A.SassColor$rgb(255, 20, 147, _null, _null), "darkviolet", A.SassColor$rgb(148, 0, 211, _null, _null), "darkturquoise", A.SassColor$rgb(0, 206, 209, _null, _null), "darkslategrey", A.SassColor$rgb(47, 79, 79, _null, _null), "darkslategray", A.SassColor$rgb(47, 79, 79, _null, _null), "darkslateblue", A.SassColor$rgb(72, 61, 139, _null, _null), "darkseagreen", A.SassColor$rgb(143, 188, 143, _null, _null), "darksalmon", A.SassColor$rgb(233, 150, 122, _null, _null), "darkred", A.SassColor$rgb(139, 0, 0, _null, _null), "darkorchid", A.SassColor$rgb(153, 50, 204, _null, _null), "darkorange", A.SassColor$rgb(255, 140, 0, _null, _null), "darkolivegreen", A.SassColor$rgb(85, 107, 47, _null, _null), "darkmagenta", A.SassColor$rgb(139, 0, 139, _null, _null), "darkkhaki", A.SassColor$rgb(189, 183, 107, _null, _null), "darkgrey", A.SassColor$rgb(169, 169, 169, _null, _null), "darkgreen", A.SassColor$rgb(0, 100, 0, _null, _null), "darkgray", A.SassColor$rgb(169, 169, 169, _null, _null), "darkgoldenrod", A.SassColor$rgb(184, 134, 11, _null, _null), "darkcyan", A.SassColor$rgb(0, 139, 139, _null, _null), "darkblue", A.SassColor$rgb(0, 0, 139, _null, _null), "cyan", A.SassColor$rgb(0, 255, 255, _null, _null), "crimson", A.SassColor$rgb(220, 20, 60, _null, _null), "cornsilk", A.SassColor$rgb(255, 248, 220, _null, _null), "cornflowerblue", A.SassColor$rgb(100, 149, 237, _null, _null), "coral", A.SassColor$rgb(255, 127, 80, _null, _null), "chocolate", A.SassColor$rgb(210, 105, 30, _null, _null), "chartreuse", A.SassColor$rgb(127, 255, 0, _null, _null), "cadetblue", A.SassColor$rgb(95, 158, 160, _null, _null), "burlywood", A.SassColor$rgb(222, 184, 135, _null, _null), "brown", A.SassColor$rgb(165, 42, 42, _null, _null), "blueviolet", A.SassColor$rgb(138, 43, 226, _null, _null), "blue", A.SassColor$rgb(0, 0, 255, _null, _null), "blanchedalmond", A.SassColor$rgb(255, 235, 205, _null, _null), "black", A.SassColor$rgb(0, 0, 0, _null, _null), "bisque", A.SassColor$rgb(255, 228, 196, _null, _null), "beige", A.SassColor$rgb(245, 245, 220, _null, _null), "azure", A.SassColor$rgb(240, 255, 255, _null, _null), "aquamarine", A.SassColor$rgb(127, 255, 212, _null, _null), "aqua", A.SassColor$rgb(0, 255, 255, _null, _null), "antiquewhite", A.SassColor$rgb(250, 235, 215, _null, _null), "aliceblue", A.SassColor$rgb(240, 248, 255, _null, _null)], type$.String, type$.SassColor);
98823
+ return A.LinkedHashMap_LinkedHashMap$_literal(["yellowgreen", A.SassColor$rgb(154, 205, 50, _null), "yellow", A.SassColor$rgb(255, 255, 0, _null), "whitesmoke", A.SassColor$rgb(245, 245, 245, _null), "white", A.SassColor$rgb(255, 255, 255, _null), "wheat", A.SassColor$rgb(245, 222, 179, _null), "violet", A.SassColor$rgb(238, 130, 238, _null), "turquoise", A.SassColor$rgb(64, 224, 208, _null), "transparent", A.SassColor$rgb(0, 0, 0, 0), "tomato", A.SassColor$rgb(255, 99, 71, _null), "thistle", A.SassColor$rgb(216, 191, 216, _null), "teal", A.SassColor$rgb(0, 128, 128, _null), "tan", A.SassColor$rgb(210, 180, 140, _null), "steelblue", A.SassColor$rgb(70, 130, 180, _null), "springgreen", A.SassColor$rgb(0, 255, 127, _null), "snow", A.SassColor$rgb(255, 250, 250, _null), "slategrey", A.SassColor$rgb(112, 128, 144, _null), "slategray", A.SassColor$rgb(112, 128, 144, _null), "slateblue", A.SassColor$rgb(106, 90, 205, _null), "skyblue", A.SassColor$rgb(135, 206, 235, _null), "silver", A.SassColor$rgb(192, 192, 192, _null), "sienna", A.SassColor$rgb(160, 82, 45, _null), "seashell", A.SassColor$rgb(255, 245, 238, _null), "seagreen", A.SassColor$rgb(46, 139, 87, _null), "sandybrown", A.SassColor$rgb(244, 164, 96, _null), "salmon", A.SassColor$rgb(250, 128, 114, _null), "saddlebrown", A.SassColor$rgb(139, 69, 19, _null), "royalblue", A.SassColor$rgb(65, 105, 225, _null), "rosybrown", A.SassColor$rgb(188, 143, 143, _null), "red", A.SassColor$rgb(255, 0, 0, _null), "rebeccapurple", A.SassColor$rgb(102, 51, 153, _null), "purple", A.SassColor$rgb(128, 0, 128, _null), "powderblue", A.SassColor$rgb(176, 224, 230, _null), "plum", A.SassColor$rgb(221, 160, 221, _null), "pink", A.SassColor$rgb(255, 192, 203, _null), "peru", A.SassColor$rgb(205, 133, 63, _null), "peachpuff", A.SassColor$rgb(255, 218, 185, _null), "papayawhip", A.SassColor$rgb(255, 239, 213, _null), "palevioletred", A.SassColor$rgb(219, 112, 147, _null), "paleturquoise", A.SassColor$rgb(175, 238, 238, _null), "palegreen", A.SassColor$rgb(152, 251, 152, _null), "palegoldenrod", A.SassColor$rgb(238, 232, 170, _null), "orchid", A.SassColor$rgb(218, 112, 214, _null), "orangered", A.SassColor$rgb(255, 69, 0, _null), "orange", A.SassColor$rgb(255, 165, 0, _null), "olivedrab", A.SassColor$rgb(107, 142, 35, _null), "olive", A.SassColor$rgb(128, 128, 0, _null), "oldlace", A.SassColor$rgb(253, 245, 230, _null), "navy", A.SassColor$rgb(0, 0, 128, _null), "navajowhite", A.SassColor$rgb(255, 222, 173, _null), "moccasin", A.SassColor$rgb(255, 228, 181, _null), "mistyrose", A.SassColor$rgb(255, 228, 225, _null), "mintcream", A.SassColor$rgb(245, 255, 250, _null), "midnightblue", A.SassColor$rgb(25, 25, 112, _null), "mediumvioletred", A.SassColor$rgb(199, 21, 133, _null), "mediumturquoise", A.SassColor$rgb(72, 209, 204, _null), "mediumspringgreen", A.SassColor$rgb(0, 250, 154, _null), "mediumslateblue", A.SassColor$rgb(123, 104, 238, _null), "mediumseagreen", A.SassColor$rgb(60, 179, 113, _null), "mediumpurple", A.SassColor$rgb(147, 112, 219, _null), "mediumorchid", A.SassColor$rgb(186, 85, 211, _null), "mediumblue", A.SassColor$rgb(0, 0, 205, _null), "mediumaquamarine", A.SassColor$rgb(102, 205, 170, _null), "maroon", A.SassColor$rgb(128, 0, 0, _null), "magenta", A.SassColor$rgb(255, 0, 255, _null), "linen", A.SassColor$rgb(250, 240, 230, _null), "limegreen", A.SassColor$rgb(50, 205, 50, _null), "lime", A.SassColor$rgb(0, 255, 0, _null), "lightyellow", A.SassColor$rgb(255, 255, 224, _null), "lightsteelblue", A.SassColor$rgb(176, 196, 222, _null), "lightslategrey", A.SassColor$rgb(119, 136, 153, _null), "lightslategray", A.SassColor$rgb(119, 136, 153, _null), "lightskyblue", A.SassColor$rgb(135, 206, 250, _null), "lightseagreen", A.SassColor$rgb(32, 178, 170, _null), "lightsalmon", A.SassColor$rgb(255, 160, 122, _null), "lightpink", A.SassColor$rgb(255, 182, 193, _null), "lightgrey", A.SassColor$rgb(211, 211, 211, _null), "lightgreen", A.SassColor$rgb(144, 238, 144, _null), "lightgray", A.SassColor$rgb(211, 211, 211, _null), "lightgoldenrodyellow", A.SassColor$rgb(250, 250, 210, _null), "lightcyan", A.SassColor$rgb(224, 255, 255, _null), "lightcoral", A.SassColor$rgb(240, 128, 128, _null), "lightblue", A.SassColor$rgb(173, 216, 230, _null), "lemonchiffon", A.SassColor$rgb(255, 250, 205, _null), "lawngreen", A.SassColor$rgb(124, 252, 0, _null), "lavenderblush", A.SassColor$rgb(255, 240, 245, _null), "lavender", A.SassColor$rgb(230, 230, 250, _null), "khaki", A.SassColor$rgb(240, 230, 140, _null), "ivory", A.SassColor$rgb(255, 255, 240, _null), "indigo", A.SassColor$rgb(75, 0, 130, _null), "indianred", A.SassColor$rgb(205, 92, 92, _null), "hotpink", A.SassColor$rgb(255, 105, 180, _null), "honeydew", A.SassColor$rgb(240, 255, 240, _null), "grey", A.SassColor$rgb(128, 128, 128, _null), "greenyellow", A.SassColor$rgb(173, 255, 47, _null), "green", A.SassColor$rgb(0, 128, 0, _null), "gray", A.SassColor$rgb(128, 128, 128, _null), "goldenrod", A.SassColor$rgb(218, 165, 32, _null), "gold", A.SassColor$rgb(255, 215, 0, _null), "ghostwhite", A.SassColor$rgb(248, 248, 255, _null), "gainsboro", A.SassColor$rgb(220, 220, 220, _null), "fuchsia", A.SassColor$rgb(255, 0, 255, _null), "forestgreen", A.SassColor$rgb(34, 139, 34, _null), "floralwhite", A.SassColor$rgb(255, 250, 240, _null), "firebrick", A.SassColor$rgb(178, 34, 34, _null), "dodgerblue", A.SassColor$rgb(30, 144, 255, _null), "dimgrey", A.SassColor$rgb(105, 105, 105, _null), "dimgray", A.SassColor$rgb(105, 105, 105, _null), "deepskyblue", A.SassColor$rgb(0, 191, 255, _null), "deeppink", A.SassColor$rgb(255, 20, 147, _null), "darkviolet", A.SassColor$rgb(148, 0, 211, _null), "darkturquoise", A.SassColor$rgb(0, 206, 209, _null), "darkslategrey", A.SassColor$rgb(47, 79, 79, _null), "darkslategray", A.SassColor$rgb(47, 79, 79, _null), "darkslateblue", A.SassColor$rgb(72, 61, 139, _null), "darkseagreen", A.SassColor$rgb(143, 188, 143, _null), "darksalmon", A.SassColor$rgb(233, 150, 122, _null), "darkred", A.SassColor$rgb(139, 0, 0, _null), "darkorchid", A.SassColor$rgb(153, 50, 204, _null), "darkorange", A.SassColor$rgb(255, 140, 0, _null), "darkolivegreen", A.SassColor$rgb(85, 107, 47, _null), "darkmagenta", A.SassColor$rgb(139, 0, 139, _null), "darkkhaki", A.SassColor$rgb(189, 183, 107, _null), "darkgrey", A.SassColor$rgb(169, 169, 169, _null), "darkgreen", A.SassColor$rgb(0, 100, 0, _null), "darkgray", A.SassColor$rgb(169, 169, 169, _null), "darkgoldenrod", A.SassColor$rgb(184, 134, 11, _null), "darkcyan", A.SassColor$rgb(0, 139, 139, _null), "darkblue", A.SassColor$rgb(0, 0, 139, _null), "cyan", A.SassColor$rgb(0, 255, 255, _null), "crimson", A.SassColor$rgb(220, 20, 60, _null), "cornsilk", A.SassColor$rgb(255, 248, 220, _null), "cornflowerblue", A.SassColor$rgb(100, 149, 237, _null), "coral", A.SassColor$rgb(255, 127, 80, _null), "chocolate", A.SassColor$rgb(210, 105, 30, _null), "chartreuse", A.SassColor$rgb(127, 255, 0, _null), "cadetblue", A.SassColor$rgb(95, 158, 160, _null), "burlywood", A.SassColor$rgb(222, 184, 135, _null), "brown", A.SassColor$rgb(165, 42, 42, _null), "blueviolet", A.SassColor$rgb(138, 43, 226, _null), "blue", A.SassColor$rgb(0, 0, 255, _null), "blanchedalmond", A.SassColor$rgb(255, 235, 205, _null), "black", A.SassColor$rgb(0, 0, 0, _null), "bisque", A.SassColor$rgb(255, 228, 196, _null), "beige", A.SassColor$rgb(245, 245, 220, _null), "azure", A.SassColor$rgb(240, 255, 255, _null), "aquamarine", A.SassColor$rgb(127, 255, 212, _null), "aqua", A.SassColor$rgb(0, 255, 255, _null), "antiquewhite", A.SassColor$rgb(250, 235, 215, _null), "aliceblue", A.SassColor$rgb(240, 248, 255, _null)], type$.String, type$.SassColor);
98555
98824
  });
98556
98825
  _lazyFinal($, "namesByColor", "$get$namesByColor", () => {
98557
98826
  var t2, t3,
@@ -98587,7 +98856,7 @@ self.readline = _cli_pkg_requires.readline;
98587
98856
  _s15_ = "$color, $amount",
98588
98857
  t1 = type$.String,
98589
98858
  t2 = type$.Value_Function_List_Value;
98590
- return A.UnmodifiableListView$(A._setArrayType([$.$get$_red(), $.$get$_green(), $.$get$_blue(), $.$get$_mix(), A.BuiltInCallable$overloadedFunction("rgb", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure(), _s19_, new A.global_closure0(), "$color, $alpha", new A.global_closure1(), "$channels", new A.global_closure2()], t1, t2)), A.BuiltInCallable$overloadedFunction("rgba", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure3(), _s19_, new A.global_closure4(), "$color, $alpha", new A.global_closure5(), "$channels", new A.global_closure6()], t1, t2)), A._function4("invert", "$color, $weight: 100%", new A.global_closure7()), $.$get$_hue(), $.$get$_saturation(), $.$get$_lightness(), $.$get$_complement(), A.BuiltInCallable$overloadedFunction("hsl", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure8(), _s29_, new A.global_closure9(), _s17_, new A.global_closure10(), "$channels", new A.global_closure11()], t1, t2)), A.BuiltInCallable$overloadedFunction("hsla", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure12(), _s29_, new A.global_closure13(), _s17_, new A.global_closure14(), "$channels", new A.global_closure15()], t1, t2)), A._function4("grayscale", "$color", new A.global_closure16()), A._function4("adjust-hue", "$color, $degrees", new A.global_closure17()), A._function4("lighten", _s15_, new A.global_closure18()), A._function4("darken", _s15_, new A.global_closure19()), A.BuiltInCallable$overloadedFunction("saturate", A.LinkedHashMap_LinkedHashMap$_literal(["$amount", new A.global_closure20(), "$color, $amount", new A.global_closure21()], t1, t2)), A._function4("desaturate", _s15_, new A.global_closure22()), A._function4("opacify", _s15_, A.color___opacify$closure()), A._function4("fade-in", _s15_, A.color___opacify$closure()), A._function4("transparentize", _s15_, A.color___transparentize$closure()), A._function4("fade-out", _s15_, A.color___transparentize$closure()), A.BuiltInCallable$overloadedFunction("alpha", A.LinkedHashMap_LinkedHashMap$_literal(["$color", new A.global_closure23(), "$args...", new A.global_closure24()], t1, t2)), A._function4("opacity", "$color", new A.global_closure25()), $.$get$_ieHexStr(), $.$get$_adjust().withName$1("adjust-color"), $.$get$_scale().withName$1("scale-color"), $.$get$_change().withName$1("change-color")], type$.JSArray_BuiltInCallable), type$.BuiltInCallable);
98859
+ return A.UnmodifiableListView$(A._setArrayType([$.$get$_red(), $.$get$_green(), $.$get$_blue(), $.$get$_mix(), A.BuiltInCallable$overloadedFunction("rgb", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure(), _s19_, new A.global_closure0(), "$color, $alpha", new A.global_closure1(), "$channels", new A.global_closure2()], t1, t2)), A.BuiltInCallable$overloadedFunction("rgba", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure3(), _s19_, new A.global_closure4(), "$color, $alpha", new A.global_closure5(), "$channels", new A.global_closure6()], t1, t2)), A._function4("invert", "$color, $weight: 100%", new A.global_closure7()), $.$get$_hue(), $.$get$_saturation(), $.$get$_lightness(), $.$get$_complement(), A.BuiltInCallable$overloadedFunction("hsl", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure8(), _s29_, new A.global_closure9(), _s17_, new A.global_closure10(), "$channels", new A.global_closure11()], t1, t2)), A.BuiltInCallable$overloadedFunction("hsla", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure12(), _s29_, new A.global_closure13(), _s17_, new A.global_closure14(), "$channels", new A.global_closure15()], t1, t2)), A._function4("grayscale", "$color", new A.global_closure16()), A._function4("adjust-hue", "$color, $degrees", new A.global_closure17()), A._function4("lighten", _s15_, new A.global_closure18()), A._function4("darken", _s15_, new A.global_closure19()), A.BuiltInCallable$overloadedFunction("saturate", A.LinkedHashMap_LinkedHashMap$_literal(["$amount", new A.global_closure20(), "$color, $amount", new A.global_closure21()], t1, t2)), A._function4("desaturate", _s15_, new A.global_closure22()), A._function4("opacify", _s15_, A.color0___opacify$closure()), A._function4("fade-in", _s15_, A.color0___opacify$closure()), A._function4("transparentize", _s15_, A.color0___transparentize$closure()), A._function4("fade-out", _s15_, A.color0___transparentize$closure()), A.BuiltInCallable$overloadedFunction("alpha", A.LinkedHashMap_LinkedHashMap$_literal(["$color", new A.global_closure23(), "$args...", new A.global_closure24()], t1, t2)), A._function4("opacity", "$color", new A.global_closure25()), $.$get$_ieHexStr(), $.$get$_adjust().withName$1("adjust-color"), $.$get$_scale().withName$1("scale-color"), $.$get$_change().withName$1("change-color")], type$.JSArray_BuiltInCallable), type$.BuiltInCallable);
98591
98860
  });
98592
98861
  _lazyFinal($, "module", "$get$module", () => {
98593
98862
  var _s9_ = "lightness",
@@ -98763,7 +99032,7 @@ self.readline = _cli_pkg_requires.readline;
98763
99032
  _s15_ = "$color, $amount",
98764
99033
  t1 = type$.String,
98765
99034
  t2 = type$.Value_Function_List_Value_2;
98766
- return A.UnmodifiableListView$(A._setArrayType([$.$get$_red0(), $.$get$_green0(), $.$get$_blue0(), $.$get$_mix0(), A.BuiltInCallable$overloadedFunction0("rgb", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure30(), _s19_, new A.global_closure31(), "$color, $alpha", new A.global_closure32(), "$channels", new A.global_closure33()], t1, t2)), A.BuiltInCallable$overloadedFunction0("rgba", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure34(), _s19_, new A.global_closure35(), "$color, $alpha", new A.global_closure36(), "$channels", new A.global_closure37()], t1, t2)), A._function11("invert", "$color, $weight: 100%", new A.global_closure38()), $.$get$_hue0(), $.$get$_saturation0(), $.$get$_lightness0(), $.$get$_complement0(), A.BuiltInCallable$overloadedFunction0("hsl", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure39(), _s29_, new A.global_closure40(), _s17_, new A.global_closure41(), "$channels", new A.global_closure42()], t1, t2)), A.BuiltInCallable$overloadedFunction0("hsla", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure43(), _s29_, new A.global_closure44(), _s17_, new A.global_closure45(), "$channels", new A.global_closure46()], t1, t2)), A._function11("grayscale", "$color", new A.global_closure47()), A._function11("adjust-hue", "$color, $degrees", new A.global_closure48()), A._function11("lighten", _s15_, new A.global_closure49()), A._function11("darken", _s15_, new A.global_closure50()), A.BuiltInCallable$overloadedFunction0("saturate", A.LinkedHashMap_LinkedHashMap$_literal(["$amount", new A.global_closure51(), "$color, $amount", new A.global_closure52()], t1, t2)), A._function11("desaturate", _s15_, new A.global_closure53()), A._function11("opacify", _s15_, A.color1___opacify$closure()), A._function11("fade-in", _s15_, A.color1___opacify$closure()), A._function11("transparentize", _s15_, A.color1___transparentize$closure()), A._function11("fade-out", _s15_, A.color1___transparentize$closure()), A.BuiltInCallable$overloadedFunction0("alpha", A.LinkedHashMap_LinkedHashMap$_literal(["$color", new A.global_closure54(), "$args...", new A.global_closure55()], t1, t2)), A._function11("opacity", "$color", new A.global_closure56()), $.$get$_ieHexStr0(), $.$get$_adjust0().withName$1("adjust-color"), $.$get$_scale0().withName$1("scale-color"), $.$get$_change0().withName$1("change-color")], type$.JSArray_BuiltInCallable_2), type$.BuiltInCallable_2);
99035
+ return A.UnmodifiableListView$(A._setArrayType([$.$get$_red0(), $.$get$_green0(), $.$get$_blue0(), $.$get$_mix0(), A.BuiltInCallable$overloadedFunction0("rgb", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure30(), _s19_, new A.global_closure31(), "$color, $alpha", new A.global_closure32(), "$channels", new A.global_closure33()], t1, t2)), A.BuiltInCallable$overloadedFunction0("rgba", A.LinkedHashMap_LinkedHashMap$_literal([_s27_, new A.global_closure34(), _s19_, new A.global_closure35(), "$color, $alpha", new A.global_closure36(), "$channels", new A.global_closure37()], t1, t2)), A._function11("invert", "$color, $weight: 100%", new A.global_closure38()), $.$get$_hue0(), $.$get$_saturation0(), $.$get$_lightness0(), $.$get$_complement0(), A.BuiltInCallable$overloadedFunction0("hsl", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure39(), _s29_, new A.global_closure40(), _s17_, new A.global_closure41(), "$channels", new A.global_closure42()], t1, t2)), A.BuiltInCallable$overloadedFunction0("hsla", A.LinkedHashMap_LinkedHashMap$_literal([_s37_, new A.global_closure43(), _s29_, new A.global_closure44(), _s17_, new A.global_closure45(), "$channels", new A.global_closure46()], t1, t2)), A._function11("grayscale", "$color", new A.global_closure47()), A._function11("adjust-hue", "$color, $degrees", new A.global_closure48()), A._function11("lighten", _s15_, new A.global_closure49()), A._function11("darken", _s15_, new A.global_closure50()), A.BuiltInCallable$overloadedFunction0("saturate", A.LinkedHashMap_LinkedHashMap$_literal(["$amount", new A.global_closure51(), "$color, $amount", new A.global_closure52()], t1, t2)), A._function11("desaturate", _s15_, new A.global_closure53()), A._function11("opacify", _s15_, A.color2___opacify$closure()), A._function11("fade-in", _s15_, A.color2___opacify$closure()), A._function11("transparentize", _s15_, A.color2___transparentize$closure()), A._function11("fade-out", _s15_, A.color2___transparentize$closure()), A.BuiltInCallable$overloadedFunction0("alpha", A.LinkedHashMap_LinkedHashMap$_literal(["$color", new A.global_closure54(), "$args...", new A.global_closure55()], t1, t2)), A._function11("opacity", "$color", new A.global_closure56()), $.$get$_ieHexStr0(), $.$get$_adjust0().withName$1("adjust-color"), $.$get$_scale0().withName$1("scale-color"), $.$get$_change0().withName$1("change-color")], type$.JSArray_BuiltInCallable_2), type$.BuiltInCallable_2);
98767
99036
  });
98768
99037
  _lazyFinal($, "module5", "$get$module5", () => {
98769
99038
  var _s9_ = "lightness",
@@ -98793,7 +99062,7 @@ self.readline = _cli_pkg_requires.readline;
98793
99062
  _lazyFinal($, "colorClass", "$get$colorClass", () => new A.colorClass_closure().call$0());
98794
99063
  _lazyFinal($, "colorsByName0", "$get$colorsByName0", () => {
98795
99064
  var _null = null;
98796
- return A.LinkedHashMap_LinkedHashMap$_literal(["yellowgreen", A.SassColor$rgb0(154, 205, 50, _null, _null), "yellow", A.SassColor$rgb0(255, 255, 0, _null, _null), "whitesmoke", A.SassColor$rgb0(245, 245, 245, _null, _null), "white", A.SassColor$rgb0(255, 255, 255, _null, _null), "wheat", A.SassColor$rgb0(245, 222, 179, _null, _null), "violet", A.SassColor$rgb0(238, 130, 238, _null, _null), "turquoise", A.SassColor$rgb0(64, 224, 208, _null, _null), "transparent", A.SassColor$rgb0(0, 0, 0, 0, _null), "tomato", A.SassColor$rgb0(255, 99, 71, _null, _null), "thistle", A.SassColor$rgb0(216, 191, 216, _null, _null), "teal", A.SassColor$rgb0(0, 128, 128, _null, _null), "tan", A.SassColor$rgb0(210, 180, 140, _null, _null), "steelblue", A.SassColor$rgb0(70, 130, 180, _null, _null), "springgreen", A.SassColor$rgb0(0, 255, 127, _null, _null), "snow", A.SassColor$rgb0(255, 250, 250, _null, _null), "slategrey", A.SassColor$rgb0(112, 128, 144, _null, _null), "slategray", A.SassColor$rgb0(112, 128, 144, _null, _null), "slateblue", A.SassColor$rgb0(106, 90, 205, _null, _null), "skyblue", A.SassColor$rgb0(135, 206, 235, _null, _null), "silver", A.SassColor$rgb0(192, 192, 192, _null, _null), "sienna", A.SassColor$rgb0(160, 82, 45, _null, _null), "seashell", A.SassColor$rgb0(255, 245, 238, _null, _null), "seagreen", A.SassColor$rgb0(46, 139, 87, _null, _null), "sandybrown", A.SassColor$rgb0(244, 164, 96, _null, _null), "salmon", A.SassColor$rgb0(250, 128, 114, _null, _null), "saddlebrown", A.SassColor$rgb0(139, 69, 19, _null, _null), "royalblue", A.SassColor$rgb0(65, 105, 225, _null, _null), "rosybrown", A.SassColor$rgb0(188, 143, 143, _null, _null), "red", A.SassColor$rgb0(255, 0, 0, _null, _null), "rebeccapurple", A.SassColor$rgb0(102, 51, 153, _null, _null), "purple", A.SassColor$rgb0(128, 0, 128, _null, _null), "powderblue", A.SassColor$rgb0(176, 224, 230, _null, _null), "plum", A.SassColor$rgb0(221, 160, 221, _null, _null), "pink", A.SassColor$rgb0(255, 192, 203, _null, _null), "peru", A.SassColor$rgb0(205, 133, 63, _null, _null), "peachpuff", A.SassColor$rgb0(255, 218, 185, _null, _null), "papayawhip", A.SassColor$rgb0(255, 239, 213, _null, _null), "palevioletred", A.SassColor$rgb0(219, 112, 147, _null, _null), "paleturquoise", A.SassColor$rgb0(175, 238, 238, _null, _null), "palegreen", A.SassColor$rgb0(152, 251, 152, _null, _null), "palegoldenrod", A.SassColor$rgb0(238, 232, 170, _null, _null), "orchid", A.SassColor$rgb0(218, 112, 214, _null, _null), "orangered", A.SassColor$rgb0(255, 69, 0, _null, _null), "orange", A.SassColor$rgb0(255, 165, 0, _null, _null), "olivedrab", A.SassColor$rgb0(107, 142, 35, _null, _null), "olive", A.SassColor$rgb0(128, 128, 0, _null, _null), "oldlace", A.SassColor$rgb0(253, 245, 230, _null, _null), "navy", A.SassColor$rgb0(0, 0, 128, _null, _null), "navajowhite", A.SassColor$rgb0(255, 222, 173, _null, _null), "moccasin", A.SassColor$rgb0(255, 228, 181, _null, _null), "mistyrose", A.SassColor$rgb0(255, 228, 225, _null, _null), "mintcream", A.SassColor$rgb0(245, 255, 250, _null, _null), "midnightblue", A.SassColor$rgb0(25, 25, 112, _null, _null), "mediumvioletred", A.SassColor$rgb0(199, 21, 133, _null, _null), "mediumturquoise", A.SassColor$rgb0(72, 209, 204, _null, _null), "mediumspringgreen", A.SassColor$rgb0(0, 250, 154, _null, _null), "mediumslateblue", A.SassColor$rgb0(123, 104, 238, _null, _null), "mediumseagreen", A.SassColor$rgb0(60, 179, 113, _null, _null), "mediumpurple", A.SassColor$rgb0(147, 112, 219, _null, _null), "mediumorchid", A.SassColor$rgb0(186, 85, 211, _null, _null), "mediumblue", A.SassColor$rgb0(0, 0, 205, _null, _null), "mediumaquamarine", A.SassColor$rgb0(102, 205, 170, _null, _null), "maroon", A.SassColor$rgb0(128, 0, 0, _null, _null), "magenta", A.SassColor$rgb0(255, 0, 255, _null, _null), "linen", A.SassColor$rgb0(250, 240, 230, _null, _null), "limegreen", A.SassColor$rgb0(50, 205, 50, _null, _null), "lime", A.SassColor$rgb0(0, 255, 0, _null, _null), "lightyellow", A.SassColor$rgb0(255, 255, 224, _null, _null), "lightsteelblue", A.SassColor$rgb0(176, 196, 222, _null, _null), "lightslategrey", A.SassColor$rgb0(119, 136, 153, _null, _null), "lightslategray", A.SassColor$rgb0(119, 136, 153, _null, _null), "lightskyblue", A.SassColor$rgb0(135, 206, 250, _null, _null), "lightseagreen", A.SassColor$rgb0(32, 178, 170, _null, _null), "lightsalmon", A.SassColor$rgb0(255, 160, 122, _null, _null), "lightpink", A.SassColor$rgb0(255, 182, 193, _null, _null), "lightgrey", A.SassColor$rgb0(211, 211, 211, _null, _null), "lightgreen", A.SassColor$rgb0(144, 238, 144, _null, _null), "lightgray", A.SassColor$rgb0(211, 211, 211, _null, _null), "lightgoldenrodyellow", A.SassColor$rgb0(250, 250, 210, _null, _null), "lightcyan", A.SassColor$rgb0(224, 255, 255, _null, _null), "lightcoral", A.SassColor$rgb0(240, 128, 128, _null, _null), "lightblue", A.SassColor$rgb0(173, 216, 230, _null, _null), "lemonchiffon", A.SassColor$rgb0(255, 250, 205, _null, _null), "lawngreen", A.SassColor$rgb0(124, 252, 0, _null, _null), "lavenderblush", A.SassColor$rgb0(255, 240, 245, _null, _null), "lavender", A.SassColor$rgb0(230, 230, 250, _null, _null), "khaki", A.SassColor$rgb0(240, 230, 140, _null, _null), "ivory", A.SassColor$rgb0(255, 255, 240, _null, _null), "indigo", A.SassColor$rgb0(75, 0, 130, _null, _null), "indianred", A.SassColor$rgb0(205, 92, 92, _null, _null), "hotpink", A.SassColor$rgb0(255, 105, 180, _null, _null), "honeydew", A.SassColor$rgb0(240, 255, 240, _null, _null), "grey", A.SassColor$rgb0(128, 128, 128, _null, _null), "greenyellow", A.SassColor$rgb0(173, 255, 47, _null, _null), "green", A.SassColor$rgb0(0, 128, 0, _null, _null), "gray", A.SassColor$rgb0(128, 128, 128, _null, _null), "goldenrod", A.SassColor$rgb0(218, 165, 32, _null, _null), "gold", A.SassColor$rgb0(255, 215, 0, _null, _null), "ghostwhite", A.SassColor$rgb0(248, 248, 255, _null, _null), "gainsboro", A.SassColor$rgb0(220, 220, 220, _null, _null), "fuchsia", A.SassColor$rgb0(255, 0, 255, _null, _null), "forestgreen", A.SassColor$rgb0(34, 139, 34, _null, _null), "floralwhite", A.SassColor$rgb0(255, 250, 240, _null, _null), "firebrick", A.SassColor$rgb0(178, 34, 34, _null, _null), "dodgerblue", A.SassColor$rgb0(30, 144, 255, _null, _null), "dimgrey", A.SassColor$rgb0(105, 105, 105, _null, _null), "dimgray", A.SassColor$rgb0(105, 105, 105, _null, _null), "deepskyblue", A.SassColor$rgb0(0, 191, 255, _null, _null), "deeppink", A.SassColor$rgb0(255, 20, 147, _null, _null), "darkviolet", A.SassColor$rgb0(148, 0, 211, _null, _null), "darkturquoise", A.SassColor$rgb0(0, 206, 209, _null, _null), "darkslategrey", A.SassColor$rgb0(47, 79, 79, _null, _null), "darkslategray", A.SassColor$rgb0(47, 79, 79, _null, _null), "darkslateblue", A.SassColor$rgb0(72, 61, 139, _null, _null), "darkseagreen", A.SassColor$rgb0(143, 188, 143, _null, _null), "darksalmon", A.SassColor$rgb0(233, 150, 122, _null, _null), "darkred", A.SassColor$rgb0(139, 0, 0, _null, _null), "darkorchid", A.SassColor$rgb0(153, 50, 204, _null, _null), "darkorange", A.SassColor$rgb0(255, 140, 0, _null, _null), "darkolivegreen", A.SassColor$rgb0(85, 107, 47, _null, _null), "darkmagenta", A.SassColor$rgb0(139, 0, 139, _null, _null), "darkkhaki", A.SassColor$rgb0(189, 183, 107, _null, _null), "darkgrey", A.SassColor$rgb0(169, 169, 169, _null, _null), "darkgreen", A.SassColor$rgb0(0, 100, 0, _null, _null), "darkgray", A.SassColor$rgb0(169, 169, 169, _null, _null), "darkgoldenrod", A.SassColor$rgb0(184, 134, 11, _null, _null), "darkcyan", A.SassColor$rgb0(0, 139, 139, _null, _null), "darkblue", A.SassColor$rgb0(0, 0, 139, _null, _null), "cyan", A.SassColor$rgb0(0, 255, 255, _null, _null), "crimson", A.SassColor$rgb0(220, 20, 60, _null, _null), "cornsilk", A.SassColor$rgb0(255, 248, 220, _null, _null), "cornflowerblue", A.SassColor$rgb0(100, 149, 237, _null, _null), "coral", A.SassColor$rgb0(255, 127, 80, _null, _null), "chocolate", A.SassColor$rgb0(210, 105, 30, _null, _null), "chartreuse", A.SassColor$rgb0(127, 255, 0, _null, _null), "cadetblue", A.SassColor$rgb0(95, 158, 160, _null, _null), "burlywood", A.SassColor$rgb0(222, 184, 135, _null, _null), "brown", A.SassColor$rgb0(165, 42, 42, _null, _null), "blueviolet", A.SassColor$rgb0(138, 43, 226, _null, _null), "blue", A.SassColor$rgb0(0, 0, 255, _null, _null), "blanchedalmond", A.SassColor$rgb0(255, 235, 205, _null, _null), "black", A.SassColor$rgb0(0, 0, 0, _null, _null), "bisque", A.SassColor$rgb0(255, 228, 196, _null, _null), "beige", A.SassColor$rgb0(245, 245, 220, _null, _null), "azure", A.SassColor$rgb0(240, 255, 255, _null, _null), "aquamarine", A.SassColor$rgb0(127, 255, 212, _null, _null), "aqua", A.SassColor$rgb0(0, 255, 255, _null, _null), "antiquewhite", A.SassColor$rgb0(250, 235, 215, _null, _null), "aliceblue", A.SassColor$rgb0(240, 248, 255, _null, _null)], type$.String, type$.SassColor_2);
99065
+ return A.LinkedHashMap_LinkedHashMap$_literal(["yellowgreen", A.SassColor$rgb0(154, 205, 50, _null), "yellow", A.SassColor$rgb0(255, 255, 0, _null), "whitesmoke", A.SassColor$rgb0(245, 245, 245, _null), "white", A.SassColor$rgb0(255, 255, 255, _null), "wheat", A.SassColor$rgb0(245, 222, 179, _null), "violet", A.SassColor$rgb0(238, 130, 238, _null), "turquoise", A.SassColor$rgb0(64, 224, 208, _null), "transparent", A.SassColor$rgb0(0, 0, 0, 0), "tomato", A.SassColor$rgb0(255, 99, 71, _null), "thistle", A.SassColor$rgb0(216, 191, 216, _null), "teal", A.SassColor$rgb0(0, 128, 128, _null), "tan", A.SassColor$rgb0(210, 180, 140, _null), "steelblue", A.SassColor$rgb0(70, 130, 180, _null), "springgreen", A.SassColor$rgb0(0, 255, 127, _null), "snow", A.SassColor$rgb0(255, 250, 250, _null), "slategrey", A.SassColor$rgb0(112, 128, 144, _null), "slategray", A.SassColor$rgb0(112, 128, 144, _null), "slateblue", A.SassColor$rgb0(106, 90, 205, _null), "skyblue", A.SassColor$rgb0(135, 206, 235, _null), "silver", A.SassColor$rgb0(192, 192, 192, _null), "sienna", A.SassColor$rgb0(160, 82, 45, _null), "seashell", A.SassColor$rgb0(255, 245, 238, _null), "seagreen", A.SassColor$rgb0(46, 139, 87, _null), "sandybrown", A.SassColor$rgb0(244, 164, 96, _null), "salmon", A.SassColor$rgb0(250, 128, 114, _null), "saddlebrown", A.SassColor$rgb0(139, 69, 19, _null), "royalblue", A.SassColor$rgb0(65, 105, 225, _null), "rosybrown", A.SassColor$rgb0(188, 143, 143, _null), "red", A.SassColor$rgb0(255, 0, 0, _null), "rebeccapurple", A.SassColor$rgb0(102, 51, 153, _null), "purple", A.SassColor$rgb0(128, 0, 128, _null), "powderblue", A.SassColor$rgb0(176, 224, 230, _null), "plum", A.SassColor$rgb0(221, 160, 221, _null), "pink", A.SassColor$rgb0(255, 192, 203, _null), "peru", A.SassColor$rgb0(205, 133, 63, _null), "peachpuff", A.SassColor$rgb0(255, 218, 185, _null), "papayawhip", A.SassColor$rgb0(255, 239, 213, _null), "palevioletred", A.SassColor$rgb0(219, 112, 147, _null), "paleturquoise", A.SassColor$rgb0(175, 238, 238, _null), "palegreen", A.SassColor$rgb0(152, 251, 152, _null), "palegoldenrod", A.SassColor$rgb0(238, 232, 170, _null), "orchid", A.SassColor$rgb0(218, 112, 214, _null), "orangered", A.SassColor$rgb0(255, 69, 0, _null), "orange", A.SassColor$rgb0(255, 165, 0, _null), "olivedrab", A.SassColor$rgb0(107, 142, 35, _null), "olive", A.SassColor$rgb0(128, 128, 0, _null), "oldlace", A.SassColor$rgb0(253, 245, 230, _null), "navy", A.SassColor$rgb0(0, 0, 128, _null), "navajowhite", A.SassColor$rgb0(255, 222, 173, _null), "moccasin", A.SassColor$rgb0(255, 228, 181, _null), "mistyrose", A.SassColor$rgb0(255, 228, 225, _null), "mintcream", A.SassColor$rgb0(245, 255, 250, _null), "midnightblue", A.SassColor$rgb0(25, 25, 112, _null), "mediumvioletred", A.SassColor$rgb0(199, 21, 133, _null), "mediumturquoise", A.SassColor$rgb0(72, 209, 204, _null), "mediumspringgreen", A.SassColor$rgb0(0, 250, 154, _null), "mediumslateblue", A.SassColor$rgb0(123, 104, 238, _null), "mediumseagreen", A.SassColor$rgb0(60, 179, 113, _null), "mediumpurple", A.SassColor$rgb0(147, 112, 219, _null), "mediumorchid", A.SassColor$rgb0(186, 85, 211, _null), "mediumblue", A.SassColor$rgb0(0, 0, 205, _null), "mediumaquamarine", A.SassColor$rgb0(102, 205, 170, _null), "maroon", A.SassColor$rgb0(128, 0, 0, _null), "magenta", A.SassColor$rgb0(255, 0, 255, _null), "linen", A.SassColor$rgb0(250, 240, 230, _null), "limegreen", A.SassColor$rgb0(50, 205, 50, _null), "lime", A.SassColor$rgb0(0, 255, 0, _null), "lightyellow", A.SassColor$rgb0(255, 255, 224, _null), "lightsteelblue", A.SassColor$rgb0(176, 196, 222, _null), "lightslategrey", A.SassColor$rgb0(119, 136, 153, _null), "lightslategray", A.SassColor$rgb0(119, 136, 153, _null), "lightskyblue", A.SassColor$rgb0(135, 206, 250, _null), "lightseagreen", A.SassColor$rgb0(32, 178, 170, _null), "lightsalmon", A.SassColor$rgb0(255, 160, 122, _null), "lightpink", A.SassColor$rgb0(255, 182, 193, _null), "lightgrey", A.SassColor$rgb0(211, 211, 211, _null), "lightgreen", A.SassColor$rgb0(144, 238, 144, _null), "lightgray", A.SassColor$rgb0(211, 211, 211, _null), "lightgoldenrodyellow", A.SassColor$rgb0(250, 250, 210, _null), "lightcyan", A.SassColor$rgb0(224, 255, 255, _null), "lightcoral", A.SassColor$rgb0(240, 128, 128, _null), "lightblue", A.SassColor$rgb0(173, 216, 230, _null), "lemonchiffon", A.SassColor$rgb0(255, 250, 205, _null), "lawngreen", A.SassColor$rgb0(124, 252, 0, _null), "lavenderblush", A.SassColor$rgb0(255, 240, 245, _null), "lavender", A.SassColor$rgb0(230, 230, 250, _null), "khaki", A.SassColor$rgb0(240, 230, 140, _null), "ivory", A.SassColor$rgb0(255, 255, 240, _null), "indigo", A.SassColor$rgb0(75, 0, 130, _null), "indianred", A.SassColor$rgb0(205, 92, 92, _null), "hotpink", A.SassColor$rgb0(255, 105, 180, _null), "honeydew", A.SassColor$rgb0(240, 255, 240, _null), "grey", A.SassColor$rgb0(128, 128, 128, _null), "greenyellow", A.SassColor$rgb0(173, 255, 47, _null), "green", A.SassColor$rgb0(0, 128, 0, _null), "gray", A.SassColor$rgb0(128, 128, 128, _null), "goldenrod", A.SassColor$rgb0(218, 165, 32, _null), "gold", A.SassColor$rgb0(255, 215, 0, _null), "ghostwhite", A.SassColor$rgb0(248, 248, 255, _null), "gainsboro", A.SassColor$rgb0(220, 220, 220, _null), "fuchsia", A.SassColor$rgb0(255, 0, 255, _null), "forestgreen", A.SassColor$rgb0(34, 139, 34, _null), "floralwhite", A.SassColor$rgb0(255, 250, 240, _null), "firebrick", A.SassColor$rgb0(178, 34, 34, _null), "dodgerblue", A.SassColor$rgb0(30, 144, 255, _null), "dimgrey", A.SassColor$rgb0(105, 105, 105, _null), "dimgray", A.SassColor$rgb0(105, 105, 105, _null), "deepskyblue", A.SassColor$rgb0(0, 191, 255, _null), "deeppink", A.SassColor$rgb0(255, 20, 147, _null), "darkviolet", A.SassColor$rgb0(148, 0, 211, _null), "darkturquoise", A.SassColor$rgb0(0, 206, 209, _null), "darkslategrey", A.SassColor$rgb0(47, 79, 79, _null), "darkslategray", A.SassColor$rgb0(47, 79, 79, _null), "darkslateblue", A.SassColor$rgb0(72, 61, 139, _null), "darkseagreen", A.SassColor$rgb0(143, 188, 143, _null), "darksalmon", A.SassColor$rgb0(233, 150, 122, _null), "darkred", A.SassColor$rgb0(139, 0, 0, _null), "darkorchid", A.SassColor$rgb0(153, 50, 204, _null), "darkorange", A.SassColor$rgb0(255, 140, 0, _null), "darkolivegreen", A.SassColor$rgb0(85, 107, 47, _null), "darkmagenta", A.SassColor$rgb0(139, 0, 139, _null), "darkkhaki", A.SassColor$rgb0(189, 183, 107, _null), "darkgrey", A.SassColor$rgb0(169, 169, 169, _null), "darkgreen", A.SassColor$rgb0(0, 100, 0, _null), "darkgray", A.SassColor$rgb0(169, 169, 169, _null), "darkgoldenrod", A.SassColor$rgb0(184, 134, 11, _null), "darkcyan", A.SassColor$rgb0(0, 139, 139, _null), "darkblue", A.SassColor$rgb0(0, 0, 139, _null), "cyan", A.SassColor$rgb0(0, 255, 255, _null), "crimson", A.SassColor$rgb0(220, 20, 60, _null), "cornsilk", A.SassColor$rgb0(255, 248, 220, _null), "cornflowerblue", A.SassColor$rgb0(100, 149, 237, _null), "coral", A.SassColor$rgb0(255, 127, 80, _null), "chocolate", A.SassColor$rgb0(210, 105, 30, _null), "chartreuse", A.SassColor$rgb0(127, 255, 0, _null), "cadetblue", A.SassColor$rgb0(95, 158, 160, _null), "burlywood", A.SassColor$rgb0(222, 184, 135, _null), "brown", A.SassColor$rgb0(165, 42, 42, _null), "blueviolet", A.SassColor$rgb0(138, 43, 226, _null), "blue", A.SassColor$rgb0(0, 0, 255, _null), "blanchedalmond", A.SassColor$rgb0(255, 235, 205, _null), "black", A.SassColor$rgb0(0, 0, 0, _null), "bisque", A.SassColor$rgb0(255, 228, 196, _null), "beige", A.SassColor$rgb0(245, 245, 220, _null), "azure", A.SassColor$rgb0(240, 255, 255, _null), "aquamarine", A.SassColor$rgb0(127, 255, 212, _null), "aqua", A.SassColor$rgb0(0, 255, 255, _null), "antiquewhite", A.SassColor$rgb0(250, 235, 215, _null), "aliceblue", A.SassColor$rgb0(240, 248, 255, _null)], type$.String, type$.SassColor_2);
98797
99066
  });
98798
99067
  _lazyFinal($, "namesByColor0", "$get$namesByColor0", () => {
98799
99068
  var t2, t3,