sass 1.43.4 → 1.43.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sass.dart.js +703 -316
package/sass.dart.js CHANGED
@@ -1663,6 +1663,31 @@ self.readline = _cli_pkg_requires.readline;
1663
1663
  } else
1664
1664
  return scanner.readChar$0();
1665
1665
  },
1666
+ throwWithTrace(error, trace) {
1667
+ B.attachTrace(error, trace);
1668
+ throw H.wrapException(error);
1669
+ },
1670
+ attachTrace(error, trace) {
1671
+ var t1;
1672
+ if (trace.toString$0(0).length === 0)
1673
+ return;
1674
+ t1 = $.$get$_traces();
1675
+ P.Expando__checkType(error);
1676
+ t1 = t1._jsWeakMap;
1677
+ if (t1.get(error) == null)
1678
+ t1.set(error, trace);
1679
+ },
1680
+ getTrace(error) {
1681
+ var t1;
1682
+ if (typeof error == "string" || typeof error == "number" || H._isBool(error))
1683
+ t1 = null;
1684
+ else {
1685
+ t1 = $.$get$_traces();
1686
+ P.Expando__checkType(error);
1687
+ t1 = t1._jsWeakMap.get(error);
1688
+ }
1689
+ return t1;
1690
+ },
1666
1691
  indent_closure: function indent_closure(t0) {
1667
1692
  this.indentation = t0;
1668
1693
  },
@@ -1926,6 +1951,13 @@ self.readline = _cli_pkg_requires.readline;
1926
1951
  jsThrow(error) {
1927
1952
  return type$.Never._as($.$get$_jsThrow().call$1(error));
1928
1953
  },
1954
+ attachJsStack(error, trace) {
1955
+ var traceString = trace.toString$0(0),
1956
+ firstRealLine = C.JSString_methods.indexOf$1(traceString, "\n at");
1957
+ if (firstRealLine !== -1)
1958
+ traceString = C.JSString_methods.substring$1(traceString, firstRealLine + 1);
1959
+ error.stack = "Error: " + H.S(J.get$message$x(error)) + "\n" + traceString;
1960
+ },
1929
1961
  jsForEach(object, callback) {
1930
1962
  var t1, t2;
1931
1963
  for (t1 = J.get$iterator$ax(self.Object.keys(object)); t1.moveNext$0();) {
@@ -2304,6 +2336,33 @@ self.readline = _cli_pkg_requires.readline;
2304
2336
  } else
2305
2337
  return scanner.readChar$0();
2306
2338
  },
2339
+ throwWithTrace0(error, trace) {
2340
+ B.attachTrace0(error, trace);
2341
+ throw H.wrapException(error);
2342
+ },
2343
+ attachTrace0(error, trace) {
2344
+ var t1;
2345
+ if (typeof error == "string" || typeof error == "number" || H._isBool(error))
2346
+ return;
2347
+ if (trace.toString$0(0).length === 0)
2348
+ return;
2349
+ t1 = $.$get$_traces0();
2350
+ P.Expando__checkType(error);
2351
+ t1 = t1._jsWeakMap;
2352
+ if (t1.get(error) == null)
2353
+ t1.set(error, trace);
2354
+ },
2355
+ getTrace0(error) {
2356
+ var t1;
2357
+ if (typeof error == "string" || typeof error == "number" || H._isBool(error))
2358
+ t1 = null;
2359
+ else {
2360
+ t1 = $.$get$_traces0();
2361
+ P.Expando__checkType(error);
2362
+ t1 = t1._jsWeakMap.get(error);
2363
+ }
2364
+ return t1;
2365
+ },
2307
2366
  indent_closure0: function indent_closure0(t0) {
2308
2367
  this.indentation = t0;
2309
2368
  },
@@ -2417,7 +2476,7 @@ self.readline = _cli_pkg_requires.readline;
2417
2476
  throw H.wrapException(P.RangeError$("position plus length must not go beyond the end of the string."));
2418
2477
  },
2419
2478
  main() {
2420
- J.set$info$x(self.exports, "dart-sass\t1.43.4\t(Sass Compiler)\t[Dart]\ndart2js\t2.14.4\t(Dart Compiler)\t[Dart]");
2479
+ J.set$info$x(self.exports, "dart-sass\t1.43.5\t(Sass Compiler)\t[Dart]\ndart2js\t2.14.4\t(Dart Compiler)\t[Dart]");
2421
2480
  V.updateSourceSpanPrototype();
2422
2481
  J.set$render$x(self.exports, P.allowInterop(Q.legacy__render$closure()));
2423
2482
  J.set$renderSync$x(self.exports, P.allowInterop(Q.legacy__renderSync$closure()));
@@ -3371,12 +3430,6 @@ self.readline = _cli_pkg_requires.readline;
3371
3430
  SassException$(message, span) {
3372
3431
  return new E.SassException(message, span);
3373
3432
  },
3374
- MultiSpanSassException$(message, span, primaryLabel, secondarySpans) {
3375
- return new E.MultiSpanSassException(primaryLabel, H.ConstantMap_ConstantMap$from(secondarySpans, type$.FileSpan, type$.String), message, span);
3376
- },
3377
- SassRuntimeException$(message, span, trace) {
3378
- return new E.SassRuntimeException(trace, message, span);
3379
- },
3380
3433
  MultiSpanSassRuntimeException$(message, span, primaryLabel, secondarySpans, trace) {
3381
3434
  return new E.MultiSpanSassRuntimeException(trace, primaryLabel, H.ConstantMap_ConstantMap$from(secondarySpans, type$.FileSpan, type$.String), message, span);
3382
3435
  },
@@ -4748,12 +4801,6 @@ self.readline = _cli_pkg_requires.readline;
4748
4801
  SassException$0(message, span) {
4749
4802
  return new E.SassException0(message, span);
4750
4803
  },
4751
- MultiSpanSassException$0(message, span, primaryLabel, secondarySpans) {
4752
- return new E.MultiSpanSassException0(primaryLabel, H.ConstantMap_ConstantMap$from(secondarySpans, type$.FileSpan, type$.String), message, span);
4753
- },
4754
- SassRuntimeException$0(message, span, trace) {
4755
- return new E.SassRuntimeException0(trace, message, span);
4756
- },
4757
4804
  MultiSpanSassRuntimeException$0(message, span, primaryLabel, secondarySpans, trace) {
4758
4805
  return new E.MultiSpanSassRuntimeException0(trace, primaryLabel, H.ConstantMap_ConstantMap$from(secondarySpans, type$.FileSpan, type$.String), message, span);
4759
4806
  },
@@ -5310,9 +5357,6 @@ self.readline = _cli_pkg_requires.readline;
5310
5357
  this.caseSensitive = t0;
5311
5358
  this.char = t1;
5312
5359
  },
5313
- SourceSpanFormatException$(message, span, source) {
5314
- return new G.SourceSpanFormatException(source, message, span);
5315
- },
5316
5360
  SourceSpanException: function SourceSpanException() {
5317
5361
  },
5318
5362
  SourceSpanFormatException: function SourceSpanFormatException(t0, t1, t2) {
@@ -13485,6 +13529,14 @@ self.readline = _cli_pkg_requires.readline;
13485
13529
  Function_apply($function, positionalArguments) {
13486
13530
  return H.Primitives_applyFunction($function, positionalArguments, null);
13487
13531
  },
13532
+ Expando$() {
13533
+ return new P.Expando(new WeakMap());
13534
+ },
13535
+ Expando__checkType(object) {
13536
+ var t1 = H._isBool(object) || typeof object == "number" || typeof object == "string";
13537
+ if (t1)
13538
+ throw H.wrapException(P.ArgumentError$value(object, string$.Expand, null));
13539
+ },
13488
13540
  int_parse(source, radix) {
13489
13541
  var value = H.Primitives_parseInt(source, radix);
13490
13542
  if (value != null)
@@ -15058,6 +15110,9 @@ self.readline = _cli_pkg_requires.readline;
15058
15110
  this.source = t1;
15059
15111
  this.offset = t2;
15060
15112
  },
15113
+ Expando: function Expando(t0) {
15114
+ this._jsWeakMap = t0;
15115
+ },
15061
15116
  Iterable: function Iterable() {
15062
15117
  },
15063
15118
  _GeneratorIterable: function _GeneratorIterable(t0, t1, t2) {
@@ -15877,7 +15932,7 @@ self.readline = _cli_pkg_requires.readline;
15877
15932
  return P._asyncStartSync($async$_renderAsync, $async$completer);
15878
15933
  },
15879
15934
  renderSync(options) {
15880
- var start, result, data, file, error, error0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, exception, _null = null;
15935
+ var start, result, data, file, error, stackTrace, error0, stackTrace0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13, t14, t15, exception, _null = null;
15881
15936
  try {
15882
15937
  start = new P.DateTime(Date.now(), false);
15883
15938
  result = null;
@@ -15941,27 +15996,34 @@ self.readline = _cli_pkg_requires.readline;
15941
15996
  t1 = H.unwrapException(exception);
15942
15997
  if (t1 instanceof E.SassException0) {
15943
15998
  error = t1;
15944
- B.jsThrow(Q._wrapException(error));
15999
+ stackTrace = H.getTraceFromException(exception);
16000
+ B.jsThrow(Q._wrapException(error, stackTrace));
15945
16001
  } else {
15946
16002
  error0 = t1;
15947
- B.jsThrow(Q._newRenderError(J.toString$0$(error0), _null, _null, _null, 3));
16003
+ stackTrace0 = H.getTraceFromException(exception);
16004
+ t1 = J.toString$0$(error0);
16005
+ t2 = B.getTrace0(error0);
16006
+ B.jsThrow(Q._newRenderError(t1, t2 == null ? stackTrace0 : t2, _null, _null, _null, 3));
15948
16007
  }
15949
16008
  }
15950
16009
  },
15951
- _wrapException(exception) {
15952
- var file, t1, t2, t3,
16010
+ _wrapException(exception, stackTrace) {
16011
+ var file, t1, t2, t3, t4,
15953
16012
  url = G.SourceSpanException.prototype.get$span.call(exception, exception).file.url;
15954
16013
  if (url == null)
15955
16014
  file = "stdin";
15956
16015
  else
15957
16016
  file = url.get$scheme() === "file" ? $.$get$context().style.pathFromUri$1(M._parseUri(url)) : url.toString$0(0);
15958
16017
  t1 = C.JSString_methods.replaceFirst$2(exception.toString$0(0), "Error: ", "");
15959
- t2 = G.SourceSpanException.prototype.get$span.call(exception, exception);
15960
- t2 = Y.FileLocation$_(t2.file, t2._file$_start);
15961
- t2 = t2.file.getLine$1(t2.offset);
16018
+ t2 = B.getTrace0(exception);
16019
+ if (t2 == null)
16020
+ t2 = stackTrace;
15962
16021
  t3 = G.SourceSpanException.prototype.get$span.call(exception, exception);
15963
16022
  t3 = Y.FileLocation$_(t3.file, t3._file$_start);
15964
- return Q._newRenderError(t1, t3.file.getColumn$1(t3.offset) + 1, file, t2 + 1, 1);
16023
+ t3 = t3.file.getLine$1(t3.offset);
16024
+ t4 = G.SourceSpanException.prototype.get$span.call(exception, exception);
16025
+ t4 = Y.FileLocation$_(t4.file, t4._file$_start);
16026
+ return Q._newRenderError(t1, t2, t4.file.getColumn$1(t4.offset) + 1, file, t3 + 1, 1);
15965
16027
  },
15966
16028
  _parseFunctions(options, start, asynch) {
15967
16029
  var result,
@@ -16140,7 +16202,7 @@ self.readline = _cli_pkg_requires.readline;
16140
16202
  t1 = true;
16141
16203
  return t1;
16142
16204
  },
16143
- _newRenderError(message, column, file, line, $status) {
16205
+ _newRenderError(message, stackTrace, column, file, line, $status) {
16144
16206
  var error = new self.Error(message);
16145
16207
  error.formatted = "Error: " + message;
16146
16208
  if (line != null)
@@ -16150,6 +16212,7 @@ self.readline = _cli_pkg_requires.readline;
16150
16212
  if (file != null)
16151
16213
  error.file = file;
16152
16214
  error.status = $status;
16215
+ B.attachJsStack(error, stackTrace);
16153
16216
  return error;
16154
16217
  },
16155
16218
  render_closure: function render_closure(t0, t1) {
@@ -19294,7 +19357,7 @@ self.readline = _cli_pkg_requires.readline;
19294
19357
  main$body(args) {
19295
19358
  var $async$goto = 0,
19296
19359
  $async$completer = P._makeAsyncAwaitCompleter(type$.void),
19297
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], printError, graph, source, destination, error, stackTrace, error0, stackTrace0, path, error1, error2, stackTrace1, buffer, options, t1, t2, t3, exception, _box_0, $async$exception, $async$exception1, $async$temp1;
19360
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], printError, graph, source, destination, error, stackTrace, error0, stackTrace0, path, error1, error2, stackTrace1, buffer, options, t1, t2, t3, exception, t4, t5, _box_0, $async$exception, $async$exception1, $async$temp1;
19298
19361
  var $async$main0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
19299
19362
  if ($async$errorCode === 1) {
19300
19363
  $async$currentError = $async$result;
@@ -19395,7 +19458,22 @@ self.readline = _cli_pkg_requires.readline;
19395
19458
  H.throwExpression(P.ArgumentError$('Could not find an option named "color".', null));
19396
19459
  t2 = t2._parsed.containsKey$1("color") ? H._asBool(t2.$index(0, "color")) : J.$eq$(self.process.stdout.isTTY, true);
19397
19460
  t2 = J.toString$1$color$(error, t2);
19398
- t3 = H._asBool(_box_0.options._options.$index(0, "trace")) ? stackTrace : null;
19461
+ if (H._asBool(_box_0.options._options.$index(0, "trace"))) {
19462
+ t3 = error;
19463
+ t4 = typeof t3 == "string";
19464
+ if (t4 || typeof t3 == "number" || H._isBool(t3))
19465
+ t3 = null;
19466
+ else {
19467
+ t5 = $.$get$_traces();
19468
+ t4 = H._isBool(t3) || typeof t3 == "number" || t4;
19469
+ if (t4)
19470
+ H.throwExpression(P.ArgumentError$value(t3, string$.Expand, null));
19471
+ t3 = t5._jsWeakMap.get(t3);
19472
+ }
19473
+ if (t3 == null)
19474
+ t3 = stackTrace;
19475
+ } else
19476
+ t3 = null;
19399
19477
  printError.call$2(t2, t3);
19400
19478
  if (J.get$exitCode$x(self.process) !== 66)
19401
19479
  J.set$exitCode$x(self.process, 65);
@@ -19409,7 +19487,22 @@ self.readline = _cli_pkg_requires.readline;
19409
19487
  stackTrace0 = H.getTraceFromException($async$exception);
19410
19488
  path = error0.path;
19411
19489
  t2 = path == null ? error0.message : "Error reading " + $.$get$context().relative$2$from(path, null) + ": " + error0.message + ".";
19412
- t3 = H._asBool(_box_0.options._options.$index(0, "trace")) ? stackTrace0 : null;
19490
+ if (H._asBool(_box_0.options._options.$index(0, "trace"))) {
19491
+ t3 = error0;
19492
+ t4 = typeof t3 == "string";
19493
+ if (t4 || typeof t3 == "number" || H._isBool(t3))
19494
+ t3 = null;
19495
+ else {
19496
+ t5 = $.$get$_traces();
19497
+ t4 = H._isBool(t3) || typeof t3 == "number" || t4;
19498
+ if (t4)
19499
+ H.throwExpression(P.ArgumentError$value(t3, string$.Expand, null));
19500
+ t3 = t5._jsWeakMap.get(t3);
19501
+ }
19502
+ if (t3 == null)
19503
+ t3 = stackTrace0;
19504
+ } else
19505
+ t3 = null;
19413
19506
  printError.call$2(t2, t3);
19414
19507
  J.set$exitCode$x(self.process, 66);
19415
19508
  if (H._asBool(_box_0.options._options.$index(0, "stop-on-error"))) {
@@ -19464,7 +19557,10 @@ self.readline = _cli_pkg_requires.readline;
19464
19557
  buffer._contents += "\n";
19465
19558
  buffer._contents += H.S(error2) + "\n";
19466
19559
  t1 = buffer._contents;
19467
- printError.call$2(t1.charCodeAt(0) == 0 ? t1 : t1, stackTrace1);
19560
+ t2 = B.getTrace(error2);
19561
+ if (t2 == null)
19562
+ t2 = stackTrace1;
19563
+ printError.call$2(t1.charCodeAt(0) == 0 ? t1 : t1, t2);
19468
19564
  J.set$exitCode$x(self.process, 255);
19469
19565
  }
19470
19566
  // goto after finally
@@ -19498,7 +19594,7 @@ self.readline = _cli_pkg_requires.readline;
19498
19594
  switch ($async$goto) {
19499
19595
  case 0:
19500
19596
  // Function start
19501
- $async$returnValue = "1.43.4 compiled with dart2js 2.14.4";
19597
+ $async$returnValue = "1.43.5 compiled with dart2js 2.14.4";
19502
19598
  // goto return
19503
19599
  $async$goto = 1;
19504
19600
  break;
@@ -23289,7 +23385,20 @@ self.readline = _cli_pkg_requires.readline;
23289
23385
  if (t5 instanceof E.SassException) {
23290
23386
  error = t5;
23291
23387
  stackTrace = H.getTraceFromException(exception);
23292
- Y._logError(error, stackTrace, line, repl, options, logger);
23388
+ t5 = error;
23389
+ t6 = typeof t5 == "string";
23390
+ if (t6 || typeof t5 == "number" || H._isBool(t5))
23391
+ t5 = null;
23392
+ else {
23393
+ t7 = $.$get$_traces();
23394
+ t6 = H._isBool(t5) || typeof t5 == "number" || t6;
23395
+ if (t6)
23396
+ H.throwExpression(P.ArgumentError$value(t5, string$.Expand, null));
23397
+ t5 = t7._jsWeakMap.get(t5);
23398
+ }
23399
+ if (t5 == null)
23400
+ t5 = stackTrace;
23401
+ Y._logError(error, t5, line, repl, options, logger);
23293
23402
  } else
23294
23403
  throw exception;
23295
23404
  }
@@ -30697,6 +30806,11 @@ self.readline = _cli_pkg_requires.readline;
30697
30806
  return this.message;
30698
30807
  }
30699
30808
  };
30809
+ P.Expando.prototype = {
30810
+ toString$0(_) {
30811
+ return "Expando:null";
30812
+ }
30813
+ };
30700
30814
  P.Iterable.prototype = {
30701
30815
  cast$1$0(_, $R) {
30702
30816
  return H.CastIterable_CastIterable(this, H._instanceType(this)._eval$1("Iterable.E"), $R);
@@ -39002,7 +39116,7 @@ self.readline = _cli_pkg_requires.readline;
39002
39116
  compile$body$_Watcher(_, source, destination, ifModified) {
39003
39117
  var $async$goto = 0,
39004
39118
  $async$completer = P._makeAsyncAwaitCompleter(type$.bool),
39005
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, error0, stackTrace0, path, exception, t1, $async$exception;
39119
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, error0, stackTrace0, path, exception, t1, t2, $async$exception;
39006
39120
  var $async$compile$3$ifModified = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
39007
39121
  if ($async$errorCode === 1) {
39008
39122
  $async$currentError = $async$result;
@@ -39036,7 +39150,9 @@ self.readline = _cli_pkg_requires.readline;
39036
39150
  t1 = $async$self._watch$_options;
39037
39151
  if (!t1.get$emitErrorCss())
39038
39152
  $async$self._delete$1(destination);
39039
- $async$self._printError$2(J.toString$1$color$(error, t1.get$color()), stackTrace);
39153
+ t1 = J.toString$1$color$(error, t1.get$color());
39154
+ t2 = B.getTrace(error);
39155
+ $async$self._printError$2(t1, t2 == null ? stackTrace : t2);
39040
39156
  J.set$exitCode$x(self.process, 65);
39041
39157
  $async$returnValue = false;
39042
39158
  // goto return
@@ -39047,7 +39163,8 @@ self.readline = _cli_pkg_requires.readline;
39047
39163
  stackTrace0 = H.getTraceFromException($async$exception);
39048
39164
  path = error0.path;
39049
39165
  t1 = path == null ? error0.message : "Error reading " + $.$get$context().relative$2$from(path, null) + ": " + error0.message + ".";
39050
- $async$self._printError$2(t1, stackTrace0);
39166
+ t2 = B.getTrace(error0);
39167
+ $async$self._printError$2(t1, t2 == null ? stackTrace0 : t2);
39051
39168
  J.set$exitCode$x(self.process, 66);
39052
39169
  $async$returnValue = false;
39053
39170
  // goto return
@@ -39710,7 +39827,7 @@ self.readline = _cli_pkg_requires.readline;
39710
39827
  }, type$.Extension);
39711
39828
  },
39712
39829
  addSelector$3(selector, selectorSpan, mediaContext) {
39713
- var originalSelector, error, t1, t2, t3, _i, exception, modifiableSelector, _this = this;
39830
+ var originalSelector, error, stackTrace, t1, t2, t3, _i, exception, t4, modifiableSelector, _this = this;
39714
39831
  selector = selector;
39715
39832
  originalSelector = selector;
39716
39833
  if (!originalSelector.get$isInvisible())
@@ -39724,7 +39841,12 @@ self.readline = _cli_pkg_requires.readline;
39724
39841
  t1 = H.unwrapException(exception);
39725
39842
  if (t1 instanceof E.SassException) {
39726
39843
  error = t1;
39727
- throw H.wrapException(E.SassException$("From " + J.get$span$z(error).message$1(0, "") + "\n" + error._span_exception$_message, J.get$span$z(error)));
39844
+ stackTrace = H.getTraceFromException(exception);
39845
+ t1 = error;
39846
+ t2 = J.getInterceptor$z(t1);
39847
+ t3 = error;
39848
+ t4 = J.getInterceptor$z(t3);
39849
+ B.throwWithTrace(new E.SassException("From " + G.SourceSpanException.prototype.get$span.call(t2, t1).message$1(0, "") + "\n" + error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t4, t3)), stackTrace);
39728
39850
  } else
39729
39851
  throw exception;
39730
39852
  }
@@ -39896,7 +40018,7 @@ self.readline = _cli_pkg_requires.readline;
39896
40018
  }, type$.SimpleSelector);
39897
40019
  },
39898
40020
  _extendExistingExtensions$2(extensions, newExtensions) {
39899
- var extension, selectors, error, t1, t2, t3, t4, t5, t6, additionalExtensions, _i, t7, exception, t8, t9, containsExtension, first, _i0, complex, t10, t11, t12, t13, t14, withExtender, existingExtension, _i1, component, _i2;
40021
+ var extension, selectors, error, stackTrace, t1, t2, t3, t4, t5, t6, additionalExtensions, _i, t7, exception, t8, t9, containsExtension, first, _i0, complex, t10, t11, t12, t13, t14, withExtender, existingExtension, _i1, component, _i2;
39900
40022
  for (t1 = J.toList$0$ax(extensions), t2 = t1.length, t3 = this._extensionsByExtender, t4 = type$.SimpleSelector, t5 = type$.Map_ComplexSelector_Extension, t6 = this._extensions, additionalExtensions = null, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) {
39901
40023
  extension = t1[_i];
39902
40024
  t7 = t6.$index(0, extension.target);
@@ -39907,10 +40029,13 @@ self.readline = _cli_pkg_requires.readline;
39907
40029
  if (selectors == null)
39908
40030
  continue;
39909
40031
  } catch (exception) {
39910
- t1 = H.unwrapException(exception);
39911
- if (t1 instanceof E.SassException) {
39912
- error = t1;
39913
- throw H.wrapException(E.SassException$("From " + extension.extender.span.message$1(0, "") + "\n" + error._span_exception$_message, J.get$span$z(error)));
40032
+ t8 = H.unwrapException(exception);
40033
+ if (t8 instanceof E.SassException) {
40034
+ error = t8;
40035
+ stackTrace = H.getTraceFromException(exception);
40036
+ t8 = error;
40037
+ t9 = J.getInterceptor$z(t8);
40038
+ B.throwWithTrace(new E.SassException("From " + extension.extender.span.message$1(0, "") + "\n" + error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t9, t8)), stackTrace);
39914
40039
  } else
39915
40040
  throw exception;
39916
40041
  }
@@ -39958,17 +40083,20 @@ self.readline = _cli_pkg_requires.readline;
39958
40083
  return additionalExtensions;
39959
40084
  },
39960
40085
  _extendExistingSelectors$2(selectors, newExtensions) {
39961
- var selector, error, t1, t2, oldValue, exception;
40086
+ var selector, error, stackTrace, t1, t2, oldValue, exception, t3, t4;
39962
40087
  for (t1 = selectors.get$iterator(selectors), t2 = this._mediaContexts; t1.moveNext$0();) {
39963
40088
  selector = t1.get$current(t1);
39964
40089
  oldValue = selector.value;
39965
40090
  try {
39966
40091
  selector.value = this._extendList$4(selector.value, selector.span, newExtensions, t2.$index(0, selector));
39967
40092
  } catch (exception) {
39968
- t1 = H.unwrapException(exception);
39969
- if (t1 instanceof E.SassException) {
39970
- error = t1;
39971
- throw H.wrapException(E.SassException$("From " + selector.span.message$1(0, "") + "\n" + error._span_exception$_message, J.get$span$z(error)));
40093
+ t3 = H.unwrapException(exception);
40094
+ if (t3 instanceof E.SassException) {
40095
+ error = t3;
40096
+ stackTrace = H.getTraceFromException(exception);
40097
+ t3 = error;
40098
+ t4 = J.getInterceptor$z(t3);
40099
+ B.throwWithTrace(new E.SassException("From " + selector.span.message$1(0, "") + "\n" + error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t4, t3)), stackTrace);
39972
40100
  } else
39973
40101
  throw exception;
39974
40102
  }
@@ -44285,11 +44413,18 @@ self.readline = _cli_pkg_requires.readline;
44285
44413
  consumer.call$0();
44286
44414
  return t1.substring$1(0, start);
44287
44415
  },
44288
- error$2(_, message, span) {
44289
- return H.throwExpression(E.StringScannerException$(message, span, this.scanner.string));
44416
+ error$3(_, message, span, trace) {
44417
+ var exception = new E.StringScannerException(this.scanner.string, message, span);
44418
+ if (trace == null)
44419
+ throw H.wrapException(exception);
44420
+ else
44421
+ B.throwWithTrace(exception, trace);
44422
+ },
44423
+ error$2($receiver, message, span) {
44424
+ return this.error$3($receiver, message, span, null);
44290
44425
  },
44291
44426
  withErrorMessage$1$2(message, callback) {
44292
- var error, t1, exception;
44427
+ var error, stackTrace, t1, exception;
44293
44428
  try {
44294
44429
  t1 = callback.call$0();
44295
44430
  return t1;
@@ -44297,7 +44432,9 @@ self.readline = _cli_pkg_requires.readline;
44297
44432
  t1 = H.unwrapException(exception);
44298
44433
  if (type$.SourceSpanFormatException._is(t1)) {
44299
44434
  error = t1;
44300
- throw H.wrapException(G.SourceSpanFormatException$(message, J.get$span$z(error), error.get$source()));
44435
+ stackTrace = H.getTraceFromException(exception);
44436
+ t1 = J.get$span$z(error);
44437
+ B.throwWithTrace(new G.SourceSpanFormatException(error.get$source(), message, t1), stackTrace);
44301
44438
  } else
44302
44439
  throw exception;
44303
44440
  }
@@ -44306,7 +44443,7 @@ self.readline = _cli_pkg_requires.readline;
44306
44443
  return this.withErrorMessage$1$2(message, callback, type$.dynamic);
44307
44444
  },
44308
44445
  wrapSpanFormatException$1$1(callback) {
44309
- var error, span, startPosition, t1, exception;
44446
+ var error, stackTrace, span, startPosition, t1, exception;
44310
44447
  try {
44311
44448
  t1 = callback.call$0();
44312
44449
  return t1;
@@ -44314,6 +44451,7 @@ self.readline = _cli_pkg_requires.readline;
44314
44451
  t1 = H.unwrapException(exception);
44315
44452
  if (type$.SourceSpanFormatException._is(t1)) {
44316
44453
  error = t1;
44454
+ stackTrace = H.getTraceFromException(exception);
44317
44455
  span = J.get$span$z(error);
44318
44456
  if (B.startsWithIgnoreCase(error._span_exception$_message, "expected")) {
44319
44457
  t1 = span;
@@ -44327,7 +44465,7 @@ self.readline = _cli_pkg_requires.readline;
44327
44465
  if (!J.$eq$(startPosition, Y.FileLocation$_(t1.file, t1._file$_start).offset))
44328
44466
  span = span.file.span$2(0, startPosition, startPosition);
44329
44467
  }
44330
- throw H.wrapException(E.SassFormatException$(error._span_exception$_message, span));
44468
+ B.throwWithTrace(new E.SassFormatException(error._span_exception$_message, span), stackTrace);
44331
44469
  } else
44332
44470
  throw exception;
44333
44471
  }
@@ -44403,7 +44541,7 @@ self.readline = _cli_pkg_requires.readline;
44403
44541
  return this.atEndOfStatement$0() && this._peekIndentation$0() > this._currentIndentation;
44404
44542
  },
44405
44543
  importArgument$0() {
44406
- var url, span, innerError, start, next, t2, exception, _this = this,
44544
+ var url, span, innerError, stackTrace, start, next, t2, exception, _this = this,
44407
44545
  t1 = _this.scanner;
44408
44546
  switch (t1.peekChar$0()) {
44409
44547
  case 117:
@@ -44450,7 +44588,8 @@ self.readline = _cli_pkg_requires.readline;
44450
44588
  t1 = H.unwrapException(exception);
44451
44589
  if (type$.FormatException._is(t1)) {
44452
44590
  innerError = t1;
44453
- _this.error$2(0, "Invalid URL: " + J.get$message$x(innerError), span);
44591
+ stackTrace = H.getTraceFromException(exception);
44592
+ _this.error$3(0, "Invalid URL: " + J.get$message$x(innerError), span, stackTrace);
44454
44593
  } else
44455
44594
  throw exception;
44456
44595
  }
@@ -45161,6 +45300,8 @@ self.readline = _cli_pkg_requires.readline;
45161
45300
  t1.expectChar$1(124);
45162
45301
  return new D.QualifiedName(_this.identifier$0(), "*");
45163
45302
  }
45303
+ if (t1.scanChar$1(124))
45304
+ return new D.QualifiedName(_this.identifier$0(), "");
45164
45305
  nameOrNamespace = _this.identifier$0();
45165
45306
  if (t1.peekChar$0() !== 124 || t1.peekChar$1(1) === 61)
45166
45307
  return new D.QualifiedName(nameOrNamespace, null);
@@ -45386,7 +45527,7 @@ self.readline = _cli_pkg_requires.readline;
45386
45527
  return this.variableDeclarationWithoutNamespace$2(namespace, new S._SpanScannerState(t1, t2));
45387
45528
  },
45388
45529
  variableDeclarationWithoutNamespace$2(namespace, start_) {
45389
- var t1, start, $name, t2, value, flagStart, guarded, global, flag, endPosition, t3, t4, t5, declaration, _this = this,
45530
+ var t1, start, $name, t2, value, flagStart, t3, guarded, global, flag, endPosition, t4, t5, t6, declaration, _this = this,
45390
45531
  precedingComment = _this.lastSilentComment;
45391
45532
  _this.lastSilentComment = null;
45392
45533
  if (start_ == null) {
@@ -45406,27 +45547,27 @@ self.readline = _cli_pkg_requires.readline;
45406
45547
  _this.whitespace$0();
45407
45548
  value = _this.expression$0();
45408
45549
  flagStart = new S._SpanScannerState(t2, t2._string_scanner$_position);
45409
- for (guarded = false, global = false; t2.scanChar$1(33);) {
45550
+ for (t3 = t2.string, guarded = false, global = false; t2.scanChar$1(33);) {
45410
45551
  flag = _this.identifier$0();
45411
45552
  if (flag === "default")
45412
45553
  guarded = true;
45413
45554
  else if (flag === "global") {
45414
45555
  if (t1) {
45415
45556
  endPosition = t2._string_scanner$_position;
45416
- t3 = t2._sourceFile;
45417
- t4 = flagStart.position;
45418
- t5 = new Y._FileSpan(t3, t4, endPosition);
45419
- t5._FileSpan$3(t3, t4, endPosition);
45420
- _this.error$2(0, string$.x21globa, t5);
45557
+ t4 = t2._sourceFile;
45558
+ t5 = flagStart.position;
45559
+ t6 = new Y._FileSpan(t4, t5, endPosition);
45560
+ t6._FileSpan$3(t4, t5, endPosition);
45561
+ H.throwExpression(new E.StringScannerException(t3, string$.x21globa, t6));
45421
45562
  }
45422
45563
  global = true;
45423
45564
  } else {
45424
45565
  endPosition = t2._string_scanner$_position;
45425
- t3 = t2._sourceFile;
45426
- t4 = flagStart.position;
45427
- t5 = new Y._FileSpan(t3, t4, endPosition);
45428
- t5._FileSpan$3(t3, t4, endPosition);
45429
- _this.error$2(0, "Invalid flag name.", t5);
45566
+ t4 = t2._sourceFile;
45567
+ t5 = flagStart.position;
45568
+ t6 = new Y._FileSpan(t4, t5, endPosition);
45569
+ t6._FileSpan$3(t4, t5, endPosition);
45570
+ H.throwExpression(new E.StringScannerException(t3, "Invalid flag name.", t6));
45430
45571
  }
45431
45572
  _this.whitespace$0();
45432
45573
  flagStart = new S._SpanScannerState(t2, t2._string_scanner$_position);
@@ -45787,7 +45928,7 @@ self.readline = _cli_pkg_requires.readline;
45787
45928
  }
45788
45929
  },
45789
45930
  _functionChild$0() {
45790
- var state, variableDeclarationError, statement, t2, exception, t3, start, value, _this = this,
45931
+ var state, variableDeclarationError, stackTrace, statement, t2, exception, t3, start, value, _this = this,
45791
45932
  t1 = _this.scanner;
45792
45933
  if (t1.peekChar$0() !== 64) {
45793
45934
  state = new S._SpanScannerState(t1, t1._string_scanner$_position);
@@ -45799,6 +45940,7 @@ self.readline = _cli_pkg_requires.readline;
45799
45940
  t3 = type$.SourceSpanFormatException;
45800
45941
  if (t3._is(t2)) {
45801
45942
  variableDeclarationError = t2;
45943
+ stackTrace = H.getTraceFromException(exception);
45802
45944
  t1.set$state(state);
45803
45945
  statement = null;
45804
45946
  try {
@@ -45809,7 +45951,7 @@ self.readline = _cli_pkg_requires.readline;
45809
45951
  else
45810
45952
  throw exception;
45811
45953
  }
45812
- _this.error$2(0, "@function rules may not contain " + (statement instanceof X.StyleRule ? "style rules" : "declarations") + ".", J.get$span$z(statement));
45954
+ _this.error$3(0, "@function rules may not contain " + (statement instanceof X.StyleRule ? "style rules" : "declarations") + ".", J.get$span$z(statement), stackTrace);
45813
45955
  } else
45814
45956
  throw exception;
45815
45957
  }
@@ -46082,7 +46224,7 @@ self.readline = _cli_pkg_requires.readline;
46082
46224
  return new B.ImportRule(P.List_List$unmodifiable(imports, type$.Import), t1);
46083
46225
  },
46084
46226
  importArgument$0() {
46085
- var url, urlSpan, innerError, queries, t2, t3, t4, exception, _this = this, _null = null,
46227
+ var url, urlSpan, innerError, stackTrace, queries, t2, t3, t4, exception, _this = this, _null = null,
46086
46228
  t1 = _this.scanner,
46087
46229
  start = new S._SpanScannerState(t1, t1._string_scanner$_position),
46088
46230
  next = t1.peekChar$0();
@@ -46115,7 +46257,8 @@ self.readline = _cli_pkg_requires.readline;
46115
46257
  t1 = H.unwrapException(exception);
46116
46258
  if (type$.FormatException._is(t1)) {
46117
46259
  innerError = t1;
46118
- _this.error$2(0, "Invalid URL: " + J.get$message$x(innerError), urlSpan);
46260
+ stackTrace = H.getTraceFromException(exception);
46261
+ _this.error$3(0, "Invalid URL: " + J.get$message$x(innerError), urlSpan, stackTrace);
46119
46262
  } else
46120
46263
  throw exception;
46121
46264
  }
@@ -46256,27 +46399,27 @@ self.readline = _cli_pkg_requires.readline;
46256
46399
  return _this._withChildren$3(_this.get$_statement(), start, new V.StylesheetParser__mixinRule_closure(_this, $name, $arguments, precedingComment));
46257
46400
  },
46258
46401
  mozDocumentRule$2(start, $name) {
46259
- var t5, t6, identifier, contents, argument, trailing, endPosition, t7, t8, start0, end, _this = this, _box_0 = {},
46402
+ var t5, t6, t7, identifier, contents, argument, trailing, endPosition, t8, t9, start0, end, _this = this, _box_0 = {},
46260
46403
  t1 = _this.scanner,
46261
46404
  t2 = t1._string_scanner$_position,
46262
46405
  t3 = new P.StringBuffer(""),
46263
46406
  t4 = H._setArrayType([], type$.JSArray_Object),
46264
46407
  buffer = new Z.InterpolationBuffer(t3, t4);
46265
46408
  _box_0.needsDeprecationWarning = false;
46266
- for (t5 = _this.get$whitespace(); true;) {
46409
+ for (t5 = _this.get$whitespace(), t6 = t1.string; true;) {
46267
46410
  if (t1.peekChar$0() === 35) {
46268
- t6 = _this.singleInterpolation$0();
46411
+ t7 = _this.singleInterpolation$0();
46269
46412
  buffer._flushText$0();
46270
- t4.push(t6);
46413
+ t4.push(t7);
46271
46414
  _box_0.needsDeprecationWarning = true;
46272
46415
  } else {
46273
- t6 = t1._string_scanner$_position;
46416
+ t7 = t1._string_scanner$_position;
46274
46417
  identifier = _this.identifier$0();
46275
46418
  switch (identifier) {
46276
46419
  case "url":
46277
46420
  case "url-prefix":
46278
46421
  case "domain":
46279
- contents = _this._tryUrlContents$2$name(new S._SpanScannerState(t1, t6), identifier);
46422
+ contents = _this._tryUrlContents$2$name(new S._SpanScannerState(t1, t7), identifier);
46280
46423
  if (contents != null)
46281
46424
  buffer.addInterpolation$1(contents);
46282
46425
  else {
@@ -46284,13 +46427,13 @@ self.readline = _cli_pkg_requires.readline;
46284
46427
  _this.whitespace$0();
46285
46428
  argument = _this.interpolatedString$0();
46286
46429
  t1.expectChar$1(41);
46287
- t6 = t3._contents += identifier;
46288
- t3._contents = t6 + H.Primitives_stringFromCharCode(40);
46430
+ t7 = t3._contents += identifier;
46431
+ t3._contents = t7 + H.Primitives_stringFromCharCode(40);
46289
46432
  buffer.addInterpolation$1(argument.asInterpolation$0());
46290
46433
  t3._contents += H.Primitives_stringFromCharCode(41);
46291
46434
  }
46292
- t6 = t3._contents;
46293
- trailing = t6.charCodeAt(0) == 0 ? t6 : t6;
46435
+ t7 = t3._contents;
46436
+ trailing = t7.charCodeAt(0) == 0 ? t7 : t7;
46294
46437
  if (!C.JSString_methods.endsWith$1(trailing, "url-prefix()") && !C.JSString_methods.endsWith$1(trailing, "url-prefix('')") && !C.JSString_methods.endsWith$1(trailing, 'url-prefix("")'))
46295
46438
  _box_0.needsDeprecationWarning = true;
46296
46439
  break;
@@ -46304,10 +46447,10 @@ self.readline = _cli_pkg_requires.readline;
46304
46447
  break;
46305
46448
  default:
46306
46449
  endPosition = t1._string_scanner$_position;
46307
- t7 = t1._sourceFile;
46308
- t8 = new Y._FileSpan(t7, t6, endPosition);
46309
- t8._FileSpan$3(t7, t6, endPosition);
46310
- _this.error$2(0, "Invalid function name.", t8);
46450
+ t8 = t1._sourceFile;
46451
+ t9 = new Y._FileSpan(t8, t7, endPosition);
46452
+ t9._FileSpan$3(t8, t7, endPosition);
46453
+ H.throwExpression(new E.StringScannerException(t6, "Invalid function name.", t9));
46311
46454
  }
46312
46455
  }
46313
46456
  _this.whitespace$0();
@@ -46317,7 +46460,7 @@ self.readline = _cli_pkg_requires.readline;
46317
46460
  start0 = t1._string_scanner$_position;
46318
46461
  t5.call$0();
46319
46462
  end = t1._string_scanner$_position;
46320
- t3._contents += C.JSString_methods.substring$2(t1.string, start0, end);
46463
+ t3._contents += C.JSString_methods.substring$2(t6, start0, end);
46321
46464
  }
46322
46465
  return _this._withChildren$3(_this.get$_statement(), start, new V.StylesheetParser_mozDocumentRule_closure(_box_0, _this, $name, buffer.interpolation$1(t1.spanFrom$1(new S._SpanScannerState(t1, t2)))));
46323
46466
  },
@@ -46366,7 +46509,7 @@ self.readline = _cli_pkg_requires.readline;
46366
46509
  }
46367
46510
  },
46368
46511
  _stylesheet$_configuration$1$allowGuarded(allowGuarded) {
46369
- var variableNames, configuration, t1, t2, $name, expression, t3, guarded, endPosition, t4, t5, span, _this = this;
46512
+ var variableNames, configuration, t1, t2, t3, $name, expression, t4, guarded, endPosition, t5, t6, span, _this = this;
46370
46513
  if (!_this.scanIdentifier$1("with"))
46371
46514
  return null;
46372
46515
  variableNames = P.LinkedHashSet_LinkedHashSet$_empty(type$.String);
@@ -46374,36 +46517,36 @@ self.readline = _cli_pkg_requires.readline;
46374
46517
  _this.whitespace$0();
46375
46518
  t1 = _this.scanner;
46376
46519
  t1.expectChar$1(40);
46377
- for (; true;) {
46520
+ for (t2 = t1.string; true;) {
46378
46521
  _this.whitespace$0();
46379
- t2 = t1._string_scanner$_position;
46522
+ t3 = t1._string_scanner$_position;
46380
46523
  t1.expectChar$1(36);
46381
46524
  $name = _this.identifier$1$normalize(true);
46382
46525
  _this.whitespace$0();
46383
46526
  t1.expectChar$1(58);
46384
46527
  _this.whitespace$0();
46385
46528
  expression = _this._expressionUntilComma$0();
46386
- t3 = t1._string_scanner$_position;
46529
+ t4 = t1._string_scanner$_position;
46387
46530
  if (allowGuarded && t1.scanChar$1(33))
46388
46531
  if (_this.identifier$0() === "default") {
46389
46532
  _this.whitespace$0();
46390
46533
  guarded = true;
46391
46534
  } else {
46392
46535
  endPosition = t1._string_scanner$_position;
46393
- t4 = t1._sourceFile;
46394
- t5 = new Y._FileSpan(t4, t3, endPosition);
46395
- t5._FileSpan$3(t4, t3, endPosition);
46396
- _this.error$2(0, "Invalid flag name.", t5);
46536
+ t5 = t1._sourceFile;
46537
+ t6 = new Y._FileSpan(t5, t4, endPosition);
46538
+ t6._FileSpan$3(t5, t4, endPosition);
46539
+ H.throwExpression(new E.StringScannerException(t2, "Invalid flag name.", t6));
46397
46540
  guarded = false;
46398
46541
  }
46399
46542
  else
46400
46543
  guarded = false;
46401
46544
  endPosition = t1._string_scanner$_position;
46402
- t3 = t1._sourceFile;
46403
- span = new Y._FileSpan(t3, t2, endPosition);
46404
- span._FileSpan$3(t3, t2, endPosition);
46545
+ t4 = t1._sourceFile;
46546
+ span = new Y._FileSpan(t4, t3, endPosition);
46547
+ span._FileSpan$3(t4, t3, endPosition);
46405
46548
  if (variableNames.contains$1(0, $name))
46406
- _this.error$2(0, string$.The_sa, span);
46549
+ H.throwExpression(new E.StringScannerException(t2, string$.The_sa, span));
46407
46550
  variableNames.add$1(0, $name);
46408
46551
  configuration.push(new Z.ConfiguredVariable($name, expression, guarded, span));
46409
46552
  if (!t1.scanChar$1(44))
@@ -46450,19 +46593,20 @@ self.readline = _cli_pkg_requires.readline;
46450
46593
  this.error$2(0, "This at-rule is not allowed here.", this.scanner.spanFrom$1(start));
46451
46594
  },
46452
46595
  _argumentDeclaration$0() {
46453
- var $arguments, named, restArgument, t3, $name, defaultValue, endPosition, t4, t5, _this = this,
46596
+ var $arguments, named, restArgument, t3, t4, $name, defaultValue, endPosition, t5, t6, _this = this,
46454
46597
  t1 = _this.scanner,
46455
46598
  t2 = t1._string_scanner$_position;
46456
46599
  t1.expectChar$1(40);
46457
46600
  _this.whitespace$0();
46458
46601
  $arguments = H._setArrayType([], type$.JSArray_Argument);
46459
46602
  named = P.LinkedHashSet_LinkedHashSet$_empty(type$.String);
46603
+ t3 = t1.string;
46460
46604
  while (true) {
46461
46605
  if (!(t1.peekChar$0() === 36)) {
46462
46606
  restArgument = null;
46463
46607
  break;
46464
46608
  }
46465
- t3 = t1._string_scanner$_position;
46609
+ t4 = t1._string_scanner$_position;
46466
46610
  t1.expectChar$1(36);
46467
46611
  $name = _this.identifier$1$normalize(true);
46468
46612
  _this.whitespace$0();
@@ -46480,12 +46624,12 @@ self.readline = _cli_pkg_requires.readline;
46480
46624
  defaultValue = null;
46481
46625
  }
46482
46626
  endPosition = t1._string_scanner$_position;
46483
- t4 = t1._sourceFile;
46484
- t5 = new Y._FileSpan(t4, t3, endPosition);
46485
- t5._FileSpan$3(t4, t3, endPosition);
46486
- $arguments.push(new Z.Argument($name, defaultValue, t5));
46627
+ t5 = t1._sourceFile;
46628
+ t6 = new Y._FileSpan(t5, t4, endPosition);
46629
+ t6._FileSpan$3(t5, t4, endPosition);
46630
+ $arguments.push(new Z.Argument($name, defaultValue, t6));
46487
46631
  if (!named.add$1(0, $name))
46488
- _this.error$2(0, "Duplicate argument.", C.JSArray_methods.get$last($arguments).span);
46632
+ H.throwExpression(new E.StringScannerException(t3, "Duplicate argument.", C.JSArray_methods.get$last($arguments).span));
46489
46633
  if (!t1.scanChar$1(44)) {
46490
46634
  restArgument = null;
46491
46635
  break;
@@ -46497,7 +46641,7 @@ self.readline = _cli_pkg_requires.readline;
46497
46641
  return new B.ArgumentDeclaration(P.List_List$unmodifiable($arguments, type$.Argument), restArgument, t1);
46498
46642
  },
46499
46643
  _argumentInvocation$1$mixin(mixin) {
46500
- var positional, t3, t4, named, keywordRest, t5, rest, expression, t6, _this = this,
46644
+ var positional, t3, t4, named, keywordRest, t5, t6, rest, expression, t7, _this = this,
46501
46645
  t1 = _this.scanner,
46502
46646
  t2 = t1._string_scanner$_position;
46503
46647
  t1.expectChar$1(40);
@@ -46507,6 +46651,7 @@ self.readline = _cli_pkg_requires.readline;
46507
46651
  t4 = type$.Expression;
46508
46652
  named = P.LinkedHashMap_LinkedHashMap$_empty(t3, t4);
46509
46653
  t5 = !mixin;
46654
+ t6 = t1.string;
46510
46655
  rest = null;
46511
46656
  while (true) {
46512
46657
  if (!_this._lookingAtExpression$0()) {
@@ -46517,10 +46662,10 @@ self.readline = _cli_pkg_requires.readline;
46517
46662
  _this.whitespace$0();
46518
46663
  if (expression instanceof S.VariableExpression && t1.scanChar$1(58)) {
46519
46664
  _this.whitespace$0();
46520
- t6 = expression.name;
46521
- if (named.containsKey$1(t6))
46522
- _this.error$2(0, "Duplicate argument.", expression.span);
46523
- named.$indexSet(0, t6, _this._expressionUntilComma$1$singleEquals(t5));
46665
+ t7 = expression.name;
46666
+ if (named.containsKey$1(t7))
46667
+ H.throwExpression(new E.StringScannerException(t6, "Duplicate argument.", expression.span));
46668
+ named.$indexSet(0, t7, _this._expressionUntilComma$1$singleEquals(t5));
46524
46669
  } else if (t1.scanChar$1(46)) {
46525
46670
  t1.expectChar$1(46);
46526
46671
  t1.expectChar$1(46);
@@ -46531,7 +46676,7 @@ self.readline = _cli_pkg_requires.readline;
46531
46676
  }
46532
46677
  rest = expression;
46533
46678
  } else if (named.get$isNotEmpty(named))
46534
- _this.error$2(0, string$.Positi, expression.get$span(expression));
46679
+ H.throwExpression(new E.StringScannerException(t6, string$.Positi, expression.get$span(expression)));
46535
46680
  else
46536
46681
  positional.push(expression);
46537
46682
  _this.whitespace$0();
@@ -48393,7 +48538,7 @@ self.readline = _cli_pkg_requires.readline;
48393
48538
  return this._withChildren$1$3(child, start, create, type$.dynamic);
48394
48539
  },
48395
48540
  _urlString$0() {
48396
- var innerError, t2, exception,
48541
+ var innerError, stackTrace, t2, exception,
48397
48542
  t1 = this.scanner,
48398
48543
  start = new S._SpanScannerState(t1, t1._string_scanner$_position),
48399
48544
  url = this.string$0();
@@ -48404,7 +48549,8 @@ self.readline = _cli_pkg_requires.readline;
48404
48549
  t2 = H.unwrapException(exception);
48405
48550
  if (type$.FormatException._is(t2)) {
48406
48551
  innerError = t2;
48407
- this.error$2(0, "Invalid URL: " + J.get$message$x(innerError), t1.spanFrom$1(start));
48552
+ stackTrace = H.getTraceFromException(exception);
48553
+ this.error$3(0, "Invalid URL: " + J.get$message$x(innerError), t1.spanFrom$1(start), stackTrace);
48408
48554
  } else
48409
48555
  throw exception;
48410
48556
  }
@@ -49578,7 +49724,7 @@ self.readline = _cli_pkg_requires.readline;
49578
49724
  return H.throwExpression(this._value$_exception$2(this.toString$0(0) + " is not a string.", $name));
49579
49725
  },
49580
49726
  assertSelector$2$allowParent$name(allowParent, $name) {
49581
- var error, t1, exception,
49727
+ var error, stackTrace, t1, exception,
49582
49728
  string = this._selectorString$1($name);
49583
49729
  try {
49584
49730
  t1 = D.SelectorList_SelectorList$parse(string, allowParent, true, null);
@@ -49587,7 +49733,9 @@ self.readline = _cli_pkg_requires.readline;
49587
49733
  t1 = H.unwrapException(exception);
49588
49734
  if (t1 instanceof E.SassFormatException) {
49589
49735
  error = t1;
49590
- throw H.wrapException(this._value$_exception$2(C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", ""), $name));
49736
+ stackTrace = H.getTraceFromException(exception);
49737
+ t1 = C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", "");
49738
+ B.throwWithTrace(new E.SassScriptException($name == null ? t1 : "$" + $name + ": " + t1), stackTrace);
49591
49739
  } else
49592
49740
  throw exception;
49593
49741
  }
@@ -49602,7 +49750,7 @@ self.readline = _cli_pkg_requires.readline;
49602
49750
  return this.assertSelector$2$allowParent$name(allowParent, null);
49603
49751
  },
49604
49752
  assertCompoundSelector$1$name($name) {
49605
- var error, t1, exception,
49753
+ var error, stackTrace, t1, exception,
49606
49754
  allowParent = false,
49607
49755
  string = this._selectorString$1($name);
49608
49756
  try {
@@ -49612,7 +49760,10 @@ self.readline = _cli_pkg_requires.readline;
49612
49760
  t1 = H.unwrapException(exception);
49613
49761
  if (t1 instanceof E.SassFormatException) {
49614
49762
  error = t1;
49615
- throw H.wrapException(this._value$_exception$2(C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", ""), $name));
49763
+ stackTrace = H.getTraceFromException(exception);
49764
+ t1 = C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", "");
49765
+ t1 = "$" + $name + ": " + t1;
49766
+ B.throwWithTrace(new E.SassScriptException(t1), stackTrace);
49616
49767
  } else
49617
49768
  throw exception;
49618
49769
  }
@@ -49794,7 +49945,7 @@ self.readline = _cli_pkg_requires.readline;
49794
49945
  $eq(_, other) {
49795
49946
  if (other == null)
49796
49947
  return false;
49797
- return other instanceof V.CalculationOperation && J.$eq$(this.left, other.left) && J.$eq$(this.right, other.right);
49948
+ return other instanceof V.CalculationOperation && this.operator === other.operator && J.$eq$(this.left, other.left) && J.$eq$(this.right, other.right);
49798
49949
  },
49799
49950
  get$hashCode(_) {
49800
49951
  return (H.Primitives_objectHashCode(this.operator) ^ J.get$hashCode$(this.left) ^ J.get$hashCode$(this.right)) >>> 0;
@@ -52135,7 +52286,7 @@ self.readline = _cli_pkg_requires.readline;
52135
52286
  _loadStylesheet$body$_EvaluateVisitor(url, span, baseUrl, forImport) {
52136
52287
  var $async$goto = 0,
52137
52288
  $async$completer = P._makeAsyncAwaitCompleter(type$._LoadedStylesheet),
52138
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, importCache, tuple, isDependency, stylesheet, result, error, error0, message, t1, t2, t3, t4, exception, message0, $async$exception;
52289
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, importCache, tuple, isDependency, stylesheet, result, error, stackTrace, error0, stackTrace0, message, t1, t2, t3, t4, exception, message0, $async$exception;
52139
52290
  var $async$_async_evaluate$_loadStylesheet$4$baseUrl$forImport = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
52140
52291
  if ($async$errorCode === 1) {
52141
52292
  $async$currentError = $async$result;
@@ -52221,10 +52372,13 @@ self.readline = _cli_pkg_requires.readline;
52221
52372
  t1 = H.unwrapException($async$exception);
52222
52373
  if (t1 instanceof E.SassException) {
52223
52374
  error = t1;
52224
- t1 = $async$self._async_evaluate$_exception$2(error._span_exception$_message, J.get$span$z(error));
52225
- throw H.wrapException(t1);
52375
+ stackTrace = H.getTraceFromException($async$exception);
52376
+ t1 = error;
52377
+ t2 = J.getInterceptor$z(t1);
52378
+ B.throwWithTrace($async$self._async_evaluate$_exception$2(error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t2, t1)), stackTrace);
52226
52379
  } else {
52227
52380
  error0 = t1;
52381
+ stackTrace0 = H.getTraceFromException($async$exception);
52228
52382
  message = null;
52229
52383
  try {
52230
52384
  message = H._asString(J.get$message$x(error0));
@@ -52233,8 +52387,7 @@ self.readline = _cli_pkg_requires.readline;
52233
52387
  message0 = J.toString$0$(error0);
52234
52388
  message = message0;
52235
52389
  }
52236
- t1 = $async$self._async_evaluate$_exception$1(message);
52237
- throw H.wrapException(t1);
52390
+ B.throwWithTrace($async$self._async_evaluate$_exception$1(message), stackTrace0);
52238
52391
  }
52239
52392
  $async$next.push(6);
52240
52393
  // goto finally
@@ -53354,7 +53507,7 @@ self.readline = _cli_pkg_requires.readline;
53354
53507
  visitCalculationExpression$body$_EvaluateVisitor(node) {
53355
53508
  var $async$goto = 0,
53356
53509
  $async$completer = P._makeAsyncAwaitCompleter(type$.Value),
53357
- $async$returnValue, $async$next = [], $async$self = this, $arguments, error, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
53510
+ $async$returnValue, $async$next = [], $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
53358
53511
  var $async$visitCalculationExpression$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
53359
53512
  if ($async$errorCode === 1)
53360
53513
  return P._asyncRethrow($async$result, $async$completer);
@@ -53424,8 +53577,9 @@ self.readline = _cli_pkg_requires.readline;
53424
53577
  t1 = H.unwrapException(exception);
53425
53578
  if (t1 instanceof E.SassScriptException) {
53426
53579
  error = t1;
53580
+ stackTrace = H.getTraceFromException(exception);
53427
53581
  $async$self._async_evaluate$_verifyCompatibleNumbers$2($arguments, t2);
53428
- throw H.wrapException($async$self._async_evaluate$_exception$2(error.message, node.span));
53582
+ B.throwWithTrace($async$self._async_evaluate$_exception$2(error.message, node.span), stackTrace);
53429
53583
  } else
53430
53584
  throw exception;
53431
53585
  }
@@ -53949,7 +54103,7 @@ self.readline = _cli_pkg_requires.readline;
53949
54103
  _runBuiltInCallable$body$_EvaluateVisitor($arguments, callable, nodeWithSpan) {
53950
54104
  var $async$goto = 0,
53951
54105
  $async$completer = P._makeAsyncAwaitCompleter(type$.Value),
53952
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, callback, result, error, error0, error1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, message0, evaluated, oldCallableNode, $async$exception;
54106
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, callback, result, error, stackTrace, error0, stackTrace0, error1, stackTrace1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, t4, t5, t6, message0, evaluated, oldCallableNode, $async$exception;
53953
54107
  var $async$_async_evaluate$_runBuiltInCallable$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
53954
54108
  if ($async$errorCode === 1) {
53955
54109
  $async$currentError = $async$result;
@@ -54035,12 +54189,27 @@ self.readline = _cli_pkg_requires.readline;
54035
54189
  throw $async$exception;
54036
54190
  else if (t1 instanceof E.MultiSpanSassScriptException) {
54037
54191
  error = t1;
54038
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, $async$self._async_evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
54192
+ stackTrace = H.getTraceFromException($async$exception);
54193
+ t1 = error.message;
54194
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
54195
+ t3 = error.primaryLabel;
54196
+ t4 = error.secondarySpans;
54197
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException($async$self._async_evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
54039
54198
  } else if (t1 instanceof E.MultiSpanSassException) {
54040
54199
  error0 = t1;
54041
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error0._span_exception$_message, J.get$span$z(error0), error0.primaryLabel, error0.secondarySpans, $async$self._async_evaluate$_stackTrace$1(J.get$span$z(error0))));
54200
+ stackTrace0 = H.getTraceFromException($async$exception);
54201
+ t1 = error0._span_exception$_message;
54202
+ t2 = error0;
54203
+ t3 = J.getInterceptor$z(t2);
54204
+ t2 = G.SourceSpanException.prototype.get$span.call(t3, t2);
54205
+ t3 = error0.primaryLabel;
54206
+ t4 = error0.secondarySpans;
54207
+ t5 = error0;
54208
+ t6 = J.getInterceptor$z(t5);
54209
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException($async$self._async_evaluate$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t6, t5)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace0);
54042
54210
  } else {
54043
54211
  error1 = t1;
54212
+ stackTrace1 = H.getTraceFromException($async$exception);
54044
54213
  message = null;
54045
54214
  try {
54046
54215
  message = H._asString(J.get$message$x(error1));
@@ -54049,7 +54218,7 @@ self.readline = _cli_pkg_requires.readline;
54049
54218
  message0 = J.toString$0$(error1);
54050
54219
  message = message0;
54051
54220
  }
54052
- throw H.wrapException($async$self._async_evaluate$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)));
54221
+ B.throwWithTrace($async$self._async_evaluate$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace1);
54053
54222
  }
54054
54223
  // goto after finally
54055
54224
  $async$goto = 13;
@@ -55063,7 +55232,7 @@ self.readline = _cli_pkg_requires.readline;
55063
55232
  return new E.MultiSpanSassRuntimeException(this._async_evaluate$_stackTrace$0(), primaryLabel, H.ConstantMap_ConstantMap$from(secondaryLabels, type$.FileSpan, type$.String), message, t1);
55064
55233
  },
55065
55234
  _async_evaluate$_adjustParseError$1$2(nodeWithSpan, callback) {
55066
- var error, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
55235
+ var error, stackTrace, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
55067
55236
  try {
55068
55237
  t1 = callback.call$0();
55069
55238
  return t1;
@@ -55071,6 +55240,7 @@ self.readline = _cli_pkg_requires.readline;
55071
55240
  t1 = H.unwrapException(exception);
55072
55241
  if (t1 instanceof E.SassFormatException) {
55073
55242
  error = t1;
55243
+ stackTrace = H.getTraceFromException(exception);
55074
55244
  t1 = error;
55075
55245
  t2 = J.getInterceptor$z(t1);
55076
55246
  errorText = P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(G.SourceSpanException.prototype.get$span.call(t2, t1).file._decodedChars, 0, _null), 0, _null);
@@ -55091,7 +55261,7 @@ self.readline = _cli_pkg_requires.readline;
55091
55261
  t6 = J.getInterceptor$z(t5);
55092
55262
  t5 = G.SourceSpanException.prototype.get$span.call(t6, t5);
55093
55263
  syntheticSpan = t2.span$2(0, t1.offset + t3.offset, t4.offset + Y.FileLocation$_(t5.file, t5._end).offset);
55094
- throw H.wrapException(this._async_evaluate$_exception$2(error._span_exception$_message, syntheticSpan));
55264
+ B.throwWithTrace(this._async_evaluate$_exception$2(error._span_exception$_message, syntheticSpan), stackTrace);
55095
55265
  } else
55096
55266
  throw exception;
55097
55267
  }
@@ -55100,7 +55270,7 @@ self.readline = _cli_pkg_requires.readline;
55100
55270
  return this._async_evaluate$_adjustParseError$1$2(nodeWithSpan, callback, type$.dynamic);
55101
55271
  },
55102
55272
  _async_evaluate$_addExceptionSpan$1$2(nodeWithSpan, callback) {
55103
- var error, error0, t1, exception;
55273
+ var error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4;
55104
55274
  try {
55105
55275
  t1 = callback.call$0();
55106
55276
  return t1;
@@ -55108,10 +55278,16 @@ self.readline = _cli_pkg_requires.readline;
55108
55278
  t1 = H.unwrapException(exception);
55109
55279
  if (t1 instanceof E.MultiSpanSassScriptException) {
55110
55280
  error = t1;
55111
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, this._async_evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
55281
+ stackTrace = H.getTraceFromException(exception);
55282
+ t1 = error.message;
55283
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
55284
+ t3 = error.primaryLabel;
55285
+ t4 = error.secondarySpans;
55286
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException(this._async_evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
55112
55287
  } else if (t1 instanceof E.SassScriptException) {
55113
55288
  error0 = t1;
55114
- throw H.wrapException(this._async_evaluate$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)));
55289
+ stackTrace0 = H.getTraceFromException(exception);
55290
+ B.throwWithTrace(this._async_evaluate$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace0);
55115
55291
  } else
55116
55292
  throw exception;
55117
55293
  }
@@ -55125,7 +55301,7 @@ self.readline = _cli_pkg_requires.readline;
55125
55301
  _addExceptionSpanAsync$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
55126
55302
  var $async$goto = 0,
55127
55303
  $async$completer = P._makeAsyncAwaitCompleter($async$type),
55128
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, error0, t1, exception, $async$exception;
55304
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
55129
55305
  var $async$_addExceptionSpanAsync$1$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
55130
55306
  if ($async$errorCode === 1) {
55131
55307
  $async$currentError = $async$result;
@@ -55156,10 +55332,16 @@ self.readline = _cli_pkg_requires.readline;
55156
55332
  t1 = H.unwrapException($async$exception);
55157
55333
  if (t1 instanceof E.MultiSpanSassScriptException) {
55158
55334
  error = t1;
55159
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, $async$self._async_evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
55335
+ stackTrace = H.getTraceFromException($async$exception);
55336
+ t1 = error.message;
55337
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
55338
+ t3 = error.primaryLabel;
55339
+ t4 = error.secondarySpans;
55340
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException($async$self._async_evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
55160
55341
  } else if (t1 instanceof E.SassScriptException) {
55161
55342
  error0 = t1;
55162
- throw H.wrapException($async$self._async_evaluate$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)));
55343
+ stackTrace0 = H.getTraceFromException($async$exception);
55344
+ B.throwWithTrace($async$self._async_evaluate$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace0);
55163
55345
  } else
55164
55346
  throw $async$exception;
55165
55347
  // goto after finally
@@ -55188,7 +55370,7 @@ self.readline = _cli_pkg_requires.readline;
55188
55370
  _addErrorSpan$body$_EvaluateVisitor(nodeWithSpan, callback, $T, $async$type) {
55189
55371
  var $async$goto = 0,
55190
55372
  $async$completer = P._makeAsyncAwaitCompleter($async$type),
55191
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, t1, exception, $async$exception;
55373
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
55192
55374
  var $async$_async_evaluate$_addErrorSpan$1$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
55193
55375
  if ($async$errorCode === 1) {
55194
55376
  $async$currentError = $async$result;
@@ -55219,10 +55401,13 @@ self.readline = _cli_pkg_requires.readline;
55219
55401
  t1 = H.unwrapException($async$exception);
55220
55402
  if (type$.SassRuntimeException._is(t1)) {
55221
55403
  error = t1;
55404
+ stackTrace = H.getTraceFromException($async$exception);
55222
55405
  t1 = J.get$span$z(error);
55223
55406
  if (!C.JSString_methods.startsWith$1(P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(t1.file._decodedChars, t1._file$_start, t1._end), 0, null), "@error"))
55224
55407
  throw $async$exception;
55225
- throw H.wrapException(E.SassRuntimeException$(error._span_exception$_message, nodeWithSpan.get$span(nodeWithSpan), $async$self._async_evaluate$_stackTrace$0()));
55408
+ t1 = error._span_exception$_message;
55409
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
55410
+ B.throwWithTrace(new E.SassRuntimeException($async$self._async_evaluate$_stackTrace$0(), t1, t2), stackTrace);
55226
55411
  } else
55227
55412
  throw $async$exception;
55228
55413
  // goto after finally
@@ -55556,7 +55741,7 @@ self.readline = _cli_pkg_requires.readline;
55556
55741
  call$0() {
55557
55742
  var $async$goto = 0,
55558
55743
  $async$completer = P._makeAsyncAwaitCompleter(type$.Null),
55559
- $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, oldInDependency, module, error, error0, error1, error2, message, exception, t1, t2, result, stylesheet, canonicalUrl, $async$exception;
55744
+ $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, oldInDependency, module, error, stackTrace, error0, stackTrace0, error1, stackTrace1, error2, stackTrace2, message, exception, t3, t4, t5, t6, t7, t1, t2, result, stylesheet, canonicalUrl, $async$exception;
55560
55745
  var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
55561
55746
  if ($async$errorCode === 1) {
55562
55747
  $async$currentError = $async$result;
@@ -55626,16 +55811,30 @@ self.readline = _cli_pkg_requires.readline;
55626
55811
  throw $async$exception;
55627
55812
  else if (t2 instanceof E.MultiSpanSassException) {
55628
55813
  error = t2;
55629
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error._span_exception$_message, J.get$span$z(error), error.primaryLabel, error.secondarySpans, t1._async_evaluate$_stackTrace$1(J.get$span$z(error))));
55814
+ stackTrace = H.getTraceFromException($async$exception);
55815
+ t2 = error._span_exception$_message;
55816
+ t3 = error;
55817
+ t4 = J.getInterceptor$z(t3);
55818
+ t3 = G.SourceSpanException.prototype.get$span.call(t4, t3);
55819
+ t4 = error.primaryLabel;
55820
+ t5 = error.secondarySpans;
55821
+ t6 = error;
55822
+ t7 = J.getInterceptor$z(t6);
55823
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException(t1._async_evaluate$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t7, t6)), t4, H.ConstantMap_ConstantMap$from(t5, type$.FileSpan, type$.String), t2, t3), stackTrace);
55630
55824
  } else if (t2 instanceof E.SassException) {
55631
55825
  error0 = t2;
55632
- throw H.wrapException(t1._async_evaluate$_exception$2(error0._span_exception$_message, J.get$span$z(error0)));
55826
+ stackTrace0 = H.getTraceFromException($async$exception);
55827
+ t2 = error0;
55828
+ t3 = J.getInterceptor$z(t2);
55829
+ B.throwWithTrace(t1._async_evaluate$_exception$2(error0._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t3, t2)), stackTrace0);
55633
55830
  } else if (t2 instanceof E.MultiSpanSassScriptException) {
55634
55831
  error1 = t2;
55635
- throw H.wrapException(t1._async_evaluate$_multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans));
55832
+ stackTrace1 = H.getTraceFromException($async$exception);
55833
+ B.throwWithTrace(t1._async_evaluate$_multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans), stackTrace1);
55636
55834
  } else if (t2 instanceof E.SassScriptException) {
55637
55835
  error2 = t2;
55638
- throw H.wrapException(t1._async_evaluate$_exception$1(error2.message));
55836
+ stackTrace2 = H.getTraceFromException($async$exception);
55837
+ B.throwWithTrace(t1._async_evaluate$_exception$1(error2.message), stackTrace2);
55639
55838
  } else
55640
55839
  throw $async$exception;
55641
55840
  // goto after finally
@@ -59128,7 +59327,7 @@ self.readline = _cli_pkg_requires.readline;
59128
59327
  return this._withStackFrame$3("@import", $import, new R._EvaluateVisitor__visitDynamicImport_closure(this, $import));
59129
59328
  },
59130
59329
  _loadStylesheet$4$baseUrl$forImport(url, span, baseUrl, forImport) {
59131
- var importCache, tuple, isDependency, stylesheet, result, error, error0, message, t1, t2, t3, t4, exception, message0, _this = this;
59330
+ var importCache, tuple, isDependency, stylesheet, result, error, stackTrace, error0, stackTrace0, message, t1, t2, t3, t4, exception, message0, _this = this;
59132
59331
  baseUrl = baseUrl;
59133
59332
  try {
59134
59333
  _this._importSpan = span;
@@ -59166,10 +59365,13 @@ self.readline = _cli_pkg_requires.readline;
59166
59365
  t1 = H.unwrapException(exception);
59167
59366
  if (t1 instanceof E.SassException) {
59168
59367
  error = t1;
59169
- t1 = _this._evaluate$_exception$2(error._span_exception$_message, J.get$span$z(error));
59170
- throw H.wrapException(t1);
59368
+ stackTrace = H.getTraceFromException(exception);
59369
+ t1 = error;
59370
+ t2 = J.getInterceptor$z(t1);
59371
+ B.throwWithTrace(_this._evaluate$_exception$2(error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t2, t1)), stackTrace);
59171
59372
  } else {
59172
59373
  error0 = t1;
59374
+ stackTrace0 = H.getTraceFromException(exception);
59173
59375
  message = null;
59174
59376
  try {
59175
59377
  message = H._asString(J.get$message$x(error0));
@@ -59178,8 +59380,7 @@ self.readline = _cli_pkg_requires.readline;
59178
59380
  message0 = J.toString$0$(error0);
59179
59381
  message = message0;
59180
59382
  }
59181
- t1 = _this._evaluate$_exception$1(message);
59182
- throw H.wrapException(t1);
59383
+ B.throwWithTrace(_this._evaluate$_exception$1(message), stackTrace0);
59183
59384
  }
59184
59385
  } finally {
59185
59386
  _this._importSpan = null;
@@ -59489,7 +59690,7 @@ self.readline = _cli_pkg_requires.readline;
59489
59690
  return node.expression.accept$1(this);
59490
59691
  },
59491
59692
  visitCalculationExpression$1(node) {
59492
- var $arguments, error, t2, t3, t4, t5, t6, _i, argument, exception,
59693
+ var $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception,
59493
59694
  t1 = H._setArrayType([], type$.JSArray_Object);
59494
59695
  for (t2 = node.$arguments, t3 = t2.length, t4 = node.name, t5 = t4 !== "min", t6 = t4 === "max", _i = 0; _i < t3; ++_i) {
59495
59696
  argument = t2[_i];
@@ -59520,8 +59721,9 @@ self.readline = _cli_pkg_requires.readline;
59520
59721
  t1 = H.unwrapException(exception);
59521
59722
  if (t1 instanceof E.SassScriptException) {
59522
59723
  error = t1;
59724
+ stackTrace = H.getTraceFromException(exception);
59523
59725
  this._verifyCompatibleNumbers$2($arguments, t2);
59524
- throw H.wrapException(this._evaluate$_exception$2(error.message, node.span));
59726
+ B.throwWithTrace(this._evaluate$_exception$2(error.message, node.span), stackTrace);
59525
59727
  } else
59526
59728
  throw exception;
59527
59729
  }
@@ -59687,7 +59889,7 @@ self.readline = _cli_pkg_requires.readline;
59687
59889
  throw H.wrapException(P.ArgumentError$("Unknown callable type " + J.get$runtimeType$u(callable).toString$0(0) + ".", null));
59688
59890
  },
59689
59891
  _runBuiltInCallable$3($arguments, callable, nodeWithSpan) {
59690
- var callback, result, error, error0, error1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, message0, _this = this,
59892
+ var callback, result, error, stackTrace, error0, stackTrace0, error1, stackTrace1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, t4, t5, t6, message0, _this = this,
59691
59893
  evaluated = _this._evaluateArguments$1($arguments),
59692
59894
  oldCallableNode = _this._callableNode;
59693
59895
  _this._callableNode = nodeWithSpan;
@@ -59727,12 +59929,27 @@ self.readline = _cli_pkg_requires.readline;
59727
59929
  throw exception;
59728
59930
  else if (t1 instanceof E.MultiSpanSassScriptException) {
59729
59931
  error = t1;
59730
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, _this._evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
59932
+ stackTrace = H.getTraceFromException(exception);
59933
+ t1 = error.message;
59934
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
59935
+ t3 = error.primaryLabel;
59936
+ t4 = error.secondarySpans;
59937
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException(_this._evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
59731
59938
  } else if (t1 instanceof E.MultiSpanSassException) {
59732
59939
  error0 = t1;
59733
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error0._span_exception$_message, J.get$span$z(error0), error0.primaryLabel, error0.secondarySpans, _this._evaluate$_stackTrace$1(J.get$span$z(error0))));
59940
+ stackTrace0 = H.getTraceFromException(exception);
59941
+ t1 = error0._span_exception$_message;
59942
+ t2 = error0;
59943
+ t3 = J.getInterceptor$z(t2);
59944
+ t2 = G.SourceSpanException.prototype.get$span.call(t3, t2);
59945
+ t3 = error0.primaryLabel;
59946
+ t4 = error0.secondarySpans;
59947
+ t5 = error0;
59948
+ t6 = J.getInterceptor$z(t5);
59949
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException(_this._evaluate$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t6, t5)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace0);
59734
59950
  } else {
59735
59951
  error1 = t1;
59952
+ stackTrace1 = H.getTraceFromException(exception);
59736
59953
  message = null;
59737
59954
  try {
59738
59955
  message = H._asString(J.get$message$x(error1));
@@ -59741,7 +59958,7 @@ self.readline = _cli_pkg_requires.readline;
59741
59958
  message0 = J.toString$0$(error1);
59742
59959
  message = message0;
59743
59960
  }
59744
- throw H.wrapException(_this._evaluate$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)));
59961
+ B.throwWithTrace(_this._evaluate$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace1);
59745
59962
  }
59746
59963
  }
59747
59964
  _this._callableNode = oldCallableNode;
@@ -60140,7 +60357,7 @@ self.readline = _cli_pkg_requires.readline;
60140
60357
  return new E.MultiSpanSassRuntimeException(this._evaluate$_stackTrace$0(), primaryLabel, H.ConstantMap_ConstantMap$from(secondaryLabels, type$.FileSpan, type$.String), message, t1);
60141
60358
  },
60142
60359
  _adjustParseError$1$2(nodeWithSpan, callback) {
60143
- var error, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
60360
+ var error, stackTrace, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
60144
60361
  try {
60145
60362
  t1 = callback.call$0();
60146
60363
  return t1;
@@ -60148,6 +60365,7 @@ self.readline = _cli_pkg_requires.readline;
60148
60365
  t1 = H.unwrapException(exception);
60149
60366
  if (t1 instanceof E.SassFormatException) {
60150
60367
  error = t1;
60368
+ stackTrace = H.getTraceFromException(exception);
60151
60369
  t1 = error;
60152
60370
  t2 = J.getInterceptor$z(t1);
60153
60371
  errorText = P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(G.SourceSpanException.prototype.get$span.call(t2, t1).file._decodedChars, 0, _null), 0, _null);
@@ -60168,7 +60386,7 @@ self.readline = _cli_pkg_requires.readline;
60168
60386
  t6 = J.getInterceptor$z(t5);
60169
60387
  t5 = G.SourceSpanException.prototype.get$span.call(t6, t5);
60170
60388
  syntheticSpan = t2.span$2(0, t1.offset + t3.offset, t4.offset + Y.FileLocation$_(t5.file, t5._end).offset);
60171
- throw H.wrapException(this._evaluate$_exception$2(error._span_exception$_message, syntheticSpan));
60389
+ B.throwWithTrace(this._evaluate$_exception$2(error._span_exception$_message, syntheticSpan), stackTrace);
60172
60390
  } else
60173
60391
  throw exception;
60174
60392
  }
@@ -60177,7 +60395,7 @@ self.readline = _cli_pkg_requires.readline;
60177
60395
  return this._adjustParseError$1$2(nodeWithSpan, callback, type$.dynamic);
60178
60396
  },
60179
60397
  _addExceptionSpan$1$2(nodeWithSpan, callback) {
60180
- var error, error0, t1, exception;
60398
+ var error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4;
60181
60399
  try {
60182
60400
  t1 = callback.call$0();
60183
60401
  return t1;
@@ -60185,10 +60403,16 @@ self.readline = _cli_pkg_requires.readline;
60185
60403
  t1 = H.unwrapException(exception);
60186
60404
  if (t1 instanceof E.MultiSpanSassScriptException) {
60187
60405
  error = t1;
60188
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, this._evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
60406
+ stackTrace = H.getTraceFromException(exception);
60407
+ t1 = error.message;
60408
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
60409
+ t3 = error.primaryLabel;
60410
+ t4 = error.secondarySpans;
60411
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException(this._evaluate$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
60189
60412
  } else if (t1 instanceof E.SassScriptException) {
60190
60413
  error0 = t1;
60191
- throw H.wrapException(this._evaluate$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)));
60414
+ stackTrace0 = H.getTraceFromException(exception);
60415
+ B.throwWithTrace(this._evaluate$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace0);
60192
60416
  } else
60193
60417
  throw exception;
60194
60418
  }
@@ -60197,7 +60421,7 @@ self.readline = _cli_pkg_requires.readline;
60197
60421
  return this._addExceptionSpan$1$2(nodeWithSpan, callback, type$.dynamic);
60198
60422
  },
60199
60423
  _addErrorSpan$1$2(nodeWithSpan, callback) {
60200
- var error, t1, exception;
60424
+ var error, stackTrace, t1, exception, t2;
60201
60425
  try {
60202
60426
  t1 = callback.call$0();
60203
60427
  return t1;
@@ -60205,10 +60429,13 @@ self.readline = _cli_pkg_requires.readline;
60205
60429
  t1 = H.unwrapException(exception);
60206
60430
  if (type$.SassRuntimeException._is(t1)) {
60207
60431
  error = t1;
60432
+ stackTrace = H.getTraceFromException(exception);
60208
60433
  t1 = J.get$span$z(error);
60209
60434
  if (!C.JSString_methods.startsWith$1(P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(t1.file._decodedChars, t1._file$_start, t1._end), 0, null), "@error"))
60210
60435
  throw exception;
60211
- throw H.wrapException(E.SassRuntimeException$(error._span_exception$_message, nodeWithSpan.get$span(nodeWithSpan), this._evaluate$_stackTrace$0()));
60436
+ t1 = error._span_exception$_message;
60437
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
60438
+ B.throwWithTrace(new E.SassRuntimeException(this._evaluate$_stackTrace$0(), t1, t2), stackTrace);
60212
60439
  } else
60213
60440
  throw exception;
60214
60441
  }
@@ -60476,7 +60703,7 @@ self.readline = _cli_pkg_requires.readline;
60476
60703
  };
60477
60704
  R._EvaluateVisitor__loadModule_closure0.prototype = {
60478
60705
  call$0() {
60479
- var oldInDependency, module, error, error0, error1, error2, message, exception, _this = this,
60706
+ var oldInDependency, module, error, stackTrace, error0, stackTrace0, error1, stackTrace1, error2, stackTrace2, message, exception, t3, t4, t5, t6, t7, _this = this,
60480
60707
  t1 = _this.$this,
60481
60708
  t2 = _this.nodeWithSpan,
60482
60709
  result = t1._loadStylesheet$3$baseUrl(_this.url.toString$0(0), t2.get$span(t2), _this.baseUrl),
@@ -60506,16 +60733,30 @@ self.readline = _cli_pkg_requires.readline;
60506
60733
  throw exception;
60507
60734
  else if (t2 instanceof E.MultiSpanSassException) {
60508
60735
  error = t2;
60509
- throw H.wrapException(E.MultiSpanSassRuntimeException$(error._span_exception$_message, J.get$span$z(error), error.primaryLabel, error.secondarySpans, t1._evaluate$_stackTrace$1(J.get$span$z(error))));
60736
+ stackTrace = H.getTraceFromException(exception);
60737
+ t2 = error._span_exception$_message;
60738
+ t3 = error;
60739
+ t4 = J.getInterceptor$z(t3);
60740
+ t3 = G.SourceSpanException.prototype.get$span.call(t4, t3);
60741
+ t4 = error.primaryLabel;
60742
+ t5 = error.secondarySpans;
60743
+ t6 = error;
60744
+ t7 = J.getInterceptor$z(t6);
60745
+ B.throwWithTrace(new E.MultiSpanSassRuntimeException(t1._evaluate$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t7, t6)), t4, H.ConstantMap_ConstantMap$from(t5, type$.FileSpan, type$.String), t2, t3), stackTrace);
60510
60746
  } else if (t2 instanceof E.SassException) {
60511
60747
  error0 = t2;
60512
- throw H.wrapException(t1._evaluate$_exception$2(error0._span_exception$_message, J.get$span$z(error0)));
60748
+ stackTrace0 = H.getTraceFromException(exception);
60749
+ t2 = error0;
60750
+ t3 = J.getInterceptor$z(t2);
60751
+ B.throwWithTrace(t1._evaluate$_exception$2(error0._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t3, t2)), stackTrace0);
60513
60752
  } else if (t2 instanceof E.MultiSpanSassScriptException) {
60514
60753
  error1 = t2;
60515
- throw H.wrapException(t1._multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans));
60754
+ stackTrace1 = H.getTraceFromException(exception);
60755
+ B.throwWithTrace(t1._multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans), stackTrace1);
60516
60756
  } else if (t2 instanceof E.SassScriptException) {
60517
60757
  error2 = t2;
60518
- throw H.wrapException(t1._evaluate$_exception$1(error2.message));
60758
+ stackTrace2 = H.getTraceFromException(exception);
60759
+ B.throwWithTrace(t1._evaluate$_exception$1(error2.message), stackTrace2);
60519
60760
  } else
60520
60761
  throw exception;
60521
60762
  }
@@ -62070,7 +62311,7 @@ self.readline = _cli_pkg_requires.readline;
62070
62311
  _this._serialize$_visitChildren$1(node.children);
62071
62312
  },
62072
62313
  visitCssDeclaration$1(node) {
62073
- var error, error0, t1, t2, exception, _this = this;
62314
+ var error, stackTrace, error0, stackTrace0, t1, t2, exception, _this = this;
62074
62315
  _this._writeIndentation$0();
62075
62316
  t1 = node.name;
62076
62317
  _this._serialize$_write$1(t1);
@@ -62088,12 +62329,16 @@ self.readline = _cli_pkg_requires.readline;
62088
62329
  t1 = H.unwrapException(exception);
62089
62330
  if (t1 instanceof E.MultiSpanSassScriptException) {
62090
62331
  error = t1;
62091
- t1 = node.value;
62092
- throw H.wrapException(E.MultiSpanSassException$(error.message, t1.get$span(t1), error.primaryLabel, error.secondarySpans));
62332
+ stackTrace = H.getTraceFromException(exception);
62333
+ t1 = error.message;
62334
+ t2 = node.value;
62335
+ t2 = t2.get$span(t2);
62336
+ B.throwWithTrace(new E.MultiSpanSassException(error.primaryLabel, H.ConstantMap_ConstantMap$from(error.secondarySpans, type$.FileSpan, type$.String), t1, t2), stackTrace);
62093
62337
  } else if (t1 instanceof E.SassScriptException) {
62094
62338
  error0 = t1;
62339
+ stackTrace0 = H.getTraceFromException(exception);
62095
62340
  t1 = node.value;
62096
- throw H.wrapException(E.SassException$(error0.message, t1.get$span(t1)));
62341
+ B.throwWithTrace(new E.SassException(error0.message, t1.get$span(t1)), stackTrace0);
62097
62342
  } else
62098
62343
  throw exception;
62099
62344
  }
@@ -67404,7 +67649,7 @@ self.readline = _cli_pkg_requires.readline;
67404
67649
  _loadStylesheet$body$_EvaluateVisitor0(url, span, baseUrl, forImport) {
67405
67650
  var $async$goto = 0,
67406
67651
  $async$completer = P._makeAsyncAwaitCompleter(type$._LoadedStylesheet_2),
67407
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, importCache, tuple, isDependency, stylesheet, result, error, error0, message, t1, t2, t3, t4, exception, message0, $async$exception;
67652
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, importCache, tuple, isDependency, stylesheet, result, error, stackTrace, error0, stackTrace0, message, t1, t2, t3, t4, exception, message0, $async$exception;
67408
67653
  var $async$_async_evaluate0$_loadStylesheet$4$baseUrl$forImport = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
67409
67654
  if ($async$errorCode === 1) {
67410
67655
  $async$currentError = $async$result;
@@ -67490,10 +67735,13 @@ self.readline = _cli_pkg_requires.readline;
67490
67735
  t1 = H.unwrapException($async$exception);
67491
67736
  if (t1 instanceof E.SassException0) {
67492
67737
  error = t1;
67493
- t1 = $async$self._async_evaluate0$_exception$2(error._span_exception$_message, J.get$span$z(error));
67494
- throw H.wrapException(t1);
67738
+ stackTrace = H.getTraceFromException($async$exception);
67739
+ t1 = error;
67740
+ t2 = J.getInterceptor$z(t1);
67741
+ B.throwWithTrace0($async$self._async_evaluate0$_exception$2(error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t2, t1)), stackTrace);
67495
67742
  } else {
67496
67743
  error0 = t1;
67744
+ stackTrace0 = H.getTraceFromException($async$exception);
67497
67745
  message = null;
67498
67746
  try {
67499
67747
  message = H._asString(J.get$message$x(error0));
@@ -67502,8 +67750,7 @@ self.readline = _cli_pkg_requires.readline;
67502
67750
  message0 = J.toString$0$(error0);
67503
67751
  message = message0;
67504
67752
  }
67505
- t1 = $async$self._async_evaluate0$_exception$1(message);
67506
- throw H.wrapException(t1);
67753
+ B.throwWithTrace0($async$self._async_evaluate0$_exception$1(message), stackTrace0);
67507
67754
  }
67508
67755
  $async$next.push(6);
67509
67756
  // goto finally
@@ -68646,7 +68893,7 @@ self.readline = _cli_pkg_requires.readline;
68646
68893
  visitCalculationExpression$body$_EvaluateVisitor0(node) {
68647
68894
  var $async$goto = 0,
68648
68895
  $async$completer = P._makeAsyncAwaitCompleter(type$.Value_2),
68649
- $async$returnValue, $async$next = [], $async$self = this, $arguments, error, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
68896
+ $async$returnValue, $async$next = [], $async$self = this, $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception, t1, $async$temp1;
68650
68897
  var $async$visitCalculationExpression$1 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
68651
68898
  if ($async$errorCode === 1)
68652
68899
  return P._asyncRethrow($async$result, $async$completer);
@@ -68716,8 +68963,9 @@ self.readline = _cli_pkg_requires.readline;
68716
68963
  t1 = H.unwrapException(exception);
68717
68964
  if (t1 instanceof E.SassScriptException0) {
68718
68965
  error = t1;
68966
+ stackTrace = H.getTraceFromException(exception);
68719
68967
  $async$self._async_evaluate0$_verifyCompatibleNumbers$2($arguments, t2);
68720
- throw H.wrapException($async$self._async_evaluate0$_exception$2(error.message, node.span));
68968
+ B.throwWithTrace0($async$self._async_evaluate0$_exception$2(error.message, node.span), stackTrace);
68721
68969
  } else
68722
68970
  throw exception;
68723
68971
  }
@@ -69241,7 +69489,7 @@ self.readline = _cli_pkg_requires.readline;
69241
69489
  _runBuiltInCallable$body$_EvaluateVisitor0($arguments, callable, nodeWithSpan) {
69242
69490
  var $async$goto = 0,
69243
69491
  $async$completer = P._makeAsyncAwaitCompleter(type$.Value_2),
69244
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, callback, result, error, error0, error1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, message0, evaluated, oldCallableNode, $async$exception;
69492
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, callback, result, error, stackTrace, error0, stackTrace0, error1, stackTrace1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, t4, t5, t6, message0, evaluated, oldCallableNode, $async$exception;
69245
69493
  var $async$_async_evaluate0$_runBuiltInCallable$3 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
69246
69494
  if ($async$errorCode === 1) {
69247
69495
  $async$currentError = $async$result;
@@ -69327,12 +69575,27 @@ self.readline = _cli_pkg_requires.readline;
69327
69575
  throw $async$exception;
69328
69576
  else if (t1 instanceof E.MultiSpanSassScriptException0) {
69329
69577
  error = t1;
69330
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, $async$self._async_evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
69578
+ stackTrace = H.getTraceFromException($async$exception);
69579
+ t1 = error.message;
69580
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
69581
+ t3 = error.primaryLabel;
69582
+ t4 = error.secondarySpans;
69583
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0($async$self._async_evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
69331
69584
  } else if (t1 instanceof E.MultiSpanSassException0) {
69332
69585
  error0 = t1;
69333
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error0._span_exception$_message, J.get$span$z(error0), error0.primaryLabel, error0.secondarySpans, $async$self._async_evaluate0$_stackTrace$1(J.get$span$z(error0))));
69586
+ stackTrace0 = H.getTraceFromException($async$exception);
69587
+ t1 = error0._span_exception$_message;
69588
+ t2 = error0;
69589
+ t3 = J.getInterceptor$z(t2);
69590
+ t2 = G.SourceSpanException.prototype.get$span.call(t3, t2);
69591
+ t3 = error0.primaryLabel;
69592
+ t4 = error0.secondarySpans;
69593
+ t5 = error0;
69594
+ t6 = J.getInterceptor$z(t5);
69595
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0($async$self._async_evaluate0$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t6, t5)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace0);
69334
69596
  } else {
69335
69597
  error1 = t1;
69598
+ stackTrace1 = H.getTraceFromException($async$exception);
69336
69599
  message = null;
69337
69600
  try {
69338
69601
  message = H._asString(J.get$message$x(error1));
@@ -69341,7 +69604,7 @@ self.readline = _cli_pkg_requires.readline;
69341
69604
  message0 = J.toString$0$(error1);
69342
69605
  message = message0;
69343
69606
  }
69344
- throw H.wrapException($async$self._async_evaluate0$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)));
69607
+ B.throwWithTrace0($async$self._async_evaluate0$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace1);
69345
69608
  }
69346
69609
  // goto after finally
69347
69610
  $async$goto = 13;
@@ -70355,7 +70618,7 @@ self.readline = _cli_pkg_requires.readline;
70355
70618
  return new E.MultiSpanSassRuntimeException0(this._async_evaluate0$_stackTrace$0(), primaryLabel, H.ConstantMap_ConstantMap$from(secondaryLabels, type$.FileSpan, type$.String), message, t1);
70356
70619
  },
70357
70620
  _async_evaluate0$_adjustParseError$1$2(nodeWithSpan, callback) {
70358
- var error, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
70621
+ var error, stackTrace, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
70359
70622
  try {
70360
70623
  t1 = callback.call$0();
70361
70624
  return t1;
@@ -70363,6 +70626,7 @@ self.readline = _cli_pkg_requires.readline;
70363
70626
  t1 = H.unwrapException(exception);
70364
70627
  if (t1 instanceof E.SassFormatException0) {
70365
70628
  error = t1;
70629
+ stackTrace = H.getTraceFromException(exception);
70366
70630
  t1 = error;
70367
70631
  t2 = J.getInterceptor$z(t1);
70368
70632
  errorText = P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(G.SourceSpanException.prototype.get$span.call(t2, t1).file._decodedChars, 0, _null), 0, _null);
@@ -70383,7 +70647,7 @@ self.readline = _cli_pkg_requires.readline;
70383
70647
  t6 = J.getInterceptor$z(t5);
70384
70648
  t5 = G.SourceSpanException.prototype.get$span.call(t6, t5);
70385
70649
  syntheticSpan = t2.span$2(0, t1.offset + t3.offset, t4.offset + Y.FileLocation$_(t5.file, t5._end).offset);
70386
- throw H.wrapException(this._async_evaluate0$_exception$2(error._span_exception$_message, syntheticSpan));
70650
+ B.throwWithTrace0(this._async_evaluate0$_exception$2(error._span_exception$_message, syntheticSpan), stackTrace);
70387
70651
  } else
70388
70652
  throw exception;
70389
70653
  }
@@ -70392,7 +70656,7 @@ self.readline = _cli_pkg_requires.readline;
70392
70656
  return this._async_evaluate0$_adjustParseError$1$2(nodeWithSpan, callback, type$.dynamic);
70393
70657
  },
70394
70658
  _async_evaluate0$_addExceptionSpan$1$2(nodeWithSpan, callback) {
70395
- var error, error0, t1, exception;
70659
+ var error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4;
70396
70660
  try {
70397
70661
  t1 = callback.call$0();
70398
70662
  return t1;
@@ -70400,10 +70664,16 @@ self.readline = _cli_pkg_requires.readline;
70400
70664
  t1 = H.unwrapException(exception);
70401
70665
  if (t1 instanceof E.MultiSpanSassScriptException0) {
70402
70666
  error = t1;
70403
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, this._async_evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
70667
+ stackTrace = H.getTraceFromException(exception);
70668
+ t1 = error.message;
70669
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
70670
+ t3 = error.primaryLabel;
70671
+ t4 = error.secondarySpans;
70672
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0(this._async_evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
70404
70673
  } else if (t1 instanceof E.SassScriptException0) {
70405
70674
  error0 = t1;
70406
- throw H.wrapException(this._async_evaluate0$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)));
70675
+ stackTrace0 = H.getTraceFromException(exception);
70676
+ B.throwWithTrace0(this._async_evaluate0$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace0);
70407
70677
  } else
70408
70678
  throw exception;
70409
70679
  }
@@ -70417,7 +70687,7 @@ self.readline = _cli_pkg_requires.readline;
70417
70687
  _addExceptionSpanAsync$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
70418
70688
  var $async$goto = 0,
70419
70689
  $async$completer = P._makeAsyncAwaitCompleter($async$type),
70420
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, error0, t1, exception, $async$exception;
70690
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4, $async$exception;
70421
70691
  var $async$_async_evaluate0$_addExceptionSpanAsync$1$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
70422
70692
  if ($async$errorCode === 1) {
70423
70693
  $async$currentError = $async$result;
@@ -70448,10 +70718,16 @@ self.readline = _cli_pkg_requires.readline;
70448
70718
  t1 = H.unwrapException($async$exception);
70449
70719
  if (t1 instanceof E.MultiSpanSassScriptException0) {
70450
70720
  error = t1;
70451
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, $async$self._async_evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
70721
+ stackTrace = H.getTraceFromException($async$exception);
70722
+ t1 = error.message;
70723
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
70724
+ t3 = error.primaryLabel;
70725
+ t4 = error.secondarySpans;
70726
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0($async$self._async_evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
70452
70727
  } else if (t1 instanceof E.SassScriptException0) {
70453
70728
  error0 = t1;
70454
- throw H.wrapException($async$self._async_evaluate0$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)));
70729
+ stackTrace0 = H.getTraceFromException($async$exception);
70730
+ B.throwWithTrace0($async$self._async_evaluate0$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace0);
70455
70731
  } else
70456
70732
  throw $async$exception;
70457
70733
  // goto after finally
@@ -70480,7 +70756,7 @@ self.readline = _cli_pkg_requires.readline;
70480
70756
  _addErrorSpan$body$_EvaluateVisitor0(nodeWithSpan, callback, $T, $async$type) {
70481
70757
  var $async$goto = 0,
70482
70758
  $async$completer = P._makeAsyncAwaitCompleter($async$type),
70483
- $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, t1, exception, $async$exception;
70759
+ $async$returnValue, $async$handler = 2, $async$currentError, $async$next = [], $async$self = this, error, stackTrace, t1, exception, t2, $async$exception;
70484
70760
  var $async$_async_evaluate0$_addErrorSpan$1$2 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
70485
70761
  if ($async$errorCode === 1) {
70486
70762
  $async$currentError = $async$result;
@@ -70511,10 +70787,13 @@ self.readline = _cli_pkg_requires.readline;
70511
70787
  t1 = H.unwrapException($async$exception);
70512
70788
  if (type$.SassRuntimeException_2._is(t1)) {
70513
70789
  error = t1;
70790
+ stackTrace = H.getTraceFromException($async$exception);
70514
70791
  t1 = J.get$span$z(error);
70515
70792
  if (!C.JSString_methods.startsWith$1(P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(t1.file._decodedChars, t1._file$_start, t1._end), 0, null), "@error"))
70516
70793
  throw $async$exception;
70517
- throw H.wrapException(E.SassRuntimeException$0(error._span_exception$_message, nodeWithSpan.get$span(nodeWithSpan), $async$self._async_evaluate0$_stackTrace$0()));
70794
+ t1 = error._span_exception$_message;
70795
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
70796
+ B.throwWithTrace0(new E.SassRuntimeException0($async$self._async_evaluate0$_stackTrace$0(), t1, t2), stackTrace);
70518
70797
  } else
70519
70798
  throw $async$exception;
70520
70799
  // goto after finally
@@ -70849,7 +71128,7 @@ self.readline = _cli_pkg_requires.readline;
70849
71128
  call$0() {
70850
71129
  var $async$goto = 0,
70851
71130
  $async$completer = P._makeAsyncAwaitCompleter(type$.Null),
70852
- $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, oldInDependency, module, error, error0, error1, error2, message, exception, t1, t2, result, stylesheet, canonicalUrl, $async$exception;
71131
+ $async$handler = 1, $async$currentError, $async$next = [], $async$self = this, oldInDependency, module, error, stackTrace, error0, stackTrace0, error1, stackTrace1, error2, stackTrace2, message, exception, t3, t4, t5, t6, t7, t1, t2, result, stylesheet, canonicalUrl, $async$exception;
70853
71132
  var $async$call$0 = P._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
70854
71133
  if ($async$errorCode === 1) {
70855
71134
  $async$currentError = $async$result;
@@ -70919,16 +71198,30 @@ self.readline = _cli_pkg_requires.readline;
70919
71198
  throw $async$exception;
70920
71199
  else if (t2 instanceof E.MultiSpanSassException0) {
70921
71200
  error = t2;
70922
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error._span_exception$_message, J.get$span$z(error), error.primaryLabel, error.secondarySpans, t1._async_evaluate0$_stackTrace$1(J.get$span$z(error))));
71201
+ stackTrace = H.getTraceFromException($async$exception);
71202
+ t2 = error._span_exception$_message;
71203
+ t3 = error;
71204
+ t4 = J.getInterceptor$z(t3);
71205
+ t3 = G.SourceSpanException.prototype.get$span.call(t4, t3);
71206
+ t4 = error.primaryLabel;
71207
+ t5 = error.secondarySpans;
71208
+ t6 = error;
71209
+ t7 = J.getInterceptor$z(t6);
71210
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0(t1._async_evaluate0$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t7, t6)), t4, H.ConstantMap_ConstantMap$from(t5, type$.FileSpan, type$.String), t2, t3), stackTrace);
70923
71211
  } else if (t2 instanceof E.SassException0) {
70924
71212
  error0 = t2;
70925
- throw H.wrapException(t1._async_evaluate0$_exception$2(error0._span_exception$_message, J.get$span$z(error0)));
71213
+ stackTrace0 = H.getTraceFromException($async$exception);
71214
+ t2 = error0;
71215
+ t3 = J.getInterceptor$z(t2);
71216
+ B.throwWithTrace0(t1._async_evaluate0$_exception$2(error0._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t3, t2)), stackTrace0);
70926
71217
  } else if (t2 instanceof E.MultiSpanSassScriptException0) {
70927
71218
  error1 = t2;
70928
- throw H.wrapException(t1._async_evaluate0$_multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans));
71219
+ stackTrace1 = H.getTraceFromException($async$exception);
71220
+ B.throwWithTrace0(t1._async_evaluate0$_multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans), stackTrace1);
70929
71221
  } else if (t2 instanceof E.SassScriptException0) {
70930
71222
  error2 = t2;
70931
- throw H.wrapException(t1._async_evaluate0$_exception$1(error2.message));
71223
+ stackTrace2 = H.getTraceFromException($async$exception);
71224
+ B.throwWithTrace0(t1._async_evaluate0$_exception$1(error2.message), stackTrace2);
70932
71225
  } else
70933
71226
  throw $async$exception;
70934
71227
  // goto after finally
@@ -74551,7 +74844,7 @@ self.readline = _cli_pkg_requires.readline;
74551
74844
  $eq(_, other) {
74552
74845
  if (other == null)
74553
74846
  return false;
74554
- return other instanceof V.CalculationOperation0 && J.$eq$(this.left, other.left) && J.$eq$(this.right, other.right);
74847
+ return other instanceof V.CalculationOperation0 && this.operator === other.operator && J.$eq$(this.left, other.left) && J.$eq$(this.right, other.right);
74555
74848
  },
74556
74849
  get$hashCode(_) {
74557
74850
  return (H.Primitives_objectHashCode(this.operator) ^ J.get$hashCode$(this.left) ^ J.get$hashCode$(this.right)) >>> 0;
@@ -77189,7 +77482,7 @@ self.readline = _cli_pkg_requires.readline;
77189
77482
  return this._evaluate0$_withStackFrame$3("@import", $import, new R._EvaluateVisitor__visitDynamicImport_closure1(this, $import));
77190
77483
  },
77191
77484
  _evaluate0$_loadStylesheet$4$baseUrl$forImport(url, span, baseUrl, forImport) {
77192
- var importCache, tuple, isDependency, stylesheet, result, error, error0, message, t1, t2, t3, t4, exception, message0, _this = this;
77485
+ var importCache, tuple, isDependency, stylesheet, result, error, stackTrace, error0, stackTrace0, message, t1, t2, t3, t4, exception, message0, _this = this;
77193
77486
  baseUrl = baseUrl;
77194
77487
  try {
77195
77488
  _this._evaluate0$_importSpan = span;
@@ -77227,10 +77520,13 @@ self.readline = _cli_pkg_requires.readline;
77227
77520
  t1 = H.unwrapException(exception);
77228
77521
  if (t1 instanceof E.SassException0) {
77229
77522
  error = t1;
77230
- t1 = _this._evaluate0$_exception$2(error._span_exception$_message, J.get$span$z(error));
77231
- throw H.wrapException(t1);
77523
+ stackTrace = H.getTraceFromException(exception);
77524
+ t1 = error;
77525
+ t2 = J.getInterceptor$z(t1);
77526
+ B.throwWithTrace0(_this._evaluate0$_exception$2(error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t2, t1)), stackTrace);
77232
77527
  } else {
77233
77528
  error0 = t1;
77529
+ stackTrace0 = H.getTraceFromException(exception);
77234
77530
  message = null;
77235
77531
  try {
77236
77532
  message = H._asString(J.get$message$x(error0));
@@ -77239,8 +77535,7 @@ self.readline = _cli_pkg_requires.readline;
77239
77535
  message0 = J.toString$0$(error0);
77240
77536
  message = message0;
77241
77537
  }
77242
- t1 = _this._evaluate0$_exception$1(message);
77243
- throw H.wrapException(t1);
77538
+ B.throwWithTrace0(_this._evaluate0$_exception$1(message), stackTrace0);
77244
77539
  }
77245
77540
  } finally {
77246
77541
  _this._evaluate0$_importSpan = null;
@@ -77558,7 +77853,7 @@ self.readline = _cli_pkg_requires.readline;
77558
77853
  return node.expression.accept$1(this);
77559
77854
  },
77560
77855
  visitCalculationExpression$1(node) {
77561
- var $arguments, error, t2, t3, t4, t5, t6, _i, argument, exception,
77856
+ var $arguments, error, stackTrace, t2, t3, t4, t5, t6, _i, argument, exception,
77562
77857
  t1 = H._setArrayType([], type$.JSArray_Object);
77563
77858
  for (t2 = node.$arguments, t3 = t2.length, t4 = node.name, t5 = t4 !== "min", t6 = t4 === "max", _i = 0; _i < t3; ++_i) {
77564
77859
  argument = t2[_i];
@@ -77589,8 +77884,9 @@ self.readline = _cli_pkg_requires.readline;
77589
77884
  t1 = H.unwrapException(exception);
77590
77885
  if (t1 instanceof E.SassScriptException0) {
77591
77886
  error = t1;
77887
+ stackTrace = H.getTraceFromException(exception);
77592
77888
  this._evaluate0$_verifyCompatibleNumbers$2($arguments, t2);
77593
- throw H.wrapException(this._evaluate0$_exception$2(error.message, node.span));
77889
+ B.throwWithTrace0(this._evaluate0$_exception$2(error.message, node.span), stackTrace);
77594
77890
  } else
77595
77891
  throw exception;
77596
77892
  }
@@ -77756,7 +78052,7 @@ self.readline = _cli_pkg_requires.readline;
77756
78052
  throw H.wrapException(P.ArgumentError$("Unknown callable type " + J.get$runtimeType$u(callable).toString$0(0) + ".", null));
77757
78053
  },
77758
78054
  _evaluate0$_runBuiltInCallable$3($arguments, callable, nodeWithSpan) {
77759
- var callback, result, error, error0, error1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, message0, _this = this,
78055
+ var callback, result, error, stackTrace, error0, stackTrace0, error1, stackTrace1, message, namedSet, tuple, overload, declaredArguments, i, t1, argument, t2, t3, rest, argumentList, exception, t4, t5, t6, message0, _this = this,
77760
78056
  evaluated = _this._evaluate0$_evaluateArguments$1($arguments),
77761
78057
  oldCallableNode = _this._evaluate0$_callableNode;
77762
78058
  _this._evaluate0$_callableNode = nodeWithSpan;
@@ -77796,12 +78092,27 @@ self.readline = _cli_pkg_requires.readline;
77796
78092
  throw exception;
77797
78093
  else if (t1 instanceof E.MultiSpanSassScriptException0) {
77798
78094
  error = t1;
77799
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, _this._evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
78095
+ stackTrace = H.getTraceFromException(exception);
78096
+ t1 = error.message;
78097
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
78098
+ t3 = error.primaryLabel;
78099
+ t4 = error.secondarySpans;
78100
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0(_this._evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
77800
78101
  } else if (t1 instanceof E.MultiSpanSassException0) {
77801
78102
  error0 = t1;
77802
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error0._span_exception$_message, J.get$span$z(error0), error0.primaryLabel, error0.secondarySpans, _this._evaluate0$_stackTrace$1(J.get$span$z(error0))));
78103
+ stackTrace0 = H.getTraceFromException(exception);
78104
+ t1 = error0._span_exception$_message;
78105
+ t2 = error0;
78106
+ t3 = J.getInterceptor$z(t2);
78107
+ t2 = G.SourceSpanException.prototype.get$span.call(t3, t2);
78108
+ t3 = error0.primaryLabel;
78109
+ t4 = error0.secondarySpans;
78110
+ t5 = error0;
78111
+ t6 = J.getInterceptor$z(t5);
78112
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0(_this._evaluate0$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t6, t5)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace0);
77803
78113
  } else {
77804
78114
  error1 = t1;
78115
+ stackTrace1 = H.getTraceFromException(exception);
77805
78116
  message = null;
77806
78117
  try {
77807
78118
  message = H._asString(J.get$message$x(error1));
@@ -77810,7 +78121,7 @@ self.readline = _cli_pkg_requires.readline;
77810
78121
  message0 = J.toString$0$(error1);
77811
78122
  message = message0;
77812
78123
  }
77813
- throw H.wrapException(_this._evaluate0$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)));
78124
+ B.throwWithTrace0(_this._evaluate0$_exception$2(message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace1);
77814
78125
  }
77815
78126
  }
77816
78127
  _this._evaluate0$_callableNode = oldCallableNode;
@@ -78209,7 +78520,7 @@ self.readline = _cli_pkg_requires.readline;
78209
78520
  return new E.MultiSpanSassRuntimeException0(this._evaluate0$_stackTrace$0(), primaryLabel, H.ConstantMap_ConstantMap$from(secondaryLabels, type$.FileSpan, type$.String), message, t1);
78210
78521
  },
78211
78522
  _evaluate0$_adjustParseError$1$2(nodeWithSpan, callback) {
78212
- var error, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
78523
+ var error, stackTrace, errorText, span, syntheticFile, syntheticSpan, t1, exception, t2, t3, t4, t5, t6, _null = null;
78213
78524
  try {
78214
78525
  t1 = callback.call$0();
78215
78526
  return t1;
@@ -78217,6 +78528,7 @@ self.readline = _cli_pkg_requires.readline;
78217
78528
  t1 = H.unwrapException(exception);
78218
78529
  if (t1 instanceof E.SassFormatException0) {
78219
78530
  error = t1;
78531
+ stackTrace = H.getTraceFromException(exception);
78220
78532
  t1 = error;
78221
78533
  t2 = J.getInterceptor$z(t1);
78222
78534
  errorText = P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(G.SourceSpanException.prototype.get$span.call(t2, t1).file._decodedChars, 0, _null), 0, _null);
@@ -78237,7 +78549,7 @@ self.readline = _cli_pkg_requires.readline;
78237
78549
  t6 = J.getInterceptor$z(t5);
78238
78550
  t5 = G.SourceSpanException.prototype.get$span.call(t6, t5);
78239
78551
  syntheticSpan = t2.span$2(0, t1.offset + t3.offset, t4.offset + Y.FileLocation$_(t5.file, t5._end).offset);
78240
- throw H.wrapException(this._evaluate0$_exception$2(error._span_exception$_message, syntheticSpan));
78552
+ B.throwWithTrace0(this._evaluate0$_exception$2(error._span_exception$_message, syntheticSpan), stackTrace);
78241
78553
  } else
78242
78554
  throw exception;
78243
78555
  }
@@ -78246,7 +78558,7 @@ self.readline = _cli_pkg_requires.readline;
78246
78558
  return this._evaluate0$_adjustParseError$1$2(nodeWithSpan, callback, type$.dynamic);
78247
78559
  },
78248
78560
  _evaluate0$_addExceptionSpan$1$2(nodeWithSpan, callback) {
78249
- var error, error0, t1, exception;
78561
+ var error, stackTrace, error0, stackTrace0, t1, exception, t2, t3, t4;
78250
78562
  try {
78251
78563
  t1 = callback.call$0();
78252
78564
  return t1;
@@ -78254,10 +78566,16 @@ self.readline = _cli_pkg_requires.readline;
78254
78566
  t1 = H.unwrapException(exception);
78255
78567
  if (t1 instanceof E.MultiSpanSassScriptException0) {
78256
78568
  error = t1;
78257
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error.message, nodeWithSpan.get$span(nodeWithSpan), error.primaryLabel, error.secondarySpans, this._evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan))));
78569
+ stackTrace = H.getTraceFromException(exception);
78570
+ t1 = error.message;
78571
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
78572
+ t3 = error.primaryLabel;
78573
+ t4 = error.secondarySpans;
78574
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0(this._evaluate0$_stackTrace$1(nodeWithSpan.get$span(nodeWithSpan)), t3, H.ConstantMap_ConstantMap$from(t4, type$.FileSpan, type$.String), t1, t2), stackTrace);
78258
78575
  } else if (t1 instanceof E.SassScriptException0) {
78259
78576
  error0 = t1;
78260
- throw H.wrapException(this._evaluate0$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)));
78577
+ stackTrace0 = H.getTraceFromException(exception);
78578
+ B.throwWithTrace0(this._evaluate0$_exception$2(error0.message, nodeWithSpan.get$span(nodeWithSpan)), stackTrace0);
78261
78579
  } else
78262
78580
  throw exception;
78263
78581
  }
@@ -78266,7 +78584,7 @@ self.readline = _cli_pkg_requires.readline;
78266
78584
  return this._evaluate0$_addExceptionSpan$1$2(nodeWithSpan, callback, type$.dynamic);
78267
78585
  },
78268
78586
  _evaluate0$_addErrorSpan$1$2(nodeWithSpan, callback) {
78269
- var error, t1, exception;
78587
+ var error, stackTrace, t1, exception, t2;
78270
78588
  try {
78271
78589
  t1 = callback.call$0();
78272
78590
  return t1;
@@ -78274,10 +78592,13 @@ self.readline = _cli_pkg_requires.readline;
78274
78592
  t1 = H.unwrapException(exception);
78275
78593
  if (type$.SassRuntimeException_2._is(t1)) {
78276
78594
  error = t1;
78595
+ stackTrace = H.getTraceFromException(exception);
78277
78596
  t1 = J.get$span$z(error);
78278
78597
  if (!C.JSString_methods.startsWith$1(P.String_String$fromCharCodes(C.NativeUint32List_methods.sublist$2(t1.file._decodedChars, t1._file$_start, t1._end), 0, null), "@error"))
78279
78598
  throw exception;
78280
- throw H.wrapException(E.SassRuntimeException$0(error._span_exception$_message, nodeWithSpan.get$span(nodeWithSpan), this._evaluate0$_stackTrace$0()));
78599
+ t1 = error._span_exception$_message;
78600
+ t2 = nodeWithSpan.get$span(nodeWithSpan);
78601
+ B.throwWithTrace0(new E.SassRuntimeException0(this._evaluate0$_stackTrace$0(), t1, t2), stackTrace);
78281
78602
  } else
78282
78603
  throw exception;
78283
78604
  }
@@ -78518,7 +78839,7 @@ self.readline = _cli_pkg_requires.readline;
78518
78839
  };
78519
78840
  R._EvaluateVisitor__loadModule_closure4.prototype = {
78520
78841
  call$0() {
78521
- var oldInDependency, module, error, error0, error1, error2, message, exception, _this = this,
78842
+ var oldInDependency, module, error, stackTrace, error0, stackTrace0, error1, stackTrace1, error2, stackTrace2, message, exception, t3, t4, t5, t6, t7, _this = this,
78522
78843
  t1 = _this.$this,
78523
78844
  t2 = _this.nodeWithSpan,
78524
78845
  result = t1._evaluate0$_loadStylesheet$3$baseUrl(_this.url.toString$0(0), t2.get$span(t2), _this.baseUrl),
@@ -78548,16 +78869,30 @@ self.readline = _cli_pkg_requires.readline;
78548
78869
  throw exception;
78549
78870
  else if (t2 instanceof E.MultiSpanSassException0) {
78550
78871
  error = t2;
78551
- throw H.wrapException(E.MultiSpanSassRuntimeException$0(error._span_exception$_message, J.get$span$z(error), error.primaryLabel, error.secondarySpans, t1._evaluate0$_stackTrace$1(J.get$span$z(error))));
78872
+ stackTrace = H.getTraceFromException(exception);
78873
+ t2 = error._span_exception$_message;
78874
+ t3 = error;
78875
+ t4 = J.getInterceptor$z(t3);
78876
+ t3 = G.SourceSpanException.prototype.get$span.call(t4, t3);
78877
+ t4 = error.primaryLabel;
78878
+ t5 = error.secondarySpans;
78879
+ t6 = error;
78880
+ t7 = J.getInterceptor$z(t6);
78881
+ B.throwWithTrace0(new E.MultiSpanSassRuntimeException0(t1._evaluate0$_stackTrace$1(G.SourceSpanException.prototype.get$span.call(t7, t6)), t4, H.ConstantMap_ConstantMap$from(t5, type$.FileSpan, type$.String), t2, t3), stackTrace);
78552
78882
  } else if (t2 instanceof E.SassException0) {
78553
78883
  error0 = t2;
78554
- throw H.wrapException(t1._evaluate0$_exception$2(error0._span_exception$_message, J.get$span$z(error0)));
78884
+ stackTrace0 = H.getTraceFromException(exception);
78885
+ t2 = error0;
78886
+ t3 = J.getInterceptor$z(t2);
78887
+ B.throwWithTrace0(t1._evaluate0$_exception$2(error0._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t3, t2)), stackTrace0);
78555
78888
  } else if (t2 instanceof E.MultiSpanSassScriptException0) {
78556
78889
  error1 = t2;
78557
- throw H.wrapException(t1._evaluate0$_multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans));
78890
+ stackTrace1 = H.getTraceFromException(exception);
78891
+ B.throwWithTrace0(t1._evaluate0$_multiSpanException$3(error1.message, error1.primaryLabel, error1.secondarySpans), stackTrace1);
78558
78892
  } else if (t2 instanceof E.SassScriptException0) {
78559
78893
  error2 = t2;
78560
- throw H.wrapException(t1._evaluate0$_exception$1(error2.message));
78894
+ stackTrace2 = H.getTraceFromException(exception);
78895
+ B.throwWithTrace0(t1._evaluate0$_exception$1(error2.message), stackTrace2);
78561
78896
  } else
78562
78897
  throw exception;
78563
78898
  }
@@ -80108,7 +80443,7 @@ self.readline = _cli_pkg_requires.readline;
80108
80443
  }, type$.Extension_2);
80109
80444
  },
80110
80445
  addSelector$3(selector, selectorSpan, mediaContext) {
80111
- var originalSelector, error, t1, t2, t3, _i, exception, modifiableSelector, _this = this;
80446
+ var originalSelector, error, stackTrace, t1, t2, t3, _i, exception, t4, modifiableSelector, _this = this;
80112
80447
  selector = selector;
80113
80448
  originalSelector = selector;
80114
80449
  if (!originalSelector.get$isInvisible())
@@ -80122,7 +80457,12 @@ self.readline = _cli_pkg_requires.readline;
80122
80457
  t1 = H.unwrapException(exception);
80123
80458
  if (t1 instanceof E.SassException0) {
80124
80459
  error = t1;
80125
- throw H.wrapException(E.SassException$0("From " + J.get$span$z(error).message$1(0, "") + "\n" + error._span_exception$_message, J.get$span$z(error)));
80460
+ stackTrace = H.getTraceFromException(exception);
80461
+ t1 = error;
80462
+ t2 = J.getInterceptor$z(t1);
80463
+ t3 = error;
80464
+ t4 = J.getInterceptor$z(t3);
80465
+ B.throwWithTrace0(new E.SassException0("From " + G.SourceSpanException.prototype.get$span.call(t2, t1).message$1(0, "") + "\n" + error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t4, t3)), stackTrace);
80126
80466
  } else
80127
80467
  throw exception;
80128
80468
  }
@@ -80294,7 +80634,7 @@ self.readline = _cli_pkg_requires.readline;
80294
80634
  }, type$.SimpleSelector_2);
80295
80635
  },
80296
80636
  _extension_store$_extendExistingExtensions$2(extensions, newExtensions) {
80297
- var extension, selectors, error, t1, t2, t3, t4, t5, t6, additionalExtensions, _i, t7, exception, t8, t9, containsExtension, first, _i0, complex, t10, t11, t12, t13, t14, withExtender, existingExtension, _i1, component, _i2;
80637
+ var extension, selectors, error, stackTrace, t1, t2, t3, t4, t5, t6, additionalExtensions, _i, t7, exception, t8, t9, containsExtension, first, _i0, complex, t10, t11, t12, t13, t14, withExtender, existingExtension, _i1, component, _i2;
80298
80638
  for (t1 = J.toList$0$ax(extensions), t2 = t1.length, t3 = this._extension_store$_extensionsByExtender, t4 = type$.SimpleSelector_2, t5 = type$.Map_ComplexSelector_Extension_2, t6 = this._extension_store$_extensions, additionalExtensions = null, _i = 0; _i < t1.length; t1.length === t2 || (0, H.throwConcurrentModificationError)(t1), ++_i) {
80299
80639
  extension = t1[_i];
80300
80640
  t7 = t6.$index(0, extension.target);
@@ -80305,10 +80645,13 @@ self.readline = _cli_pkg_requires.readline;
80305
80645
  if (selectors == null)
80306
80646
  continue;
80307
80647
  } catch (exception) {
80308
- t1 = H.unwrapException(exception);
80309
- if (t1 instanceof E.SassException0) {
80310
- error = t1;
80311
- throw H.wrapException(E.SassException$0("From " + extension.extender.span.message$1(0, "") + "\n" + error._span_exception$_message, J.get$span$z(error)));
80648
+ t8 = H.unwrapException(exception);
80649
+ if (t8 instanceof E.SassException0) {
80650
+ error = t8;
80651
+ stackTrace = H.getTraceFromException(exception);
80652
+ t8 = error;
80653
+ t9 = J.getInterceptor$z(t8);
80654
+ B.throwWithTrace0(new E.SassException0("From " + extension.extender.span.message$1(0, "") + "\n" + error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t9, t8)), stackTrace);
80312
80655
  } else
80313
80656
  throw exception;
80314
80657
  }
@@ -80356,17 +80699,20 @@ self.readline = _cli_pkg_requires.readline;
80356
80699
  return additionalExtensions;
80357
80700
  },
80358
80701
  _extension_store$_extendExistingSelectors$2(selectors, newExtensions) {
80359
- var selector, error, t1, t2, oldValue, exception;
80702
+ var selector, error, stackTrace, t1, t2, oldValue, exception, t3, t4;
80360
80703
  for (t1 = selectors.get$iterator(selectors), t2 = this._extension_store$_mediaContexts; t1.moveNext$0();) {
80361
80704
  selector = t1.get$current(t1);
80362
80705
  oldValue = selector.value;
80363
80706
  try {
80364
80707
  selector.value = this._extension_store$_extendList$4(selector.value, selector.span, newExtensions, t2.$index(0, selector));
80365
80708
  } catch (exception) {
80366
- t1 = H.unwrapException(exception);
80367
- if (t1 instanceof E.SassException0) {
80368
- error = t1;
80369
- throw H.wrapException(E.SassException$0("From " + selector.span.message$1(0, "") + "\n" + error._span_exception$_message, J.get$span$z(error)));
80709
+ t3 = H.unwrapException(exception);
80710
+ if (t3 instanceof E.SassException0) {
80711
+ error = t3;
80712
+ stackTrace = H.getTraceFromException(exception);
80713
+ t3 = error;
80714
+ t4 = J.getInterceptor$z(t3);
80715
+ B.throwWithTrace0(new E.SassException0("From " + selector.span.message$1(0, "") + "\n" + error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t4, t3)), stackTrace);
80370
80716
  } else
80371
80717
  throw exception;
80372
80718
  }
@@ -82299,25 +82645,31 @@ self.readline = _cli_pkg_requires.readline;
82299
82645
  };
82300
82646
  Q.render_closure1.prototype = {
82301
82647
  call$2(error, stackTrace) {
82302
- var _null = null,
82648
+ var t2, t3, _null = null,
82303
82649
  t1 = this.callback;
82304
82650
  if (error instanceof E.SassException0)
82305
- t1.call$2(Q._wrapException(error), _null);
82306
- else
82307
- t1.call$2(Q._newRenderError(J.toString$0$(error), _null, _null, _null, 3), _null);
82651
+ t1.call$2(Q._wrapException(error, stackTrace), _null);
82652
+ else {
82653
+ t2 = J.toString$0$(error);
82654
+ t3 = B.getTrace0(error);
82655
+ t1.call$2(Q._newRenderError(t2, t3 == null ? stackTrace : t3, _null, _null, _null, 3), _null);
82656
+ }
82308
82657
  },
82309
82658
  $signature: 93
82310
82659
  };
82311
82660
  Q._parseFunctions_closure.prototype = {
82312
82661
  call$2(signature, callback) {
82313
- var error, exception, t1, context, fiber, _this = this, tuple = null;
82662
+ var error, stackTrace, exception, t1, t2, context, fiber, _this = this, tuple = null;
82314
82663
  try {
82315
82664
  tuple = L.ScssParser$0(signature, null, null).parseSignature$0();
82316
82665
  } catch (exception) {
82317
82666
  t1 = H.unwrapException(exception);
82318
82667
  if (t1 instanceof E.SassFormatException0) {
82319
82668
  error = t1;
82320
- throw H.wrapException(E.SassFormatException$0('Invalid signature "' + signature + '": ' + error._span_exception$_message, J.get$span$z(error)));
82669
+ stackTrace = H.getTraceFromException(exception);
82670
+ t1 = error;
82671
+ t2 = J.getInterceptor$z(t1);
82672
+ B.throwWithTrace0(new E.SassFormatException0('Invalid signature "' + signature + '": ' + error._span_exception$_message, G.SourceSpanException.prototype.get$span.call(t2, t1)), stackTrace);
82321
82673
  } else
82322
82674
  throw exception;
82323
82675
  }
@@ -85791,11 +86143,18 @@ self.readline = _cli_pkg_requires.readline;
85791
86143
  consumer.call$0();
85792
86144
  return t1.substring$1(0, start);
85793
86145
  },
85794
- error$2(_, message, span) {
85795
- return H.throwExpression(E.StringScannerException$(message, span, this.scanner.string));
86146
+ error$3(_, message, span, trace) {
86147
+ var exception = new E.StringScannerException(this.scanner.string, message, span);
86148
+ if (trace == null)
86149
+ throw H.wrapException(exception);
86150
+ else
86151
+ B.throwWithTrace0(exception, trace);
86152
+ },
86153
+ error$2($receiver, message, span) {
86154
+ return this.error$3($receiver, message, span, null);
85796
86155
  },
85797
86156
  withErrorMessage$1$2(message, callback) {
85798
- var error, t1, exception;
86157
+ var error, stackTrace, t1, exception;
85799
86158
  try {
85800
86159
  t1 = callback.call$0();
85801
86160
  return t1;
@@ -85803,7 +86162,9 @@ self.readline = _cli_pkg_requires.readline;
85803
86162
  t1 = H.unwrapException(exception);
85804
86163
  if (type$.SourceSpanFormatException._is(t1)) {
85805
86164
  error = t1;
85806
- throw H.wrapException(G.SourceSpanFormatException$(message, J.get$span$z(error), error.get$source()));
86165
+ stackTrace = H.getTraceFromException(exception);
86166
+ t1 = J.get$span$z(error);
86167
+ B.throwWithTrace0(new G.SourceSpanFormatException(error.get$source(), message, t1), stackTrace);
85807
86168
  } else
85808
86169
  throw exception;
85809
86170
  }
@@ -85812,7 +86173,7 @@ self.readline = _cli_pkg_requires.readline;
85812
86173
  return this.withErrorMessage$1$2(message, callback, type$.dynamic);
85813
86174
  },
85814
86175
  wrapSpanFormatException$1$1(callback) {
85815
- var error, span, startPosition, t1, exception;
86176
+ var error, stackTrace, span, startPosition, t1, exception;
85816
86177
  try {
85817
86178
  t1 = callback.call$0();
85818
86179
  return t1;
@@ -85820,6 +86181,7 @@ self.readline = _cli_pkg_requires.readline;
85820
86181
  t1 = H.unwrapException(exception);
85821
86182
  if (type$.SourceSpanFormatException._is(t1)) {
85822
86183
  error = t1;
86184
+ stackTrace = H.getTraceFromException(exception);
85823
86185
  span = J.get$span$z(error);
85824
86186
  if (B.startsWithIgnoreCase0(error._span_exception$_message, "expected")) {
85825
86187
  t1 = span;
@@ -85833,7 +86195,7 @@ self.readline = _cli_pkg_requires.readline;
85833
86195
  if (!J.$eq$(startPosition, Y.FileLocation$_(t1.file, t1._file$_start).offset))
85834
86196
  span = span.file.span$2(0, startPosition, startPosition);
85835
86197
  }
85836
- throw H.wrapException(E.SassFormatException$0(error._span_exception$_message, span));
86198
+ B.throwWithTrace0(new E.SassFormatException0(error._span_exception$_message, span), stackTrace);
85837
86199
  } else
85838
86200
  throw exception;
85839
86201
  }
@@ -86221,7 +86583,7 @@ self.readline = _cli_pkg_requires.readline;
86221
86583
  return this.atEndOfStatement$0() && this._sass0$_peekIndentation$0() > this._sass0$_currentIndentation;
86222
86584
  },
86223
86585
  importArgument$0() {
86224
- var url, span, innerError, start, next, t2, exception, _this = this,
86586
+ var url, span, innerError, stackTrace, start, next, t2, exception, _this = this,
86225
86587
  t1 = _this.scanner;
86226
86588
  switch (t1.peekChar$0()) {
86227
86589
  case 117:
@@ -86268,7 +86630,8 @@ self.readline = _cli_pkg_requires.readline;
86268
86630
  t1 = H.unwrapException(exception);
86269
86631
  if (type$.FormatException._is(t1)) {
86270
86632
  innerError = t1;
86271
- _this.error$2(0, "Invalid URL: " + J.get$message$x(innerError), span);
86633
+ stackTrace = H.getTraceFromException(exception);
86634
+ _this.error$3(0, "Invalid URL: " + J.get$message$x(innerError), span, stackTrace);
86272
86635
  } else
86273
86636
  throw exception;
86274
86637
  }
@@ -87137,6 +87500,8 @@ self.readline = _cli_pkg_requires.readline;
87137
87500
  t1.expectChar$1(124);
87138
87501
  return new D.QualifiedName0(_this.identifier$0(), "*");
87139
87502
  }
87503
+ if (t1.scanChar$1(124))
87504
+ return new D.QualifiedName0(_this.identifier$0(), "");
87140
87505
  nameOrNamespace = _this.identifier$0();
87141
87506
  if (t1.peekChar$0() !== 124 || t1.peekChar$1(1) === 61)
87142
87507
  return new D.QualifiedName0(nameOrNamespace, null);
@@ -87427,7 +87792,7 @@ self.readline = _cli_pkg_requires.readline;
87427
87792
  _this._serialize0$_visitChildren$1(node.children);
87428
87793
  },
87429
87794
  visitCssDeclaration$1(node) {
87430
- var error, error0, t1, t2, exception, _this = this;
87795
+ var error, stackTrace, error0, stackTrace0, t1, t2, exception, _this = this;
87431
87796
  _this._serialize0$_writeIndentation$0();
87432
87797
  t1 = node.name;
87433
87798
  _this._serialize0$_write$1(t1);
@@ -87445,12 +87810,16 @@ self.readline = _cli_pkg_requires.readline;
87445
87810
  t1 = H.unwrapException(exception);
87446
87811
  if (t1 instanceof E.MultiSpanSassScriptException0) {
87447
87812
  error = t1;
87448
- t1 = node.value;
87449
- throw H.wrapException(E.MultiSpanSassException$0(error.message, t1.get$span(t1), error.primaryLabel, error.secondarySpans));
87813
+ stackTrace = H.getTraceFromException(exception);
87814
+ t1 = error.message;
87815
+ t2 = node.value;
87816
+ t2 = t2.get$span(t2);
87817
+ B.throwWithTrace0(new E.MultiSpanSassException0(error.primaryLabel, H.ConstantMap_ConstantMap$from(error.secondarySpans, type$.FileSpan, type$.String), t1, t2), stackTrace);
87450
87818
  } else if (t1 instanceof E.SassScriptException0) {
87451
87819
  error0 = t1;
87820
+ stackTrace0 = H.getTraceFromException(exception);
87452
87821
  t1 = node.value;
87453
- throw H.wrapException(E.SassException$0(error0.message, t1.get$span(t1)));
87822
+ B.throwWithTrace0(new E.SassException0(error0.message, t1.get$span(t1)), stackTrace0);
87454
87823
  } else
87455
87824
  throw exception;
87456
87825
  }
@@ -89474,7 +89843,7 @@ self.readline = _cli_pkg_requires.readline;
89474
89843
  return this._stylesheet0$_statement$1$root(false);
89475
89844
  },
89476
89845
  variableDeclarationWithoutNamespace$2(namespace, start_) {
89477
- var t1, start, $name, t2, value, flagStart, guarded, global, flag, endPosition, t3, t4, t5, declaration, _this = this,
89846
+ var t1, start, $name, t2, value, flagStart, t3, guarded, global, flag, endPosition, t4, t5, t6, declaration, _this = this,
89478
89847
  precedingComment = _this.lastSilentComment;
89479
89848
  _this.lastSilentComment = null;
89480
89849
  if (start_ == null) {
@@ -89494,27 +89863,27 @@ self.readline = _cli_pkg_requires.readline;
89494
89863
  _this.whitespace$0();
89495
89864
  value = _this.expression$0();
89496
89865
  flagStart = new S._SpanScannerState(t2, t2._string_scanner$_position);
89497
- for (guarded = false, global = false; t2.scanChar$1(33);) {
89866
+ for (t3 = t2.string, guarded = false, global = false; t2.scanChar$1(33);) {
89498
89867
  flag = _this.identifier$0();
89499
89868
  if (flag === "default")
89500
89869
  guarded = true;
89501
89870
  else if (flag === "global") {
89502
89871
  if (t1) {
89503
89872
  endPosition = t2._string_scanner$_position;
89504
- t3 = t2._sourceFile;
89505
- t4 = flagStart.position;
89506
- t5 = new Y._FileSpan(t3, t4, endPosition);
89507
- t5._FileSpan$3(t3, t4, endPosition);
89508
- _this.error$2(0, string$.x21globa, t5);
89873
+ t4 = t2._sourceFile;
89874
+ t5 = flagStart.position;
89875
+ t6 = new Y._FileSpan(t4, t5, endPosition);
89876
+ t6._FileSpan$3(t4, t5, endPosition);
89877
+ H.throwExpression(new E.StringScannerException(t3, string$.x21globa, t6));
89509
89878
  }
89510
89879
  global = true;
89511
89880
  } else {
89512
89881
  endPosition = t2._string_scanner$_position;
89513
- t3 = t2._sourceFile;
89514
- t4 = flagStart.position;
89515
- t5 = new Y._FileSpan(t3, t4, endPosition);
89516
- t5._FileSpan$3(t3, t4, endPosition);
89517
- _this.error$2(0, "Invalid flag name.", t5);
89882
+ t4 = t2._sourceFile;
89883
+ t5 = flagStart.position;
89884
+ t6 = new Y._FileSpan(t4, t5, endPosition);
89885
+ t6._FileSpan$3(t4, t5, endPosition);
89886
+ H.throwExpression(new E.StringScannerException(t3, "Invalid flag name.", t6));
89518
89887
  }
89519
89888
  _this.whitespace$0();
89520
89889
  flagStart = new S._SpanScannerState(t2, t2._string_scanner$_position);
@@ -89888,7 +90257,7 @@ self.readline = _cli_pkg_requires.readline;
89888
90257
  }
89889
90258
  },
89890
90259
  _stylesheet0$_functionChild$0() {
89891
- var state, variableDeclarationError, statement, t2, namespace, exception, t3, start, value, _this = this,
90260
+ var state, variableDeclarationError, stackTrace, statement, t2, namespace, exception, t3, start, value, _this = this,
89892
90261
  t1 = _this.scanner;
89893
90262
  if (t1.peekChar$0() !== 64) {
89894
90263
  t2 = t1._string_scanner$_position;
@@ -89903,6 +90272,7 @@ self.readline = _cli_pkg_requires.readline;
89903
90272
  t3 = type$.SourceSpanFormatException;
89904
90273
  if (t3._is(t2)) {
89905
90274
  variableDeclarationError = t2;
90275
+ stackTrace = H.getTraceFromException(exception);
89906
90276
  t1.set$state(state);
89907
90277
  statement = null;
89908
90278
  try {
@@ -89913,7 +90283,7 @@ self.readline = _cli_pkg_requires.readline;
89913
90283
  else
89914
90284
  throw exception;
89915
90285
  }
89916
- _this.error$2(0, "@function rules may not contain " + (statement instanceof X.StyleRule0 ? "style rules" : "declarations") + ".", J.get$span$z(statement));
90286
+ _this.error$3(0, "@function rules may not contain " + (statement instanceof X.StyleRule0 ? "style rules" : "declarations") + ".", J.get$span$z(statement), stackTrace);
89917
90287
  } else
89918
90288
  throw exception;
89919
90289
  }
@@ -90186,7 +90556,7 @@ self.readline = _cli_pkg_requires.readline;
90186
90556
  return new B.ImportRule0(P.List_List$unmodifiable(imports, type$.Import_2), t1);
90187
90557
  },
90188
90558
  importArgument$0() {
90189
- var url, urlSpan, innerError, queries, t2, t3, t4, exception, _this = this, _null = null,
90559
+ var url, urlSpan, innerError, stackTrace, queries, t2, t3, t4, exception, _this = this, _null = null,
90190
90560
  t1 = _this.scanner,
90191
90561
  start = new S._SpanScannerState(t1, t1._string_scanner$_position),
90192
90562
  next = t1.peekChar$0();
@@ -90219,7 +90589,8 @@ self.readline = _cli_pkg_requires.readline;
90219
90589
  t1 = H.unwrapException(exception);
90220
90590
  if (type$.FormatException._is(t1)) {
90221
90591
  innerError = t1;
90222
- _this.error$2(0, "Invalid URL: " + J.get$message$x(innerError), urlSpan);
90592
+ stackTrace = H.getTraceFromException(exception);
90593
+ _this.error$3(0, "Invalid URL: " + J.get$message$x(innerError), urlSpan, stackTrace);
90223
90594
  } else
90224
90595
  throw exception;
90225
90596
  }
@@ -90360,27 +90731,27 @@ self.readline = _cli_pkg_requires.readline;
90360
90731
  return _this._stylesheet0$_withChildren$3(_this.get$_stylesheet0$_statement(), start, new V.StylesheetParser__mixinRule_closure0(_this, $name, $arguments, precedingComment));
90361
90732
  },
90362
90733
  mozDocumentRule$2(start, $name) {
90363
- var t5, t6, identifier, contents, argument, trailing, endPosition, t7, t8, start0, end, _this = this, _box_0 = {},
90734
+ var t5, t6, t7, identifier, contents, argument, trailing, endPosition, t8, t9, start0, end, _this = this, _box_0 = {},
90364
90735
  t1 = _this.scanner,
90365
90736
  t2 = t1._string_scanner$_position,
90366
90737
  t3 = new P.StringBuffer(""),
90367
90738
  t4 = H._setArrayType([], type$.JSArray_Object),
90368
90739
  buffer = new Z.InterpolationBuffer0(t3, t4);
90369
90740
  _box_0.needsDeprecationWarning = false;
90370
- for (t5 = _this.get$whitespace(); true;) {
90741
+ for (t5 = _this.get$whitespace(), t6 = t1.string; true;) {
90371
90742
  if (t1.peekChar$0() === 35) {
90372
- t6 = _this.singleInterpolation$0();
90743
+ t7 = _this.singleInterpolation$0();
90373
90744
  buffer._interpolation_buffer0$_flushText$0();
90374
- t4.push(t6);
90745
+ t4.push(t7);
90375
90746
  _box_0.needsDeprecationWarning = true;
90376
90747
  } else {
90377
- t6 = t1._string_scanner$_position;
90748
+ t7 = t1._string_scanner$_position;
90378
90749
  identifier = _this.identifier$0();
90379
90750
  switch (identifier) {
90380
90751
  case "url":
90381
90752
  case "url-prefix":
90382
90753
  case "domain":
90383
- contents = _this._stylesheet0$_tryUrlContents$2$name(new S._SpanScannerState(t1, t6), identifier);
90754
+ contents = _this._stylesheet0$_tryUrlContents$2$name(new S._SpanScannerState(t1, t7), identifier);
90384
90755
  if (contents != null)
90385
90756
  buffer.addInterpolation$1(contents);
90386
90757
  else {
@@ -90388,13 +90759,13 @@ self.readline = _cli_pkg_requires.readline;
90388
90759
  _this.whitespace$0();
90389
90760
  argument = _this.interpolatedString$0();
90390
90761
  t1.expectChar$1(41);
90391
- t6 = t3._contents += identifier;
90392
- t3._contents = t6 + H.Primitives_stringFromCharCode(40);
90762
+ t7 = t3._contents += identifier;
90763
+ t3._contents = t7 + H.Primitives_stringFromCharCode(40);
90393
90764
  buffer.addInterpolation$1(argument.asInterpolation$0());
90394
90765
  t3._contents += H.Primitives_stringFromCharCode(41);
90395
90766
  }
90396
- t6 = t3._contents;
90397
- trailing = t6.charCodeAt(0) == 0 ? t6 : t6;
90767
+ t7 = t3._contents;
90768
+ trailing = t7.charCodeAt(0) == 0 ? t7 : t7;
90398
90769
  if (!C.JSString_methods.endsWith$1(trailing, "url-prefix()") && !C.JSString_methods.endsWith$1(trailing, "url-prefix('')") && !C.JSString_methods.endsWith$1(trailing, 'url-prefix("")'))
90399
90770
  _box_0.needsDeprecationWarning = true;
90400
90771
  break;
@@ -90408,10 +90779,10 @@ self.readline = _cli_pkg_requires.readline;
90408
90779
  break;
90409
90780
  default:
90410
90781
  endPosition = t1._string_scanner$_position;
90411
- t7 = t1._sourceFile;
90412
- t8 = new Y._FileSpan(t7, t6, endPosition);
90413
- t8._FileSpan$3(t7, t6, endPosition);
90414
- _this.error$2(0, "Invalid function name.", t8);
90782
+ t8 = t1._sourceFile;
90783
+ t9 = new Y._FileSpan(t8, t7, endPosition);
90784
+ t9._FileSpan$3(t8, t7, endPosition);
90785
+ H.throwExpression(new E.StringScannerException(t6, "Invalid function name.", t9));
90415
90786
  }
90416
90787
  }
90417
90788
  _this.whitespace$0();
@@ -90421,7 +90792,7 @@ self.readline = _cli_pkg_requires.readline;
90421
90792
  start0 = t1._string_scanner$_position;
90422
90793
  t5.call$0();
90423
90794
  end = t1._string_scanner$_position;
90424
- t3._contents += C.JSString_methods.substring$2(t1.string, start0, end);
90795
+ t3._contents += C.JSString_methods.substring$2(t6, start0, end);
90425
90796
  }
90426
90797
  return _this._stylesheet0$_withChildren$3(_this.get$_stylesheet0$_statement(), start, new V.StylesheetParser_mozDocumentRule_closure0(_box_0, _this, $name, buffer.interpolation$1(t1.spanFrom$1(new S._SpanScannerState(t1, t2)))));
90427
90798
  },
@@ -90453,7 +90824,7 @@ self.readline = _cli_pkg_requires.readline;
90453
90824
  }
90454
90825
  },
90455
90826
  _stylesheet0$_configuration$1$allowGuarded(allowGuarded) {
90456
- var variableNames, configuration, t1, t2, $name, expression, t3, guarded, endPosition, t4, t5, span, _this = this;
90827
+ var variableNames, configuration, t1, t2, t3, $name, expression, t4, guarded, endPosition, t5, t6, span, _this = this;
90457
90828
  if (!_this.scanIdentifier$1("with"))
90458
90829
  return null;
90459
90830
  variableNames = P.LinkedHashSet_LinkedHashSet$_empty(type$.String);
@@ -90461,36 +90832,36 @@ self.readline = _cli_pkg_requires.readline;
90461
90832
  _this.whitespace$0();
90462
90833
  t1 = _this.scanner;
90463
90834
  t1.expectChar$1(40);
90464
- for (; true;) {
90835
+ for (t2 = t1.string; true;) {
90465
90836
  _this.whitespace$0();
90466
- t2 = t1._string_scanner$_position;
90837
+ t3 = t1._string_scanner$_position;
90467
90838
  t1.expectChar$1(36);
90468
90839
  $name = _this.identifier$1$normalize(true);
90469
90840
  _this.whitespace$0();
90470
90841
  t1.expectChar$1(58);
90471
90842
  _this.whitespace$0();
90472
90843
  expression = _this._stylesheet0$_expressionUntilComma$0();
90473
- t3 = t1._string_scanner$_position;
90844
+ t4 = t1._string_scanner$_position;
90474
90845
  if (allowGuarded && t1.scanChar$1(33))
90475
90846
  if (_this.identifier$0() === "default") {
90476
90847
  _this.whitespace$0();
90477
90848
  guarded = true;
90478
90849
  } else {
90479
90850
  endPosition = t1._string_scanner$_position;
90480
- t4 = t1._sourceFile;
90481
- t5 = new Y._FileSpan(t4, t3, endPosition);
90482
- t5._FileSpan$3(t4, t3, endPosition);
90483
- _this.error$2(0, "Invalid flag name.", t5);
90851
+ t5 = t1._sourceFile;
90852
+ t6 = new Y._FileSpan(t5, t4, endPosition);
90853
+ t6._FileSpan$3(t5, t4, endPosition);
90854
+ H.throwExpression(new E.StringScannerException(t2, "Invalid flag name.", t6));
90484
90855
  guarded = false;
90485
90856
  }
90486
90857
  else
90487
90858
  guarded = false;
90488
90859
  endPosition = t1._string_scanner$_position;
90489
- t3 = t1._sourceFile;
90490
- span = new Y._FileSpan(t3, t2, endPosition);
90491
- span._FileSpan$3(t3, t2, endPosition);
90860
+ t4 = t1._sourceFile;
90861
+ span = new Y._FileSpan(t4, t3, endPosition);
90862
+ span._FileSpan$3(t4, t3, endPosition);
90492
90863
  if (variableNames.contains$1(0, $name))
90493
- _this.error$2(0, string$.The_sa, span);
90864
+ H.throwExpression(new E.StringScannerException(t2, string$.The_sa, span));
90494
90865
  variableNames.add$1(0, $name);
90495
90866
  configuration.push(new Z.ConfiguredVariable0($name, expression, guarded, span));
90496
90867
  if (!t1.scanChar$1(44))
@@ -90537,19 +90908,20 @@ self.readline = _cli_pkg_requires.readline;
90537
90908
  this.error$2(0, "This at-rule is not allowed here.", this.scanner.spanFrom$1(start));
90538
90909
  },
90539
90910
  _stylesheet0$_argumentDeclaration$0() {
90540
- var $arguments, named, restArgument, t3, $name, defaultValue, endPosition, t4, t5, _this = this,
90911
+ var $arguments, named, restArgument, t3, t4, $name, defaultValue, endPosition, t5, t6, _this = this,
90541
90912
  t1 = _this.scanner,
90542
90913
  t2 = t1._string_scanner$_position;
90543
90914
  t1.expectChar$1(40);
90544
90915
  _this.whitespace$0();
90545
90916
  $arguments = H._setArrayType([], type$.JSArray_Argument_2);
90546
90917
  named = P.LinkedHashSet_LinkedHashSet$_empty(type$.String);
90918
+ t3 = t1.string;
90547
90919
  while (true) {
90548
90920
  if (!(t1.peekChar$0() === 36)) {
90549
90921
  restArgument = null;
90550
90922
  break;
90551
90923
  }
90552
- t3 = t1._string_scanner$_position;
90924
+ t4 = t1._string_scanner$_position;
90553
90925
  t1.expectChar$1(36);
90554
90926
  $name = _this.identifier$1$normalize(true);
90555
90927
  _this.whitespace$0();
@@ -90567,12 +90939,12 @@ self.readline = _cli_pkg_requires.readline;
90567
90939
  defaultValue = null;
90568
90940
  }
90569
90941
  endPosition = t1._string_scanner$_position;
90570
- t4 = t1._sourceFile;
90571
- t5 = new Y._FileSpan(t4, t3, endPosition);
90572
- t5._FileSpan$3(t4, t3, endPosition);
90573
- $arguments.push(new Z.Argument0($name, defaultValue, t5));
90942
+ t5 = t1._sourceFile;
90943
+ t6 = new Y._FileSpan(t5, t4, endPosition);
90944
+ t6._FileSpan$3(t5, t4, endPosition);
90945
+ $arguments.push(new Z.Argument0($name, defaultValue, t6));
90574
90946
  if (!named.add$1(0, $name))
90575
- _this.error$2(0, "Duplicate argument.", C.JSArray_methods.get$last($arguments).span);
90947
+ H.throwExpression(new E.StringScannerException(t3, "Duplicate argument.", C.JSArray_methods.get$last($arguments).span));
90576
90948
  if (!t1.scanChar$1(44)) {
90577
90949
  restArgument = null;
90578
90950
  break;
@@ -90584,7 +90956,7 @@ self.readline = _cli_pkg_requires.readline;
90584
90956
  return new B.ArgumentDeclaration0(P.List_List$unmodifiable($arguments, type$.Argument_2), restArgument, t1);
90585
90957
  },
90586
90958
  _stylesheet0$_argumentInvocation$1$mixin(mixin) {
90587
- var positional, t3, t4, named, keywordRest, t5, rest, expression, t6, _this = this,
90959
+ var positional, t3, t4, named, keywordRest, t5, t6, rest, expression, t7, _this = this,
90588
90960
  t1 = _this.scanner,
90589
90961
  t2 = t1._string_scanner$_position;
90590
90962
  t1.expectChar$1(40);
@@ -90594,6 +90966,7 @@ self.readline = _cli_pkg_requires.readline;
90594
90966
  t4 = type$.Expression_2;
90595
90967
  named = P.LinkedHashMap_LinkedHashMap$_empty(t3, t4);
90596
90968
  t5 = !mixin;
90969
+ t6 = t1.string;
90597
90970
  rest = null;
90598
90971
  while (true) {
90599
90972
  if (!_this._stylesheet0$_lookingAtExpression$0()) {
@@ -90604,10 +90977,10 @@ self.readline = _cli_pkg_requires.readline;
90604
90977
  _this.whitespace$0();
90605
90978
  if (expression instanceof S.VariableExpression0 && t1.scanChar$1(58)) {
90606
90979
  _this.whitespace$0();
90607
- t6 = expression.name;
90608
- if (named.containsKey$1(t6))
90609
- _this.error$2(0, "Duplicate argument.", expression.span);
90610
- named.$indexSet(0, t6, _this._stylesheet0$_expressionUntilComma$1$singleEquals(t5));
90980
+ t7 = expression.name;
90981
+ if (named.containsKey$1(t7))
90982
+ H.throwExpression(new E.StringScannerException(t6, "Duplicate argument.", expression.span));
90983
+ named.$indexSet(0, t7, _this._stylesheet0$_expressionUntilComma$1$singleEquals(t5));
90611
90984
  } else if (t1.scanChar$1(46)) {
90612
90985
  t1.expectChar$1(46);
90613
90986
  t1.expectChar$1(46);
@@ -90618,7 +90991,7 @@ self.readline = _cli_pkg_requires.readline;
90618
90991
  }
90619
90992
  rest = expression;
90620
90993
  } else if (named.get$isNotEmpty(named))
90621
- _this.error$2(0, string$.Positi, expression.get$span(expression));
90994
+ H.throwExpression(new E.StringScannerException(t6, string$.Positi, expression.get$span(expression)));
90622
90995
  else
90623
90996
  positional.push(expression);
90624
90997
  _this.whitespace$0();
@@ -92480,7 +92853,7 @@ self.readline = _cli_pkg_requires.readline;
92480
92853
  return this._stylesheet0$_withChildren$1$3(child, start, create, type$.dynamic);
92481
92854
  },
92482
92855
  _stylesheet0$_urlString$0() {
92483
- var innerError, t2, exception,
92856
+ var innerError, stackTrace, t2, exception,
92484
92857
  t1 = this.scanner,
92485
92858
  start = new S._SpanScannerState(t1, t1._string_scanner$_position),
92486
92859
  url = this.string$0();
@@ -92491,7 +92864,8 @@ self.readline = _cli_pkg_requires.readline;
92491
92864
  t2 = H.unwrapException(exception);
92492
92865
  if (type$.FormatException._is(t2)) {
92493
92866
  innerError = t2;
92494
- this.error$2(0, "Invalid URL: " + J.get$message$x(innerError), t1.spanFrom$1(start));
92867
+ stackTrace = H.getTraceFromException(exception);
92868
+ this.error$3(0, "Invalid URL: " + J.get$message$x(innerError), t1.spanFrom$1(start), stackTrace);
92495
92869
  } else
92496
92870
  throw exception;
92497
92871
  }
@@ -93587,7 +93961,7 @@ self.readline = _cli_pkg_requires.readline;
93587
93961
  return H.throwExpression(this._value0$_exception$2(this.toString$0(0) + " is not a string.", $name));
93588
93962
  },
93589
93963
  assertSelector$2$allowParent$name(allowParent, $name) {
93590
- var error, t1, exception,
93964
+ var error, stackTrace, t1, exception,
93591
93965
  string = this._value0$_selectorString$1($name);
93592
93966
  try {
93593
93967
  t1 = D.SelectorList_SelectorList$parse0(string, allowParent, true, null);
@@ -93596,7 +93970,9 @@ self.readline = _cli_pkg_requires.readline;
93596
93970
  t1 = H.unwrapException(exception);
93597
93971
  if (t1 instanceof E.SassFormatException0) {
93598
93972
  error = t1;
93599
- throw H.wrapException(this._value0$_exception$2(C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", ""), $name));
93973
+ stackTrace = H.getTraceFromException(exception);
93974
+ t1 = C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", "");
93975
+ B.throwWithTrace0(new E.SassScriptException0($name == null ? t1 : "$" + $name + ": " + t1), stackTrace);
93600
93976
  } else
93601
93977
  throw exception;
93602
93978
  }
@@ -93611,7 +93987,7 @@ self.readline = _cli_pkg_requires.readline;
93611
93987
  return this.assertSelector$2$allowParent$name(allowParent, null);
93612
93988
  },
93613
93989
  assertCompoundSelector$1$name($name) {
93614
- var error, t1, exception,
93990
+ var error, stackTrace, t1, exception,
93615
93991
  allowParent = false,
93616
93992
  string = this._value0$_selectorString$1($name);
93617
93993
  try {
@@ -93621,7 +93997,10 @@ self.readline = _cli_pkg_requires.readline;
93621
93997
  t1 = H.unwrapException(exception);
93622
93998
  if (t1 instanceof E.SassFormatException0) {
93623
93999
  error = t1;
93624
- throw H.wrapException(this._value0$_exception$2(C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", ""), $name));
94000
+ stackTrace = H.getTraceFromException(exception);
94001
+ t1 = C.JSString_methods.replaceFirst$2(J.toString$0$(error), "Error: ", "");
94002
+ t1 = "$" + $name + ": " + t1;
94003
+ B.throwWithTrace0(new E.SassScriptException0(t1), stackTrace);
93625
94004
  } else
93626
94005
  throw exception;
93627
94006
  }
@@ -94121,9 +94500,9 @@ self.readline = _cli_pkg_requires.readline;
94121
94500
  _inherit = hunkHelpers.inherit,
94122
94501
  _inheritMany = hunkHelpers.inheritMany;
94123
94502
  _inherit(P.Object, null);
94124
- _inheritMany(P.Object, [H.JS_CONST, J.Interceptor, J.ArrayIterator, P.Iterable, H.CastIterator, H.Closure, P.MapMixin, P.Error, P._ListBase_Object_ListMixin, H.ListIterator, P.Iterator, H.ExpandIterator, H.EmptyIterator, H.FollowedByIterator, H.WhereTypeIterator, H.FixedLengthListMixin, H.UnmodifiableListMixin, H.Symbol, P.MapView, H.ConstantMap, H.JSInvocationMirror, H.TypeErrorDecoder, H.NullThrownFromJavaScriptException, H.ExceptionAndStackTrace, H._StackTrace, H._Required, H.LinkedHashMapCell, H.LinkedHashMapKeyIterator, H.JSSyntaxRegExp, H._MatchImplementation, H._AllMatchesIterator, H.StringMatch, H._StringAllMatchesIterator, H._Cell, H.Rti, H._FunctionParameters, H._Type, P._TimerImpl, P._AsyncAwaitCompleter, P._IterationMarker, P._SyncStarIterator, P.AsyncError, P._Completer, P._FutureListener, P._Future, P._AsyncCallbackEntry, P.Stream, P.StreamTransformerBase, P._StreamController, P._SyncStreamControllerDispatch, P._AsyncStreamControllerDispatch, P._BufferingStreamSubscription, P._AddStreamState, P._DelayedEvent, P._DelayedDone, P._PendingEvents, P._StreamIterator, P._ZoneFunction, P._RunNullaryZoneFunction, P._RunUnaryZoneFunction, P._RunBinaryZoneFunction, P._RegisterNullaryZoneFunction, P._RegisterUnaryZoneFunction, P._RegisterBinaryZoneFunction, P._ZoneSpecification, P._ZoneDelegate, P._Zone, P._HashMapKeyIterator, P.__SetBase_Object_SetMixin, P._LinkedHashSetCell, P._LinkedHashSetIterator, P.ListMixin, P._MapBaseValueIterator, P._UnmodifiableMapMixin, P._ListQueueIterator, P.SetMixin, P._UnmodifiableSetMixin, P.Codec, P._Base64Encoder, P.ChunkedConversionSink, P._JsonStringifier, P.StringConversionSinkMixin, P._Utf8Encoder, P._Utf8Decoder, P.DateTime, P.Duration, P.OutOfMemoryError, P.StackOverflowError, P._Exception, P.FormatException, P.MapEntry, P.Null, P._StringStackTrace, P.RuneIterator, P.StringBuffer, P._Uri, P.UriData, P._SimpleUri, P._JSRandom, N.ArgParser, V.ArgResults, G.Option, G.OptionType, G.Parser0, G._Usage, V.ErrorResult, F.ValueResult, Y.StreamCompleter, L.StreamGroup, L._StreamGroupState, G.StreamQueue, G._NextRequest, Q.Repl, B.ReplAdapter, U.DefaultEquality, U.IterableEquality, U.ListEquality, U._MapEntry, U.MapEquality, Q._QueueList_Object_ListMixin, M._DelegatingIterableBase, L.UnmodifiableSetMixin, M.Context, M._PathDirection, M._PathRelation, O.Style, X.ParsedPath, X.PathException, F.CssMediaQuery, F._SingletonCssMediaQueryMergeResult, F.MediaQuerySuccessfulMergeResult, B.AstNode, F.ModifiableCssValue, F.CssValue, B._FakeAstNode, Z.Argument, B.ArgumentDeclaration, X.ArgumentInvocation, V.AtRootQuery, Z.ConfiguredVariable, V.BinaryOperationExpression, V.BinaryOperator, Z.BooleanExpression, V.CalculationExpression, K.ColorExpression, F.FunctionExpression, L.IfExpression, N.InterpolatedFunctionExpression, D.ListExpression, A.MapExpression, O.NullExpression, T.NumberExpression, T.ParenthesizedExpression, T.SelectorExpression, D.StringExpression, X.UnaryOperationExpression, X.UnaryOperator, F.ValueExpression, S.VariableExpression, B.DynamicImport, Q.StaticImport, X.Interpolation, M.ParentStatement, Q.ContentRule, Q.DebugRule, D.ErrorRule, X.ExtendRule, L.ForwardRule, V.IfRule, V.IfRuleClause, B.ImportRule, A.IncludeRule, L.LoudComment, A.StatementSearchVisitor, B.ReturnRule, B.SilentComment, T.UseRule, Z.VariableDeclaration, Y.WarnRule, Y.SupportsAnything, L.SupportsDeclaration, F.SupportsFunction, X.SupportsInterpolation, M.SupportsNegation, U.SupportsOperation, T.Selector, N.AttributeOperator, S.Combinator, D.QualifiedName, Q.AsyncEnvironment, Q._EnvironmentModule0, O.AsyncImportCache, S.AsyncBuiltInCallable, Q.BuiltInCallable, L.PlainCssCallable, E.UserDefinedCallable, U.CompileResult, A.Configuration, Z.ConfiguredValue, O.Environment, O._EnvironmentModule, G.SourceSpanException, E.SassScriptException, B.ExecutableOptions, B.UsageException, A._Watcher, F.EmptyExtensionStore, S.Extension, S.Extender, X.ExtensionStore, L.ExtendMode, R.ImportCache, B.AsyncImporter, E.ImporterResult, Z.InterpolationBuffer, B.FileSystemException, B.Stderr, F._QuietLogger, S.StderrLogger, Y.TerseLogger, T.TrackingLogger, Q.BuiltInModule, R.ForwardedModuleView, B.ShadowedModuleView, G.Parser, M.StylesheetGraph, M.StylesheetNode, M.Syntax, U.MultiDirWatcher, N.NoSourceMapBuffer, D.SourceMapBuffer, F.Value, V.CalculationOperation, V.CalculationOperator, V.CalculationInterpolation, D.ListSeparator, E._EvaluateVisitor0, E._ImportedCssVisitor0, E.EvaluateResult, E._EvaluationContext0, E._ArgumentResults0, E._LoadedStylesheet0, V._CloneCssVisitor, R.Evaluator, R._EvaluateVisitor, R._ImportedCssVisitor, R._EvaluationContext, R._ArgumentResults, R._LoadedStylesheet, D.RecursiveStatementVisitor, N._SerializeVisitor, N.OutputStyle, N.LineFeed, N.SerializeResult, L.Entry, T.Mapping, T.TargetLineEntry, T.TargetEntry, Y.SourceFile, D.SourceLocationMixin, Y.SourceSpanMixin, U.Highlighter, U._Highlight, U._Line, V.SourceLocation, U.Chain, A.Frame, T.LazyTrace, Y.Trace, N.UnparsedFrame, X.StringScanner, S._SpanScannerState, A.AsciiGlyphSet, K.UnicodeGlyphSet, S.Tuple2, S.Tuple3, S.Tuple4, E.WatchEvent, E.ChangeType, Y.SupportsAnything0, Z.Argument0, B.ArgumentDeclaration0, X.ArgumentInvocation0, F.Value0, B.AsyncImporter0, S.AsyncBuiltInCallable0, Q.AsyncEnvironment0, Q._EnvironmentModule2, E._EvaluateVisitor2, E._ImportedCssVisitor2, E.EvaluateResult0, E._EvaluationContext2, E._ArgumentResults2, E._LoadedStylesheet2, O.AsyncImportCache0, G.Parser1, V.AtRootQuery0, M.ParentStatement0, B.AstNode0, T.Selector0, N.AttributeOperator0, V.BinaryOperationExpression0, V.BinaryOperator0, Z.BooleanExpression0, Q.BuiltInCallable0, Q.BuiltInModule0, V.CalculationExpression0, V.CalculationOperation0, V.CalculationOperator0, V.CalculationInterpolation0, V._CloneCssVisitor0, K.ColorExpression0, U.CompileResult0, S.Combinator0, A.Configuration0, Z.ConfiguredValue0, Z.ConfiguredVariable0, Q.ContentRule0, Q.DebugRule0, L.SupportsDeclaration0, B.DynamicImport0, F.EmptyExtensionStore0, O.Environment0, O._EnvironmentModule1, D.ErrorRule0, R._EvaluateVisitor1, R._ImportedCssVisitor1, R._EvaluationContext1, R._ArgumentResults1, R._LoadedStylesheet1, E.SassScriptException0, X.ExtendRule0, S.Extension0, S.Extender0, X.ExtensionStore0, L.ForwardRule0, R.ForwardedModuleView0, F.FunctionExpression0, F.SupportsFunction0, L.IfExpression0, V.IfRule0, V.IfRuleClause0, F.NodeImporter, R.ImportCache0, B.ImportRule0, A.IncludeRule0, N.InterpolatedFunctionExpression0, X.Interpolation0, X.SupportsInterpolation0, Z.InterpolationBuffer0, D.ListExpression0, D.ListSeparator0, F._QuietLogger0, L.LoudComment0, A.MapExpression0, F.CssMediaQuery0, F._SingletonCssMediaQueryMergeResult0, F.MediaQuerySuccessfulMergeResult0, A.StatementSearchVisitor0, L.ExtendMode0, M.SupportsNegation0, N.NoSourceMapBuffer0, B._FakeAstNode0, B.FileSystemException0, B.Stderr0, D.NodeToDartLogger, O.NullExpression0, T.NumberExpression0, U.SupportsOperation0, T.ParenthesizedExpression0, L.PlainCssCallable0, D.QualifiedName0, E.ImporterResult0, B.ReturnRule0, T.SelectorExpression0, N._SerializeVisitor0, N.OutputStyle0, N.LineFeed0, N.SerializeResult0, B.ShadowedModuleView0, B.SilentComment0, D.SourceMapBuffer0, Q.StaticImport0, S.StderrLogger0, D.StringExpression0, M.Syntax0, Y.TerseLogger0, X.UnaryOperationExpression0, X.UnaryOperator0, T.UseRule0, E.UserDefinedCallable0, F.CssValue0, F.ValueExpression0, F.ModifiableCssValue0, S.VariableExpression0, Z.VariableDeclaration0, Y.WarnRule0]);
94503
+ _inheritMany(P.Object, [H.JS_CONST, J.Interceptor, J.ArrayIterator, P.Iterable, H.CastIterator, H.Closure, P.MapMixin, P.Error, P._ListBase_Object_ListMixin, H.ListIterator, P.Iterator, H.ExpandIterator, H.EmptyIterator, H.FollowedByIterator, H.WhereTypeIterator, H.FixedLengthListMixin, H.UnmodifiableListMixin, H.Symbol, P.MapView, H.ConstantMap, H.JSInvocationMirror, H.TypeErrorDecoder, H.NullThrownFromJavaScriptException, H.ExceptionAndStackTrace, H._StackTrace, H._Required, H.LinkedHashMapCell, H.LinkedHashMapKeyIterator, H.JSSyntaxRegExp, H._MatchImplementation, H._AllMatchesIterator, H.StringMatch, H._StringAllMatchesIterator, H._Cell, H.Rti, H._FunctionParameters, H._Type, P._TimerImpl, P._AsyncAwaitCompleter, P._IterationMarker, P._SyncStarIterator, P.AsyncError, P._Completer, P._FutureListener, P._Future, P._AsyncCallbackEntry, P.Stream, P.StreamTransformerBase, P._StreamController, P._SyncStreamControllerDispatch, P._AsyncStreamControllerDispatch, P._BufferingStreamSubscription, P._AddStreamState, P._DelayedEvent, P._DelayedDone, P._PendingEvents, P._StreamIterator, P._ZoneFunction, P._RunNullaryZoneFunction, P._RunUnaryZoneFunction, P._RunBinaryZoneFunction, P._RegisterNullaryZoneFunction, P._RegisterUnaryZoneFunction, P._RegisterBinaryZoneFunction, P._ZoneSpecification, P._ZoneDelegate, P._Zone, P._HashMapKeyIterator, P.__SetBase_Object_SetMixin, P._LinkedHashSetCell, P._LinkedHashSetIterator, P.ListMixin, P._MapBaseValueIterator, P._UnmodifiableMapMixin, P._ListQueueIterator, P.SetMixin, P._UnmodifiableSetMixin, P.Codec, P._Base64Encoder, P.ChunkedConversionSink, P._JsonStringifier, P.StringConversionSinkMixin, P._Utf8Encoder, P._Utf8Decoder, P.DateTime, P.Duration, P.OutOfMemoryError, P.StackOverflowError, P._Exception, P.FormatException, P.Expando, P.MapEntry, P.Null, P._StringStackTrace, P.RuneIterator, P.StringBuffer, P._Uri, P.UriData, P._SimpleUri, P._JSRandom, N.ArgParser, V.ArgResults, G.Option, G.OptionType, G.Parser0, G._Usage, V.ErrorResult, F.ValueResult, Y.StreamCompleter, L.StreamGroup, L._StreamGroupState, G.StreamQueue, G._NextRequest, Q.Repl, B.ReplAdapter, U.DefaultEquality, U.IterableEquality, U.ListEquality, U._MapEntry, U.MapEquality, Q._QueueList_Object_ListMixin, M._DelegatingIterableBase, L.UnmodifiableSetMixin, M.Context, M._PathDirection, M._PathRelation, O.Style, X.ParsedPath, X.PathException, F.CssMediaQuery, F._SingletonCssMediaQueryMergeResult, F.MediaQuerySuccessfulMergeResult, B.AstNode, F.ModifiableCssValue, F.CssValue, B._FakeAstNode, Z.Argument, B.ArgumentDeclaration, X.ArgumentInvocation, V.AtRootQuery, Z.ConfiguredVariable, V.BinaryOperationExpression, V.BinaryOperator, Z.BooleanExpression, V.CalculationExpression, K.ColorExpression, F.FunctionExpression, L.IfExpression, N.InterpolatedFunctionExpression, D.ListExpression, A.MapExpression, O.NullExpression, T.NumberExpression, T.ParenthesizedExpression, T.SelectorExpression, D.StringExpression, X.UnaryOperationExpression, X.UnaryOperator, F.ValueExpression, S.VariableExpression, B.DynamicImport, Q.StaticImport, X.Interpolation, M.ParentStatement, Q.ContentRule, Q.DebugRule, D.ErrorRule, X.ExtendRule, L.ForwardRule, V.IfRule, V.IfRuleClause, B.ImportRule, A.IncludeRule, L.LoudComment, A.StatementSearchVisitor, B.ReturnRule, B.SilentComment, T.UseRule, Z.VariableDeclaration, Y.WarnRule, Y.SupportsAnything, L.SupportsDeclaration, F.SupportsFunction, X.SupportsInterpolation, M.SupportsNegation, U.SupportsOperation, T.Selector, N.AttributeOperator, S.Combinator, D.QualifiedName, Q.AsyncEnvironment, Q._EnvironmentModule0, O.AsyncImportCache, S.AsyncBuiltInCallable, Q.BuiltInCallable, L.PlainCssCallable, E.UserDefinedCallable, U.CompileResult, A.Configuration, Z.ConfiguredValue, O.Environment, O._EnvironmentModule, G.SourceSpanException, E.SassScriptException, B.ExecutableOptions, B.UsageException, A._Watcher, F.EmptyExtensionStore, S.Extension, S.Extender, X.ExtensionStore, L.ExtendMode, R.ImportCache, B.AsyncImporter, E.ImporterResult, Z.InterpolationBuffer, B.FileSystemException, B.Stderr, F._QuietLogger, S.StderrLogger, Y.TerseLogger, T.TrackingLogger, Q.BuiltInModule, R.ForwardedModuleView, B.ShadowedModuleView, G.Parser, M.StylesheetGraph, M.StylesheetNode, M.Syntax, U.MultiDirWatcher, N.NoSourceMapBuffer, D.SourceMapBuffer, F.Value, V.CalculationOperation, V.CalculationOperator, V.CalculationInterpolation, D.ListSeparator, E._EvaluateVisitor0, E._ImportedCssVisitor0, E.EvaluateResult, E._EvaluationContext0, E._ArgumentResults0, E._LoadedStylesheet0, V._CloneCssVisitor, R.Evaluator, R._EvaluateVisitor, R._ImportedCssVisitor, R._EvaluationContext, R._ArgumentResults, R._LoadedStylesheet, D.RecursiveStatementVisitor, N._SerializeVisitor, N.OutputStyle, N.LineFeed, N.SerializeResult, L.Entry, T.Mapping, T.TargetLineEntry, T.TargetEntry, Y.SourceFile, D.SourceLocationMixin, Y.SourceSpanMixin, U.Highlighter, U._Highlight, U._Line, V.SourceLocation, U.Chain, A.Frame, T.LazyTrace, Y.Trace, N.UnparsedFrame, X.StringScanner, S._SpanScannerState, A.AsciiGlyphSet, K.UnicodeGlyphSet, S.Tuple2, S.Tuple3, S.Tuple4, E.WatchEvent, E.ChangeType, Y.SupportsAnything0, Z.Argument0, B.ArgumentDeclaration0, X.ArgumentInvocation0, F.Value0, B.AsyncImporter0, S.AsyncBuiltInCallable0, Q.AsyncEnvironment0, Q._EnvironmentModule2, E._EvaluateVisitor2, E._ImportedCssVisitor2, E.EvaluateResult0, E._EvaluationContext2, E._ArgumentResults2, E._LoadedStylesheet2, O.AsyncImportCache0, G.Parser1, V.AtRootQuery0, M.ParentStatement0, B.AstNode0, T.Selector0, N.AttributeOperator0, V.BinaryOperationExpression0, V.BinaryOperator0, Z.BooleanExpression0, Q.BuiltInCallable0, Q.BuiltInModule0, V.CalculationExpression0, V.CalculationOperation0, V.CalculationOperator0, V.CalculationInterpolation0, V._CloneCssVisitor0, K.ColorExpression0, U.CompileResult0, S.Combinator0, A.Configuration0, Z.ConfiguredValue0, Z.ConfiguredVariable0, Q.ContentRule0, Q.DebugRule0, L.SupportsDeclaration0, B.DynamicImport0, F.EmptyExtensionStore0, O.Environment0, O._EnvironmentModule1, D.ErrorRule0, R._EvaluateVisitor1, R._ImportedCssVisitor1, R._EvaluationContext1, R._ArgumentResults1, R._LoadedStylesheet1, E.SassScriptException0, X.ExtendRule0, S.Extension0, S.Extender0, X.ExtensionStore0, L.ForwardRule0, R.ForwardedModuleView0, F.FunctionExpression0, F.SupportsFunction0, L.IfExpression0, V.IfRule0, V.IfRuleClause0, F.NodeImporter, R.ImportCache0, B.ImportRule0, A.IncludeRule0, N.InterpolatedFunctionExpression0, X.Interpolation0, X.SupportsInterpolation0, Z.InterpolationBuffer0, D.ListExpression0, D.ListSeparator0, F._QuietLogger0, L.LoudComment0, A.MapExpression0, F.CssMediaQuery0, F._SingletonCssMediaQueryMergeResult0, F.MediaQuerySuccessfulMergeResult0, A.StatementSearchVisitor0, L.ExtendMode0, M.SupportsNegation0, N.NoSourceMapBuffer0, B._FakeAstNode0, B.FileSystemException0, B.Stderr0, D.NodeToDartLogger, O.NullExpression0, T.NumberExpression0, U.SupportsOperation0, T.ParenthesizedExpression0, L.PlainCssCallable0, D.QualifiedName0, E.ImporterResult0, B.ReturnRule0, T.SelectorExpression0, N._SerializeVisitor0, N.OutputStyle0, N.LineFeed0, N.SerializeResult0, B.ShadowedModuleView0, B.SilentComment0, D.SourceMapBuffer0, Q.StaticImport0, S.StderrLogger0, D.StringExpression0, M.Syntax0, Y.TerseLogger0, X.UnaryOperationExpression0, X.UnaryOperator0, T.UseRule0, E.UserDefinedCallable0, F.CssValue0, F.ValueExpression0, F.ModifiableCssValue0, S.VariableExpression0, Z.VariableDeclaration0, Y.WarnRule0]);
94125
94504
  _inheritMany(J.Interceptor, [J.JSBool, J.JSNull, J.JavaScriptObject, J.JSArray, J.JSNumber, J.JSString, H.NativeTypedData]);
94126
- _inheritMany(J.JavaScriptObject, [J.PlainJavaScriptObject, J.UnknownJavaScriptObject, J.JavaScriptFunction, B.Stdin, B.Stdout, B.ReadlineModule, B.ReadlineOptions, B.ReadlineInterface, V.BufferModule, V.BufferConstants, V.Buffer, F.ConsoleModule, F.Console, F.EventEmitter, D.FS, D.FSConstants, D.FSWatcher, D.ReadStream, D.ReadStreamOptions, D.WriteStream, D.WriteStreamOptions, D.FileOptions, D.StatOptions, D.MkdirOptions, D.RmdirOptions, D.WatchOptions, D.WatchFileOptions, D.Stats, E.Promise, E.Date, E.JsError, E.Atomics, Y.Modules, Y.Module1, Y.Net, Y.Socket, Y.NetAddress, Y.NetServer, X.NodeJsError, X.Process, X.CPUUsage, X.Release, D.StreamModule, D.Readable, D.Writable, D.Duplex, D.Transform, D.WritableOptions, D.ReadableOptions, L.Immediate, L.Timeout, N.TTY, M.Util, T.JSArray0, Y.Chokidar, Y.ChokidarOptions, Y.ChokidarWatcher, F.JSFunction, F.NodeImporterResult, Z.RenderContext, Z.RenderContextOptions, Z.RenderContextResult, Z.RenderContextResultStats, F.JSUrl, B._PropertyDescriptor, T.JSArray1, Y.Chokidar0, Y.ChokidarOptions0, Y.ChokidarWatcher0, K._NodeSassColor, U.CompileOptions, U.NodeCompileResult, E._NodeException, D.Exports, D.LoggerNamespace, E.FiberClass, E.Fiber, F.JSFunction0, M.NodeImporter0, M.CanonicalizeOptions, M.NodeImporterResult0, F.NodeImporterResult1, D._NodeSassList, F.NodeLogger, F.WarnOptions, F.DebugOptions, A._NodeSassMap, T._NodeSassNumber, Z.RenderContext0, Z.RenderContextOptions0, Z.RenderContextResult0, Z.RenderContextResultStats0, R.RenderOptions, U.RenderResult, U.RenderResultStats, R._Exports, D._NodeSassString, G.Types, F.JSUrl0, B._PropertyDescriptor0]);
94505
+ _inheritMany(J.JavaScriptObject, [J.PlainJavaScriptObject, J.UnknownJavaScriptObject, J.JavaScriptFunction, B.Stdin, B.Stdout, B.ReadlineModule, B.ReadlineOptions, B.ReadlineInterface, V.BufferModule, V.BufferConstants, V.Buffer, F.ConsoleModule, F.Console, F.EventEmitter, D.FS, D.FSConstants, D.FSWatcher, D.ReadStream, D.ReadStreamOptions, D.WriteStream, D.WriteStreamOptions, D.FileOptions, D.StatOptions, D.MkdirOptions, D.RmdirOptions, D.WatchOptions, D.WatchFileOptions, D.Stats, E.Promise, E.Date, E.JsError, E.Atomics, Y.Modules, Y.Module1, Y.Net, Y.Socket, Y.NetAddress, Y.NetServer, X.NodeJsError, X.Process, X.CPUUsage, X.Release, D.StreamModule, D.Readable, D.Writable, D.Duplex, D.Transform, D.WritableOptions, D.ReadableOptions, L.Immediate, L.Timeout, N.TTY, M.Util, T.JSArray0, Y.Chokidar, Y.ChokidarOptions, Y.ChokidarWatcher, F.JSFunction, F.NodeImporterResult, Z.RenderContext, Z.RenderContextOptions, Z.RenderContextResult, Z.RenderContextResultStats, F.JSUrl, B._PropertyDescriptor, T.JSArray1, Y.Chokidar0, Y.ChokidarOptions0, Y.ChokidarWatcher0, K._NodeSassColor, U.CompileOptions, U.NodeCompileResult, D.Exports, D.LoggerNamespace, E.FiberClass, E.Fiber, F.JSFunction0, M.NodeImporter0, M.CanonicalizeOptions, M.NodeImporterResult0, F.NodeImporterResult1, D._NodeSassList, F.NodeLogger, F.WarnOptions, F.DebugOptions, A._NodeSassMap, T._NodeSassNumber, Z.RenderContext0, Z.RenderContextOptions0, Z.RenderContextResult0, Z.RenderContextResultStats0, R.RenderOptions, U.RenderResult, U.RenderResultStats, R._Exports, D._NodeSassString, G.Types, F.JSUrl0, B._PropertyDescriptor0]);
94127
94506
  _inherit(J.JSUnmodifiableArray, J.JSArray);
94128
94507
  _inheritMany(J.JSNumber, [J.JSInt, J.JSNumNotInt]);
94129
94508
  _inheritMany(P.Iterable, [H._CastIterableBase, H.EfficientLengthIterable, H.MappedIterable, H.WhereIterable, H.ExpandIterable, H.TakeIterable, H.SkipIterable, H.SkipWhileIterable, H.FollowedByIterable, H.WhereTypeIterable, H._ConstantMapKeyIterable, P.IterableBase, H._StringAllMatchesIterable, P.Runes]);
@@ -94256,6 +94635,7 @@ self.readline = _cli_pkg_requires.readline;
94256
94635
  _inheritMany(M.CallableDeclaration0, [Y.ContentBlock0, M.FunctionRule0, T.MixinRule0]);
94257
94636
  _inheritMany(V.StylesheetParser0, [L.ScssParser0, U.SassParser0]);
94258
94637
  _inherit(Q.CssParser0, L.ScssParser0);
94638
+ _inherit(E._NodeException, E.JsError);
94259
94639
  _inheritMany(E.SassException0, [E.MultiSpanSassException0, E.SassRuntimeException0, E.SassFormatException0]);
94260
94640
  _inherit(E.MultiSpanSassRuntimeException0, E.MultiSpanSassException0);
94261
94641
  _inherit(E.MultiSpanSassScriptException0, E.SassScriptException0);
@@ -94293,7 +94673,7 @@ self.readline = _cli_pkg_requires.readline;
94293
94673
  arrayRti: Symbol("$ti")
94294
94674
  };
94295
94675
  H._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","JSUrl":"JavaScriptObject","_PropertyDescriptor":"JavaScriptObject","JSArray1":"JavaScriptObject","Chokidar0":"JavaScriptObject","ChokidarOptions0":"JavaScriptObject","ChokidarWatcher0":"JavaScriptObject","_NodeSassColor":"JavaScriptObject","CompileOptions":"JavaScriptObject","CompileStringOptions":"JavaScriptObject","NodeCompileResult":"JavaScriptObject","_NodeException":"JavaScriptObject","Exports":"JavaScriptObject","LoggerNamespace":"JavaScriptObject","Fiber":"JavaScriptObject","FiberClass":"JavaScriptObject","JSFunction0":"JavaScriptObject","NodeImporter0":"JavaScriptObject","CanonicalizeOptions":"JavaScriptObject","NodeImporterResult0":"JavaScriptObject","NodeImporterResult1":"JavaScriptObject","_NodeSassList":"JavaScriptObject","NodeLogger":"JavaScriptObject","WarnOptions":"JavaScriptObject","DebugOptions":"JavaScriptObject","_NodeSassMap":"JavaScriptObject","_NodeSassNumber":"JavaScriptObject","RenderContext0":"JavaScriptObject","RenderContextOptions0":"JavaScriptObject","RenderContextResult0":"JavaScriptObject","RenderContextResultStats0":"JavaScriptObject","RenderOptions":"JavaScriptObject","RenderResult":"JavaScriptObject","RenderResultStats":"JavaScriptObject","_Exports":"JavaScriptObject","_NodeSassString":"JavaScriptObject","Types":"JavaScriptObject","JSUrl0":"JavaScriptObject","_PropertyDescriptor0":"JavaScriptObject","JSBool":{"bool":[]},"JSNull":{"Null":[]},"JavaScriptObject":{"JsSystemError":[],"_NodeSassColor":[],"Fiber":[],"JSFunction0":[],"NodeImporterResult1":[],"_NodeSassList":[],"_NodeSassMap":[],"_NodeSassNumber":[],"RenderContextOptions0":[],"RenderOptions":[],"RenderResult":[],"_NodeSassString":[],"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"]},"_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"},"_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":[]},"AsyncBuiltInCallable0":{"AsyncCallable0":[]},"_EnvironmentModule2":{"Module0":["AsyncCallable0"]},"_EvaluationContext2":{"EvaluationContext0":[]},"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":[]},"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":[]},"_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":[]},"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":[]}}'));
94296
- H._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"ArrayIterator":1,"ListIterator":1,"MappedIterator":2,"WhereIterator":1,"ExpandIterator":2,"TakeIterator":1,"SkipIterator":1,"SkipWhileIterator":1,"EmptyIterator":1,"FollowedByIterator":1,"FixedLengthListMixin":1,"UnmodifiableListMixin":1,"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"LinkedHashMapKeyIterator":1,"NativeTypedArray":1,"EventSink":1,"_SyncStarIterator":1,"StreamTransformerBase":2,"_SyncStreamControllerDispatch":1,"_AsyncStreamControllerDispatch":1,"_AddStreamState":1,"_StreamControllerAddStreamState":1,"_DelayedEvent":1,"_DelayedData":1,"_PendingEvents":1,"_StreamImplEvents":1,"_StreamIterator":1,"_ZoneFunction":1,"Queue":1,"_HashMapKeyIterator":1,"_LinkedHashSetIterator":1,"IterableBase":1,"ListBase":1,"MapBase":2,"UnmodifiableMapBase":2,"_MapBaseValueIterator":2,"_UnmodifiableMapMixin":2,"MapView":2,"_ListQueueIterator":1,"_UnmodifiableSetMixin":1,"_ListBase_Object_ListMixin":1,"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":2,"__SetBase_Object_SetMixin":1,"__UnmodifiableSet__SetBase__UnmodifiableSetMixin":1,"ChunkedConversionSink":1,"_StringSinkConversionSink":1,"Iterator":1,"_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}'));
94676
+ H._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}'));
94297
94677
  var string$ = {
94298
94678
  x0a_BUG_: "\n\nBUG: This should include a source span!",
94299
94679
  x0a_More: "\n\nMore info and automated migrator: https://sass-lang.com/d/slash-div",
@@ -94353,6 +94733,7 @@ self.readline = _cli_pkg_requires.readline;
94353
94733
  Entrie: "Entries may not be removed from MergedMapView.",
94354
94734
  Error_: "Error handler must accept one Object or one Object and a StackTrace as arguments, and return a value of the returned future's type",
94355
94735
  Evalua: "Evaluation handles @include and its content block together.",
94736
+ Expand: "Expandos are not allowed on strings, numbers, booleans or null",
94356
94737
  Expectn: "Expected number, variable, function, or calculation.",
94357
94738
  Expectv: "Expected variable, mixin, or function name",
94358
94739
  Functi: "Functions may not be declared in control directives.",
@@ -95867,6 +96248,9 @@ self.readline = _cli_pkg_requires.readline;
95867
96248
  _lazyFinal($, "_noSourceUrl", "$get$_noSourceUrl", function() {
95868
96249
  return P.Uri_parse("-");
95869
96250
  });
96251
+ _lazyFinal($, "_traces", "$get$_traces", function() {
96252
+ return P.Expando$();
96253
+ });
95870
96254
  _lazyFinal($, "_typesByUnit", "$get$_typesByUnit", function() {
95871
96255
  var t2, t3, t4,
95872
96256
  t1 = type$.String;
@@ -96355,6 +96739,9 @@ self.readline = _cli_pkg_requires.readline;
96355
96739
  _lazyFinal($, "_noSourceUrl0", "$get$_noSourceUrl0", function() {
96356
96740
  return P.Uri_parse("-");
96357
96741
  });
96742
+ _lazyFinal($, "_traces0", "$get$_traces0", function() {
96743
+ return P.Expando$();
96744
+ });
96358
96745
  })();
96359
96746
  (function nativeSupport() {
96360
96747
  !function() {