sass 1.56.0 → 1.56.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +26 -0
- package/package.json +1 -1
- package/sass.dart.js +242 -193
package/LICENSE
CHANGED
|
@@ -1111,6 +1111,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
1111
1111
|
THE SOFTWARE.
|
|
1112
1112
|
|
|
1113
1113
|
|
|
1114
|
+
--------------------------------------------------------------------------------
|
|
1115
|
+
|
|
1116
|
+
pointycastle license:
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
Copyright (c) 2000 - 2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org)
|
|
1120
|
+
|
|
1121
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1122
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
1123
|
+
the Software without restriction, including without limitation the rights to
|
|
1124
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
1125
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
1126
|
+
so, subject to the following conditions:
|
|
1127
|
+
|
|
1128
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1129
|
+
copies or substantial portions of the Software.
|
|
1130
|
+
|
|
1131
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1132
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
1133
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
1134
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
1135
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
1136
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
|
|
1114
1140
|
--------------------------------------------------------------------------------
|
|
1115
1141
|
|
|
1116
1142
|
pub_api_client license:
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":"https://github.com/sass/dart-sass/issues","homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"https://github.com/sass/dart-sass"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.56.
|
|
1
|
+
{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":"https://github.com/sass/dart-sass/issues","homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"https://github.com/sass/dart-sass"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","default":"./sass.default.dart.js"},"version":"1.56.2","bin":{"sass":"sass.js"},"main":"sass.default.dart.js"}
|
package/sass.dart.js
CHANGED
|
@@ -128,7 +128,7 @@ self.immutable = require("immutable");
|
|
|
128
128
|
self.fs = require("fs");
|
|
129
129
|
self.chokidar = _cli_pkg_requires.chokidar;
|
|
130
130
|
self.readline = _cli_pkg_requires.readline;
|
|
131
|
-
// Generated by dart2js (NullSafetyMode.sound, trust primitives, omit checks, lax runtime type, deferred-serialization, csp), the Dart to JavaScript compiler version: 2.18.
|
|
131
|
+
// Generated by dart2js (NullSafetyMode.sound, trust primitives, omit checks, lax runtime type, deferred-serialization, csp), the Dart to JavaScript compiler version: 2.18.5.
|
|
132
132
|
// The code supports the following hooks:
|
|
133
133
|
// dartPrint(message):
|
|
134
134
|
// if this function is defined it is called instead of the Dart [print]
|
|
@@ -8572,7 +8572,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8572
8572
|
compileAsync$body(path, charset, importCache, logger, quietDeps, sourceMap, style, syntax, verbose) {
|
|
8573
8573
|
var $async$goto = 0,
|
|
8574
8574
|
$async$completer = A._makeAsyncAwaitCompleter(type$.CompileResult),
|
|
8575
|
-
$async$returnValue, t1, terseLogger, t2, stylesheet, result;
|
|
8575
|
+
$async$returnValue, t1, terseLogger, t2, t3, t0, stylesheet, result;
|
|
8576
8576
|
var $async$compileAsync = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
8577
8577
|
if ($async$errorCode === 1)
|
|
8578
8578
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -8591,28 +8591,38 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8591
8591
|
break;
|
|
8592
8592
|
case 3:
|
|
8593
8593
|
// then
|
|
8594
|
-
t1 =
|
|
8595
|
-
|
|
8594
|
+
t1 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
8595
|
+
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
8596
|
+
t2 = $.$get$context();
|
|
8597
|
+
t3 = A._realCasePath(A.absolute(t2.normalize$1(path), null, null, null, null, null, null, null, null, null, null, null, null, null, null));
|
|
8598
|
+
t0 = t3;
|
|
8599
|
+
t3 = t2;
|
|
8600
|
+
t2 = t0;
|
|
8601
|
+
} else {
|
|
8602
|
+
t2 = $.$get$context();
|
|
8603
|
+
t3 = t2.canonicalize$1(0, path);
|
|
8604
|
+
t0 = t3;
|
|
8605
|
+
t3 = t2;
|
|
8606
|
+
t2 = t0;
|
|
8607
|
+
}
|
|
8596
8608
|
$async$goto = 6;
|
|
8597
|
-
return A._asyncAwait(importCache.importCanonical$3$originalUrl(new A.FilesystemImporter(
|
|
8609
|
+
return A._asyncAwait(importCache.importCanonical$3$originalUrl(new A.FilesystemImporter(t1), t3.toUri$1(t2), t3.toUri$1(path)), $async$compileAsync);
|
|
8598
8610
|
case 6:
|
|
8599
8611
|
// returning from await.
|
|
8600
|
-
|
|
8601
|
-
|
|
8602
|
-
stylesheet =
|
|
8612
|
+
t3 = $async$result;
|
|
8613
|
+
t3.toString;
|
|
8614
|
+
stylesheet = t3;
|
|
8603
8615
|
// goto join
|
|
8604
8616
|
$async$goto = 4;
|
|
8605
8617
|
break;
|
|
8606
8618
|
case 5:
|
|
8607
8619
|
// else
|
|
8608
8620
|
t1 = A.readFile(path);
|
|
8609
|
-
|
|
8610
|
-
stylesheet = A.Stylesheet_Stylesheet$parse(t1, syntax, logger, t2.toUri$1(path));
|
|
8611
|
-
t1 = t2;
|
|
8621
|
+
stylesheet = A.Stylesheet_Stylesheet$parse(t1, syntax, logger, $.$get$context().toUri$1(path));
|
|
8612
8622
|
case 4:
|
|
8613
8623
|
// join
|
|
8614
8624
|
$async$goto = 7;
|
|
8615
|
-
return A._asyncAwait(A._compileStylesheet0(stylesheet, logger, importCache, null, new A.FilesystemImporter(
|
|
8625
|
+
return A._asyncAwait(A._compileStylesheet0(stylesheet, logger, importCache, null, new A.FilesystemImporter(A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null)), null, style, true, null, null, quietDeps, sourceMap, charset), $async$compileAsync);
|
|
8616
8626
|
case 7:
|
|
8617
8627
|
// returning from await.
|
|
8618
8628
|
result = $async$result;
|
|
@@ -8865,7 +8875,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8865
8875
|
t1 = A._setArrayType([], type$.JSArray_AsyncImporter_2);
|
|
8866
8876
|
for (t2 = J.get$iterator$ax(loadPaths); t2.moveNext$0();) {
|
|
8867
8877
|
t3 = t2.get$current(t2);
|
|
8868
|
-
t1.push(new A.FilesystemImporter($.$get$context().absolute$
|
|
8878
|
+
t1.push(new A.FilesystemImporter($.$get$context().absolute$15(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
8869
8879
|
}
|
|
8870
8880
|
if (sassPath != null) {
|
|
8871
8881
|
t2 = sassPath.split(J.$eq$(J.get$platform$x(self.process), "win32") ? ";" : ":");
|
|
@@ -8873,7 +8883,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8873
8883
|
_i = 0;
|
|
8874
8884
|
for (; _i < t3; ++_i) {
|
|
8875
8885
|
path = t2[_i];
|
|
8876
|
-
t1.push(new A.FilesystemImporter($.$get$context().absolute$
|
|
8886
|
+
t1.push(new A.FilesystemImporter($.$get$context().absolute$15(path, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
8877
8887
|
}
|
|
8878
8888
|
}
|
|
8879
8889
|
return t1;
|
|
@@ -8931,15 +8941,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
8931
8941
|
this.callback = t0;
|
|
8932
8942
|
},
|
|
8933
8943
|
BuiltInCallable$function($name, $arguments, callback, url) {
|
|
8934
|
-
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.
|
|
8944
|
+
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value));
|
|
8935
8945
|
},
|
|
8936
8946
|
BuiltInCallable$mixin($name, $arguments, callback, url) {
|
|
8937
|
-
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure(callback), type$.
|
|
8947
|
+
return new A.BuiltInCallable($name, A._setArrayType([new A.Tuple2(A.ScssParser$("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure(callback), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value));
|
|
8938
8948
|
},
|
|
8939
8949
|
BuiltInCallable$overloadedFunction($name, overloads) {
|
|
8940
8950
|
var t2, t3, t4, t5, t6, t7, t8,
|
|
8941
|
-
t1 = A._setArrayType([], type$.
|
|
8942
|
-
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.
|
|
8951
|
+
t1 = A._setArrayType([], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value);
|
|
8952
|
+
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value, t4 = "@function " + $name + "(", t5 = type$.String, t6 = type$.VariableDeclaration; t2.moveNext$0();) {
|
|
8943
8953
|
t7 = t2.get$current(t2);
|
|
8944
8954
|
t8 = A.SpanScanner$(t4 + A.S(t7.key) + ") {", null);
|
|
8945
8955
|
t1.push(new A.Tuple2(new A.ScssParser(A.LinkedHashMap_LinkedHashMap$_empty(t5, t6), t8, B.StderrLogger_false).parseArgumentDeclaration$0(), t7.value, t3));
|
|
@@ -9204,7 +9214,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9204
9214
|
compileStylesheet$body(options, graph, source, destination, ifModified) {
|
|
9205
9215
|
var $async$goto = 0,
|
|
9206
9216
|
$async$completer = A._makeAsyncAwaitCompleter(type$.void),
|
|
9207
|
-
$async$returnValue, $async$handler = 2, $async$currentError, syntax, result, importCache, error, exception, t2, t3, t4, t5, t6, t7, t8, t9, result0, logger, terseLogger, stylesheet, css, buffer, sourceName,
|
|
9217
|
+
$async$returnValue, $async$handler = 2, $async$currentError, syntax, result, importCache, error, exception, t1, t2, t3, t4, t5, t6, t7, t8, t9, result0, logger, terseLogger, stylesheet, t0, css, buffer, sourceName, importer, $async$exception;
|
|
9208
9218
|
var $async$compileStylesheet = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
9209
9219
|
if ($async$errorCode === 1) {
|
|
9210
9220
|
$async$currentError = $async$result;
|
|
@@ -9214,11 +9224,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9214
9224
|
switch ($async$goto) {
|
|
9215
9225
|
case 0:
|
|
9216
9226
|
// Function start
|
|
9217
|
-
|
|
9218
|
-
importer = new A.FilesystemImporter(t1.absolute$7(".", null, null, null, null, null, null));
|
|
9227
|
+
importer = new A.FilesystemImporter(A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null));
|
|
9219
9228
|
if (ifModified)
|
|
9220
9229
|
try {
|
|
9221
|
-
if (source != null && destination != null && !graph.modifiedSince$3(
|
|
9230
|
+
if (source != null && destination != null && !graph.modifiedSince$3($.$get$context().toUri$1(source), A.modificationTime(destination), importer)) {
|
|
9222
9231
|
// goto return
|
|
9223
9232
|
$async$goto = 1;
|
|
9224
9233
|
break;
|
|
@@ -9258,7 +9267,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9258
9267
|
t2 = $async$result;
|
|
9259
9268
|
t3 = syntax;
|
|
9260
9269
|
t4 = A._asBool(t1.$index(0, "quiet")) ? $.$get$Logger_quiet() : new A.StderrLogger(options.get$color());
|
|
9261
|
-
t5 =
|
|
9270
|
+
t5 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
9262
9271
|
t6 = J.$eq$(t1.$index(0, "style"), "compressed") ? B.OutputStyle_1 : B.OutputStyle_0;
|
|
9263
9272
|
t7 = A._asBool(t1.$index(0, "quiet-deps"));
|
|
9264
9273
|
t8 = A._asBool(t1.$index(0, "verbose"));
|
|
@@ -9303,7 +9312,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9303
9312
|
t2 = $async$result;
|
|
9304
9313
|
t3 = syntax;
|
|
9305
9314
|
logger = A._asBool(t1.$index(0, "quiet")) ? $.$get$Logger_quiet() : new A.StderrLogger(options.get$color());
|
|
9306
|
-
t4 =
|
|
9315
|
+
t4 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
9307
9316
|
t5 = J.$eq$(t1.$index(0, "style"), "compressed") ? B.OutputStyle_1 : B.OutputStyle_0;
|
|
9308
9317
|
t6 = A._asBool(t1.$index(0, "quiet-deps"));
|
|
9309
9318
|
t7 = A._asBool(t1.$index(0, "verbose"));
|
|
@@ -9338,20 +9347,30 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9338
9347
|
terseLogger = null;
|
|
9339
9348
|
t5 = t2 == null || t2 === A.Syntax_forPath(source);
|
|
9340
9349
|
if (t5) {
|
|
9341
|
-
t2 =
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9350
|
+
t2 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
9351
|
+
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
9352
|
+
t5 = $.$get$context();
|
|
9353
|
+
t7 = A._realCasePath(A.absolute(t5.normalize$1(source), null, null, null, null, null, null, null, null, null, null, null, null, null, null));
|
|
9354
|
+
t0 = t7;
|
|
9355
|
+
t7 = t5;
|
|
9356
|
+
t5 = t0;
|
|
9357
|
+
} else {
|
|
9358
|
+
t5 = $.$get$context();
|
|
9359
|
+
t7 = t5.canonicalize$1(0, source);
|
|
9360
|
+
t0 = t7;
|
|
9361
|
+
t7 = t5;
|
|
9362
|
+
t5 = t0;
|
|
9363
|
+
}
|
|
9364
|
+
t7 = importCache.importCanonical$3$originalUrl(new A.FilesystemImporter(t2), t7.toUri$1(t5), t7.toUri$1(source));
|
|
9365
|
+
t7.toString;
|
|
9366
|
+
stylesheet = t7;
|
|
9346
9367
|
} else {
|
|
9347
9368
|
t5 = A.readFile(source);
|
|
9348
9369
|
if (t2 == null)
|
|
9349
9370
|
t2 = A.Syntax_forPath(source);
|
|
9350
|
-
|
|
9351
|
-
stylesheet = A.Stylesheet_Stylesheet$parse(t5, t2, logger, t7.toUri$1(source));
|
|
9352
|
-
t2 = t7;
|
|
9371
|
+
stylesheet = A.Stylesheet_Stylesheet$parse(t5, t2, logger, $.$get$context().toUri$1(source));
|
|
9353
9372
|
}
|
|
9354
|
-
result0 = A._compileStylesheet(stylesheet, logger, importCache, null, new A.FilesystemImporter(
|
|
9373
|
+
result0 = A._compileStylesheet(stylesheet, logger, importCache, null, new A.FilesystemImporter(A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null)), null, t3, true, null, null, t4, t6, t1);
|
|
9355
9374
|
if (terseLogger != null)
|
|
9356
9375
|
terseLogger.summarize$1$node(false);
|
|
9357
9376
|
case 17:
|
|
@@ -9559,9 +9578,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
9559
9578
|
}
|
|
9560
9579
|
t2 = t1.get$current(t1);
|
|
9561
9580
|
t4 = $.$get$context();
|
|
9562
|
-
t5 = t4.absolute$
|
|
9581
|
+
t5 = t4.absolute$15(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
9563
9582
|
t6 = t2.key;
|
|
9564
|
-
graph.addCanonical$4$recanonicalize(new A.FilesystemImporter(t5), t4.toUri$1(J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin") ? A._realCasePath(t4.absolute$
|
|
9583
|
+
graph.addCanonical$4$recanonicalize(new A.FilesystemImporter(t5), t4.toUri$1(J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin") ? A._realCasePath(t4.absolute$15(t4.normalize$1(t6), null, null, null, null, null, null, null, null, null, null, null, null, null, null)) : t4.canonicalize$1(0, t6)), t4.toUri$1(t6), false);
|
|
9565
9584
|
$async$goto = 6;
|
|
9566
9585
|
return A._asyncAwait(watcher.compile$3$ifModified(0, t6, t2.value, true), $async$watch);
|
|
9567
9586
|
case 6:
|
|
@@ -11178,7 +11197,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
11178
11197
|
t1 = A._setArrayType([], type$.JSArray_Importer_2);
|
|
11179
11198
|
for (t2 = J.get$iterator$ax(loadPaths); t2.moveNext$0();) {
|
|
11180
11199
|
t3 = t2.get$current(t2);
|
|
11181
|
-
t1.push(new A.FilesystemImporter($.$get$context().absolute$
|
|
11200
|
+
t1.push(new A.FilesystemImporter($.$get$context().absolute$15(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
11182
11201
|
}
|
|
11183
11202
|
if (sassPath != null) {
|
|
11184
11203
|
t2 = sassPath.split(J.$eq$(J.get$platform$x(self.process), "win32") ? ";" : ":");
|
|
@@ -11186,7 +11205,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
11186
11205
|
_i = 0;
|
|
11187
11206
|
for (; _i < t3; ++_i) {
|
|
11188
11207
|
path = t2[_i];
|
|
11189
|
-
t1.push(new A.FilesystemImporter($.$get$context().absolute$
|
|
11208
|
+
t1.push(new A.FilesystemImporter($.$get$context().absolute$15(path, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
11190
11209
|
}
|
|
11191
11210
|
}
|
|
11192
11211
|
return t1;
|
|
@@ -15441,7 +15460,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
15441
15460
|
compileAsync0(path, charset, functions, importCache, indentWidth, lineFeed, logger, nodeImporter, quietDeps, sourceMap, style, syntax, useSpaces, verbose) {
|
|
15442
15461
|
var $async$goto = 0,
|
|
15443
15462
|
$async$completer = A._makeAsyncAwaitCompleter(type$.CompileResult_2),
|
|
15444
|
-
$async$returnValue, terseLogger, t1, t2, t3,
|
|
15463
|
+
$async$returnValue, terseLogger, t1, t2, t3, t4, t0, stylesheet, result;
|
|
15445
15464
|
var $async$compileAsync0 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
15446
15465
|
if ($async$errorCode === 1)
|
|
15447
15466
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -15465,15 +15484,27 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
15465
15484
|
// then
|
|
15466
15485
|
if (importCache == null)
|
|
15467
15486
|
importCache = A.AsyncImportCache$none(logger);
|
|
15468
|
-
t2 =
|
|
15469
|
-
|
|
15487
|
+
t2 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
15488
|
+
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
15489
|
+
t3 = $.$get$context();
|
|
15490
|
+
t4 = A._realCasePath0(A.absolute(t3.normalize$1(path), null, null, null, null, null, null, null, null, null, null, null, null, null, null));
|
|
15491
|
+
t0 = t4;
|
|
15492
|
+
t4 = t3;
|
|
15493
|
+
t3 = t0;
|
|
15494
|
+
} else {
|
|
15495
|
+
t3 = $.$get$context();
|
|
15496
|
+
t4 = t3.canonicalize$1(0, path);
|
|
15497
|
+
t0 = t4;
|
|
15498
|
+
t4 = t3;
|
|
15499
|
+
t3 = t0;
|
|
15500
|
+
}
|
|
15470
15501
|
$async$goto = 6;
|
|
15471
|
-
return A._asyncAwait(importCache.importCanonical$3$originalUrl(new A.FilesystemImporter0(
|
|
15502
|
+
return A._asyncAwait(importCache.importCanonical$3$originalUrl(new A.FilesystemImporter0(t2), t4.toUri$1(t3), t4.toUri$1(path)), $async$compileAsync0);
|
|
15472
15503
|
case 6:
|
|
15473
15504
|
// returning from await.
|
|
15474
|
-
|
|
15475
|
-
|
|
15476
|
-
stylesheet =
|
|
15505
|
+
t4 = $async$result;
|
|
15506
|
+
t4.toString;
|
|
15507
|
+
stylesheet = t4;
|
|
15477
15508
|
// goto join
|
|
15478
15509
|
$async$goto = 4;
|
|
15479
15510
|
break;
|
|
@@ -15481,13 +15512,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
15481
15512
|
// else
|
|
15482
15513
|
t2 = A.readFile0(path);
|
|
15483
15514
|
t3 = syntax == null ? A.Syntax_forPath0(path) : syntax;
|
|
15484
|
-
|
|
15485
|
-
stylesheet = A.Stylesheet_Stylesheet$parse0(t2, t3, logger, t4.toUri$1(path));
|
|
15486
|
-
t2 = t4;
|
|
15515
|
+
stylesheet = A.Stylesheet_Stylesheet$parse0(t2, t3, logger, $.$get$context().toUri$1(path));
|
|
15487
15516
|
case 4:
|
|
15488
15517
|
// join
|
|
15489
15518
|
$async$goto = 7;
|
|
15490
|
-
return A._asyncAwait(A._compileStylesheet2(stylesheet, logger, importCache, nodeImporter, new A.FilesystemImporter0(
|
|
15519
|
+
return A._asyncAwait(A._compileStylesheet2(stylesheet, logger, importCache, nodeImporter, new A.FilesystemImporter0(A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null)), functions, style, useSpaces, indentWidth, lineFeed, quietDeps, sourceMap, charset), $async$compileAsync0);
|
|
15491
15520
|
case 7:
|
|
15492
15521
|
// returning from await.
|
|
15493
15522
|
result = $async$result;
|
|
@@ -15522,7 +15551,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
15522
15551
|
terseLogger = null;
|
|
15523
15552
|
stylesheet = A.Stylesheet_Stylesheet$parse0(source, syntax == null ? B.Syntax_SCSS_scss0 : syntax, logger, url);
|
|
15524
15553
|
$async$goto = 3;
|
|
15525
|
-
return A._asyncAwait(A._compileStylesheet2(stylesheet, logger, importCache, nodeImporter, importer == null ? new A.FilesystemImporter0(
|
|
15554
|
+
return A._asyncAwait(A._compileStylesheet2(stylesheet, logger, importCache, nodeImporter, importer == null ? new A.FilesystemImporter0(A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null)) : importer, functions, style, useSpaces, indentWidth, lineFeed, quietDeps, sourceMap, charset), $async$compileStringAsync0);
|
|
15526
15555
|
case 3:
|
|
15527
15556
|
// returning from await.
|
|
15528
15557
|
result = $async$result;
|
|
@@ -16402,7 +16431,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16402
16431
|
if (loadPaths != null)
|
|
16403
16432
|
for (t2 = J.get$iterator$ax(loadPaths); t2.moveNext$0();) {
|
|
16404
16433
|
t3 = t2.get$current(t2);
|
|
16405
|
-
t1.push(new A.FilesystemImporter0($.$get$context().absolute$
|
|
16434
|
+
t1.push(new A.FilesystemImporter0($.$get$context().absolute$15(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
16406
16435
|
}
|
|
16407
16436
|
if (sassPath != null) {
|
|
16408
16437
|
t2 = sassPath.split(J.$eq$(J.get$platform$x(self.process), "win32") ? ";" : ":");
|
|
@@ -16410,7 +16439,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16410
16439
|
_i = 0;
|
|
16411
16440
|
for (; _i < t3; ++_i) {
|
|
16412
16441
|
path = t2[_i];
|
|
16413
|
-
t1.push(new A.FilesystemImporter0($.$get$context().absolute$
|
|
16442
|
+
t1.push(new A.FilesystemImporter0($.$get$context().absolute$15(path, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
16414
16443
|
}
|
|
16415
16444
|
}
|
|
16416
16445
|
return t1;
|
|
@@ -16553,15 +16582,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
16553
16582
|
this.value = t0;
|
|
16554
16583
|
},
|
|
16555
16584
|
BuiltInCallable$function0($name, $arguments, callback, url) {
|
|
16556
|
-
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.
|
|
16585
|
+
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@function " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), callback, type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
|
|
16557
16586
|
},
|
|
16558
16587
|
BuiltInCallable$mixin0($name, $arguments, callback, url) {
|
|
16559
|
-
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure0(callback), type$.
|
|
16588
|
+
return new A.BuiltInCallable0($name, A._setArrayType([new A.Tuple2(A.ScssParser$0("@mixin " + $name + "(" + $arguments + ") {", null, url).parseArgumentDeclaration$0(), new A.BuiltInCallable$mixin_closure0(callback), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
|
|
16560
16589
|
},
|
|
16561
16590
|
BuiltInCallable$overloadedFunction0($name, overloads) {
|
|
16562
16591
|
var t2, t3, t4, t5, t6, t7, t8,
|
|
16563
|
-
t1 = A._setArrayType([], type$.
|
|
16564
|
-
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.
|
|
16592
|
+
t1 = A._setArrayType([], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2);
|
|
16593
|
+
for (t2 = overloads.get$entries(overloads), t2 = t2.get$iterator(t2), t3 = type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2, t4 = "@function " + $name + "(", t5 = type$.String, t6 = type$.VariableDeclaration_2; t2.moveNext$0();) {
|
|
16565
16594
|
t7 = t2.get$current(t2);
|
|
16566
16595
|
t8 = A.SpanScanner$(t4 + A.S(t7.key) + ") {", null);
|
|
16567
16596
|
t1.push(new A.Tuple2(new A.ScssParser0(A.LinkedHashMap_LinkedHashMap$_empty(t5, t6), t8, B.StderrLogger_false0).parseArgumentDeclaration$0(), t7.value, t3));
|
|
@@ -17622,15 +17651,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
17622
17651
|
this.result = t1;
|
|
17623
17652
|
},
|
|
17624
17653
|
_parseFunctions__closure2: function _parseFunctions__closure2(t0, t1) {
|
|
17625
|
-
this.
|
|
17626
|
-
this.
|
|
17654
|
+
this.callback = t0;
|
|
17655
|
+
this.callable = t1;
|
|
17627
17656
|
},
|
|
17628
17657
|
_parseFunctions__closure3: function _parseFunctions__closure3(t0, t1) {
|
|
17629
|
-
this.
|
|
17630
|
-
this.
|
|
17658
|
+
this.callback = t0;
|
|
17659
|
+
this.callable = t1;
|
|
17631
17660
|
},
|
|
17632
17661
|
compile(path, charset, functions, importCache, indentWidth, lineFeed, logger, nodeImporter, quietDeps, sourceMap, style, syntax, useSpaces, verbose) {
|
|
17633
|
-
var terseLogger, t1, t2, t3,
|
|
17662
|
+
var terseLogger, t1, t2, t3, t4, t0, stylesheet, result, _null = null;
|
|
17634
17663
|
if (!verbose) {
|
|
17635
17664
|
terseLogger = new A.TerseLogger0(A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.int), logger);
|
|
17636
17665
|
logger = terseLogger;
|
|
@@ -17644,19 +17673,29 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
17644
17673
|
if (t2) {
|
|
17645
17674
|
if (importCache == null)
|
|
17646
17675
|
importCache = A.ImportCache$none(logger);
|
|
17647
|
-
t2 =
|
|
17648
|
-
|
|
17649
|
-
|
|
17650
|
-
|
|
17651
|
-
|
|
17676
|
+
t2 = A.absolute(".", _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null);
|
|
17677
|
+
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
17678
|
+
t3 = $.$get$context();
|
|
17679
|
+
t4 = A._realCasePath0(A.absolute(t3.normalize$1(path), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null));
|
|
17680
|
+
t0 = t4;
|
|
17681
|
+
t4 = t3;
|
|
17682
|
+
t3 = t0;
|
|
17683
|
+
} else {
|
|
17684
|
+
t3 = $.$get$context();
|
|
17685
|
+
t4 = t3.canonicalize$1(0, path);
|
|
17686
|
+
t0 = t4;
|
|
17687
|
+
t4 = t3;
|
|
17688
|
+
t3 = t0;
|
|
17689
|
+
}
|
|
17690
|
+
t4 = importCache.importCanonical$3$originalUrl(new A.FilesystemImporter0(t2), t4.toUri$1(t3), t4.toUri$1(path));
|
|
17691
|
+
t4.toString;
|
|
17692
|
+
stylesheet = t4;
|
|
17652
17693
|
} else {
|
|
17653
17694
|
t2 = A.readFile0(path);
|
|
17654
17695
|
t3 = syntax == null ? A.Syntax_forPath0(path) : syntax;
|
|
17655
|
-
|
|
17656
|
-
stylesheet = A.Stylesheet_Stylesheet$parse0(t2, t3, logger, t4.toUri$1(path));
|
|
17657
|
-
t2 = t4;
|
|
17696
|
+
stylesheet = A.Stylesheet_Stylesheet$parse0(t2, t3, logger, $.$get$context().toUri$1(path));
|
|
17658
17697
|
}
|
|
17659
|
-
result = A._compileStylesheet1(stylesheet, logger, importCache, nodeImporter, new A.FilesystemImporter0(
|
|
17698
|
+
result = A._compileStylesheet1(stylesheet, logger, importCache, nodeImporter, new A.FilesystemImporter0(A.absolute(".", _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)), functions, style, useSpaces, indentWidth, lineFeed, quietDeps, sourceMap, charset);
|
|
17660
17699
|
if (terseLogger != null)
|
|
17661
17700
|
terseLogger.summarize$1$node(!t1);
|
|
17662
17701
|
return result;
|
|
@@ -17669,7 +17708,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
17669
17708
|
} else
|
|
17670
17709
|
terseLogger = _null;
|
|
17671
17710
|
stylesheet = A.Stylesheet_Stylesheet$parse0(source, syntax == null ? B.Syntax_SCSS_scss0 : syntax, logger, url);
|
|
17672
|
-
result = A._compileStylesheet1(stylesheet, logger, importCache, nodeImporter, importer == null ? new A.FilesystemImporter0(
|
|
17711
|
+
result = A._compileStylesheet1(stylesheet, logger, importCache, nodeImporter, importer == null ? new A.FilesystemImporter0(A.absolute(".", _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)) : importer, functions, style, useSpaces, indentWidth, lineFeed, quietDeps, sourceMap, charset);
|
|
17673
17712
|
if (terseLogger != null)
|
|
17674
17713
|
terseLogger.summarize$1$node(nodeImporter != null);
|
|
17675
17714
|
return result;
|
|
@@ -18943,7 +18982,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
18943
18982
|
},
|
|
18944
18983
|
FilesystemImporter$(loadPath) {
|
|
18945
18984
|
var _null = null;
|
|
18946
|
-
return new A.FilesystemImporter0(
|
|
18985
|
+
return new A.FilesystemImporter0(A.absolute(loadPath, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null));
|
|
18947
18986
|
},
|
|
18948
18987
|
FilesystemImporter0: function FilesystemImporter0(t0) {
|
|
18949
18988
|
this._filesystem$_loadPath = t0;
|
|
@@ -19914,7 +19953,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
19914
19953
|
if (loadPaths != null)
|
|
19915
19954
|
for (t2 = J.get$iterator$ax(loadPaths); t2.moveNext$0();) {
|
|
19916
19955
|
t3 = t2.get$current(t2);
|
|
19917
|
-
t1.push(new A.FilesystemImporter0($.$get$context().absolute$
|
|
19956
|
+
t1.push(new A.FilesystemImporter0($.$get$context().absolute$15(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
19918
19957
|
}
|
|
19919
19958
|
if (sassPath != null) {
|
|
19920
19959
|
t2 = sassPath.split(J.$eq$(J.get$platform$x(self.process), "win32") ? ";" : ":");
|
|
@@ -19922,7 +19961,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
19922
19961
|
_i = 0;
|
|
19923
19962
|
for (; _i < t3; ++_i) {
|
|
19924
19963
|
path = t2[_i];
|
|
19925
|
-
t1.push(new A.FilesystemImporter0($.$get$context().absolute$
|
|
19964
|
+
t1.push(new A.FilesystemImporter0($.$get$context().absolute$15(path, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null)));
|
|
19926
19965
|
}
|
|
19927
19966
|
}
|
|
19928
19967
|
return t1;
|
|
@@ -21093,7 +21132,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21093
21132
|
J.set$sassFalse$x(self.exports, B.SassBoolean_false0);
|
|
21094
21133
|
J.set$Exception$x(self.exports, $.$get$exceptionClass());
|
|
21095
21134
|
J.set$Logger$x(self.exports, {silent: {warn: A.allowInteropNamed("sass.Logger.silent.warn", new A.main_closure0()), debug: A.allowInteropNamed("sass.Logger.silent.debug", new A.main_closure1())}});
|
|
21096
|
-
J.set$info$x(self.exports, "dart-sass\t1.56.
|
|
21135
|
+
J.set$info$x(self.exports, "dart-sass\t1.56.2\t(Sass Compiler)\t[Dart]\ndart2js\t2.18.5\t(Dart Compiler)\t[Dart]");
|
|
21097
21136
|
A.updateSourceSpanPrototype();
|
|
21098
21137
|
J.set$render$x(self.exports, A.allowInteropNamed("sass.render", A.legacy__render$closure()));
|
|
21099
21138
|
J.set$renderSync$x(self.exports, A.allowInteropNamed("sass.renderSync", A.legacy__renderSync$closure()));
|
|
@@ -21761,7 +21800,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
21761
21800
|
switch ($async$goto) {
|
|
21762
21801
|
case 0:
|
|
21763
21802
|
// Function start
|
|
21764
|
-
$async$returnValue = "1.56.
|
|
21803
|
+
$async$returnValue = "1.56.2 compiled with dart2js 2.18.5";
|
|
21765
21804
|
// goto return
|
|
21766
21805
|
$async$goto = 1;
|
|
21767
21806
|
break;
|
|
@@ -23179,6 +23218,23 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
23179
23218
|
throw A.wrapException(A.StateError$("Iterable may not be empty"));
|
|
23180
23219
|
return t1.take$1(_this, size);
|
|
23181
23220
|
},
|
|
23221
|
+
parseSignature(signature, requireParens) {
|
|
23222
|
+
var error, stackTrace, t1, exception, t2;
|
|
23223
|
+
try {
|
|
23224
|
+
t1 = A.ScssParser$0(signature, null, null).parseSignature$1$requireParens(requireParens);
|
|
23225
|
+
return t1;
|
|
23226
|
+
} catch (exception) {
|
|
23227
|
+
t1 = A.unwrapException(exception);
|
|
23228
|
+
if (t1 instanceof A.SassFormatException0) {
|
|
23229
|
+
error = t1;
|
|
23230
|
+
stackTrace = A.getTraceFromException(exception);
|
|
23231
|
+
t1 = error;
|
|
23232
|
+
t2 = J.getInterceptor$z(t1);
|
|
23233
|
+
A.throwWithTrace0(new A.SassFormatException0('Invalid signature "' + signature + '": ' + error._span_exception$_message, A.SourceSpanException.prototype.get$span.call(t2, t1)), stackTrace);
|
|
23234
|
+
} else
|
|
23235
|
+
throw exception;
|
|
23236
|
+
}
|
|
23237
|
+
},
|
|
23182
23238
|
indent_closure0: function indent_closure0(t0) {
|
|
23183
23239
|
this.indentation = t0;
|
|
23184
23240
|
},
|
|
@@ -23325,6 +23381,14 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
23325
23381
|
_.children = t2;
|
|
23326
23382
|
_.hasDeclarations = t3;
|
|
23327
23383
|
},
|
|
23384
|
+
AsyncCallable_AsyncCallable$fromSignature(signature, callback, requireParens) {
|
|
23385
|
+
var tuple = A.parseSignature(signature, requireParens);
|
|
23386
|
+
return new A.AsyncBuiltInCallable0(tuple.item1, tuple.item2, callback);
|
|
23387
|
+
},
|
|
23388
|
+
Callable_Callable$fromSignature(signature, callback, requireParens) {
|
|
23389
|
+
var tuple = A.parseSignature(signature, requireParens);
|
|
23390
|
+
return new A.BuiltInCallable0(tuple.item1, A._setArrayType([new A.Tuple2(tuple.item2, callback, type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2));
|
|
23391
|
+
},
|
|
23328
23392
|
printString(string) {
|
|
23329
23393
|
if (typeof dartPrint == "function") {
|
|
23330
23394
|
dartPrint(string);
|
|
@@ -23594,12 +23658,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
23594
23658
|
}
|
|
23595
23659
|
return t1;
|
|
23596
23660
|
},
|
|
23597
|
-
absolute(part1, part2, part3, part4, part5, part6, part7) {
|
|
23598
|
-
return $.$get$context().absolute$
|
|
23661
|
+
absolute(part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, part15) {
|
|
23662
|
+
return $.$get$context().absolute$15(part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, part15);
|
|
23599
23663
|
},
|
|
23600
23664
|
join(part1, part2, part3) {
|
|
23601
23665
|
var _null = null;
|
|
23602
|
-
return $.$get$context().join$
|
|
23666
|
+
return $.$get$context().join$16(0, part1, part2, part3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null);
|
|
23603
23667
|
},
|
|
23604
23668
|
prettyUri(uri) {
|
|
23605
23669
|
return $.$get$context().prettyUri$1(uri);
|
|
@@ -23655,7 +23719,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
23655
23719
|
repl = repl0;
|
|
23656
23720
|
t1 = options._options;
|
|
23657
23721
|
logger = new A.TrackingLogger(A._asBool(t1.$index(0, "quiet")) ? $.$get$Logger_quiet() : new A.StderrLogger(options.get$color()));
|
|
23658
|
-
t2 =
|
|
23722
|
+
t2 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
23659
23723
|
evaluator = new A.Evaluator(A._EvaluateVisitor$(null, A.ImportCache$(type$.List_String._as(t1.$index(0, "load-path")), logger), logger, null, false, false), new A.FilesystemImporter(t2));
|
|
23660
23724
|
t2 = repl.__Repl__adapter_A;
|
|
23661
23725
|
t2 === $ && A.throwUnnamedLateFieldNI();
|
|
@@ -28113,6 +28177,15 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
28113
28177
|
}
|
|
28114
28178
|
};
|
|
28115
28179
|
A._Cell.prototype = {
|
|
28180
|
+
readLocal$1$0() {
|
|
28181
|
+
var t1 = this._value;
|
|
28182
|
+
if (t1 === this)
|
|
28183
|
+
A.throwExpression(new A.LateError("Local '" + this.__late_helper$_name + "' has not been initialized."));
|
|
28184
|
+
return t1;
|
|
28185
|
+
},
|
|
28186
|
+
readLocal$0() {
|
|
28187
|
+
return this.readLocal$1$0(type$.dynamic);
|
|
28188
|
+
},
|
|
28116
28189
|
_readLocal$0() {
|
|
28117
28190
|
var t1 = this._value;
|
|
28118
28191
|
if (t1 === this)
|
|
@@ -34851,9 +34924,9 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
34851
34924
|
}
|
|
34852
34925
|
};
|
|
34853
34926
|
A.Context.prototype = {
|
|
34854
|
-
absolute$
|
|
34927
|
+
absolute$15(part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, part15) {
|
|
34855
34928
|
var t1;
|
|
34856
|
-
A._validateArgList("absolute", A._setArrayType([part1, part2, part3, part4, part5, part6, part7], type$.JSArray_nullable_String));
|
|
34929
|
+
A._validateArgList("absolute", A._setArrayType([part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, part15], type$.JSArray_nullable_String));
|
|
34857
34930
|
if (part2 == null) {
|
|
34858
34931
|
t1 = this.style;
|
|
34859
34932
|
t1 = t1.rootLength$1(part1) > 0 && !t1.isRootRelative$1(part1);
|
|
@@ -34862,10 +34935,10 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
34862
34935
|
if (t1)
|
|
34863
34936
|
return part1;
|
|
34864
34937
|
t1 = this._context$_current;
|
|
34865
|
-
return this.join$
|
|
34938
|
+
return this.join$16(0, t1 == null ? A.current() : t1, part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, part15);
|
|
34866
34939
|
},
|
|
34867
34940
|
absolute$1(part1) {
|
|
34868
|
-
return this.absolute$
|
|
34941
|
+
return this.absolute$15(part1, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
34869
34942
|
},
|
|
34870
34943
|
dirname$1(path) {
|
|
34871
34944
|
var t1, t2,
|
|
@@ -34886,13 +34959,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
34886
34959
|
parsed.removeTrailingSeparators$0();
|
|
34887
34960
|
return parsed.toString$0(0);
|
|
34888
34961
|
},
|
|
34889
|
-
join$
|
|
34890
|
-
var parts = A._setArrayType([part1, part2, part3, part4, part5, part6, part7, part8], type$.JSArray_nullable_String);
|
|
34962
|
+
join$16(_, part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, part15, part16) {
|
|
34963
|
+
var parts = A._setArrayType([part1, part2, part3, part4, part5, part6, part7, part8, part9, part10, part11, part12, part13, part14, part15, part16], type$.JSArray_nullable_String);
|
|
34891
34964
|
A._validateArgList("join", parts);
|
|
34892
34965
|
return this.joinAll$1(new A.WhereTypeIterable(parts, type$.WhereTypeIterable_String));
|
|
34893
34966
|
},
|
|
34894
34967
|
join$2($receiver, part1, part2) {
|
|
34895
|
-
return this.join$
|
|
34968
|
+
return this.join$16($receiver, part1, part2, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
34896
34969
|
},
|
|
34897
34970
|
joinAll$1(parts) {
|
|
34898
34971
|
var t1, t2, t3, needsSeparator, isAbsoluteAndNotRootRelative, t4, t5, parsed, path;
|
|
@@ -40819,20 +40892,18 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
40819
40892
|
throw A.wrapException(A.ArgumentError$('Expected "' + argument + '" to contain a colon.', null));
|
|
40820
40893
|
},
|
|
40821
40894
|
_listSourceDirectory$2(source, destination) {
|
|
40822
|
-
var t2, t3, t4, t5,
|
|
40895
|
+
var t2, t3, t4, t5,
|
|
40823
40896
|
t1 = type$.String;
|
|
40824
40897
|
t1 = A.LinkedHashMap_LinkedHashMap$_empty(t1, t1);
|
|
40825
|
-
for (t2 = J.get$iterator$ax(A.listDir(source, true)), t3 = source === destination
|
|
40826
|
-
|
|
40827
|
-
if (this._isEntrypoint$1(
|
|
40828
|
-
|
|
40898
|
+
for (t2 = J.get$iterator$ax(A.listDir(source, true)), t3 = source === destination; t2.moveNext$0();) {
|
|
40899
|
+
t4 = t2.get$current(t2);
|
|
40900
|
+
if (this._isEntrypoint$1(t4))
|
|
40901
|
+
t5 = !(t3 && A.ParsedPath_ParsedPath$parse(t4, $.$get$context().style)._splitExtension$1(1)[1] === ".css");
|
|
40829
40902
|
else
|
|
40830
|
-
|
|
40831
|
-
if (
|
|
40832
|
-
|
|
40833
|
-
|
|
40834
|
-
A._validateArgList("join", parts);
|
|
40835
|
-
t1.$indexSet(0, t6, t7.joinAll$1(new A.WhereTypeIterable(parts, t5)));
|
|
40903
|
+
t5 = false;
|
|
40904
|
+
if (t5) {
|
|
40905
|
+
t5 = $.$get$context();
|
|
40906
|
+
t1.$indexSet(0, t4, A.join(destination, t5.withoutExtension$1(t5.relative$2$from(t4, source)) + ".css", null));
|
|
40836
40907
|
}
|
|
40837
40908
|
}
|
|
40838
40909
|
return t1;
|
|
@@ -40897,7 +40968,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
40897
40968
|
destination.toString;
|
|
40898
40969
|
t2 = t1.relative$2$from(path, t1.dirname$1(destination));
|
|
40899
40970
|
} else
|
|
40900
|
-
t2 =
|
|
40971
|
+
t2 = A.absolute(path, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null);
|
|
40901
40972
|
return t1.toUri$1(t2);
|
|
40902
40973
|
},
|
|
40903
40974
|
_ifParsed$1($name) {
|
|
@@ -41256,7 +41327,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41256
41327
|
// Function start
|
|
41257
41328
|
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
41258
41329
|
t1 = $.$get$context();
|
|
41259
|
-
t2 = A._realCasePath(
|
|
41330
|
+
t2 = A._realCasePath(A.absolute(t1.normalize$1(path), null, null, null, null, null, null, null, null, null, null, null, null, null, null));
|
|
41260
41331
|
t0 = t2;
|
|
41261
41332
|
t2 = t1;
|
|
41262
41333
|
t1 = t0;
|
|
@@ -41298,7 +41369,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41298
41369
|
_handleAdd$body$_Watcher(path) {
|
|
41299
41370
|
var $async$goto = 0,
|
|
41300
41371
|
$async$completer = A._makeAsyncAwaitCompleter(type$.bool),
|
|
41301
|
-
$async$returnValue, $async$self = this, destination, success, t1,
|
|
41372
|
+
$async$returnValue, $async$self = this, t2, t3, t0, destination, success, t1, $async$temp1;
|
|
41302
41373
|
var $async$_handleAdd$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
41303
41374
|
if ($async$errorCode === 1)
|
|
41304
41375
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -41327,10 +41398,22 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41327
41398
|
case 4:
|
|
41328
41399
|
// join
|
|
41329
41400
|
success = $async$result;
|
|
41330
|
-
t1 =
|
|
41331
|
-
|
|
41401
|
+
t1 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
41402
|
+
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
41403
|
+
t2 = $.$get$context();
|
|
41404
|
+
t3 = A._realCasePath(A.absolute(t2.normalize$1(path), null, null, null, null, null, null, null, null, null, null, null, null, null, null));
|
|
41405
|
+
t0 = t3;
|
|
41406
|
+
t3 = t2;
|
|
41407
|
+
t2 = t0;
|
|
41408
|
+
} else {
|
|
41409
|
+
t2 = $.$get$context();
|
|
41410
|
+
t3 = t2.canonicalize$1(0, path);
|
|
41411
|
+
t0 = t3;
|
|
41412
|
+
t3 = t2;
|
|
41413
|
+
t2 = t0;
|
|
41414
|
+
}
|
|
41332
41415
|
$async$goto = 6;
|
|
41333
|
-
return A._asyncAwait($async$self._recompileDownstream$1($async$self._graph.addCanonical$3(new A.FilesystemImporter(
|
|
41416
|
+
return A._asyncAwait($async$self._recompileDownstream$1($async$self._graph.addCanonical$3(new A.FilesystemImporter(t1), t3.toUri$1(t2), t3.toUri$1(path))), $async$_handleAdd$1);
|
|
41334
41417
|
case 6:
|
|
41335
41418
|
// returning from await.
|
|
41336
41419
|
$async$returnValue = $async$result && success;
|
|
@@ -41350,7 +41433,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41350
41433
|
_handleRemove$body$_Watcher(path) {
|
|
41351
41434
|
var $async$goto = 0,
|
|
41352
41435
|
$async$completer = A._makeAsyncAwaitCompleter(type$.bool),
|
|
41353
|
-
$async$returnValue, $async$self = this, t1, t2, t0, url,
|
|
41436
|
+
$async$returnValue, $async$self = this, t1, t2, t0, url, destination, t3, node, toRecompile;
|
|
41354
41437
|
var $async$_handleRemove$1 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
|
|
41355
41438
|
if ($async$errorCode === 1)
|
|
41356
41439
|
return A._asyncRethrow($async$result, $async$completer);
|
|
@@ -41360,7 +41443,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41360
41443
|
// Function start
|
|
41361
41444
|
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
41362
41445
|
t1 = $.$get$context();
|
|
41363
|
-
t2 = A._realCasePath(
|
|
41446
|
+
t2 = A._realCasePath(A.absolute(t1.normalize$1(path), null, null, null, null, null, null, null, null, null, null, null, null, null, null));
|
|
41364
41447
|
t0 = t2;
|
|
41365
41448
|
t2 = t1;
|
|
41366
41449
|
t1 = t0;
|
|
@@ -41373,22 +41456,22 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41373
41456
|
}
|
|
41374
41457
|
url = t2.toUri$1(t1);
|
|
41375
41458
|
t1 = $async$self._graph;
|
|
41376
|
-
|
|
41377
|
-
if (
|
|
41459
|
+
t2 = t1._nodes;
|
|
41460
|
+
if (t2.containsKey$1(url)) {
|
|
41378
41461
|
destination = $async$self._destinationFor$1(path);
|
|
41379
41462
|
if (destination != null)
|
|
41380
41463
|
$async$self._delete$1(destination);
|
|
41381
41464
|
}
|
|
41382
|
-
|
|
41383
|
-
node =
|
|
41384
|
-
|
|
41385
|
-
if (
|
|
41465
|
+
t3 = A.absolute(".", null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
41466
|
+
node = t2.remove$1(0, url);
|
|
41467
|
+
t2 = node != null;
|
|
41468
|
+
if (t2) {
|
|
41386
41469
|
t1._transitiveModificationTimes.clear$0(0);
|
|
41387
41470
|
t1.importCache.clearImport$1(url);
|
|
41388
41471
|
node._stylesheet_graph$_remove$0();
|
|
41389
41472
|
}
|
|
41390
|
-
toRecompile = t1._recanonicalizeImports$2(new A.FilesystemImporter(
|
|
41391
|
-
if (
|
|
41473
|
+
toRecompile = t1._recanonicalizeImports$2(new A.FilesystemImporter(t3), url);
|
|
41474
|
+
if (t2)
|
|
41392
41475
|
toRecompile.addAll$1(0, node._downstream);
|
|
41393
41476
|
$async$goto = 3;
|
|
41394
41477
|
return A._asyncAwait($async$self._recompileDownstream$1(toRecompile), $async$_handleRemove$1);
|
|
@@ -41514,7 +41597,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41514
41597
|
return A._asyncStartSync($async$_compileIfEntrypoint$1, $async$completer);
|
|
41515
41598
|
},
|
|
41516
41599
|
_destinationFor$1(source) {
|
|
41517
|
-
var t2, destination, t3, t4,
|
|
41600
|
+
var t2, destination, t3, t4,
|
|
41518
41601
|
t1 = this._watch$_options;
|
|
41519
41602
|
t1._ensureSources$0();
|
|
41520
41603
|
t2 = type$.String;
|
|
@@ -41530,16 +41613,12 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
41530
41613
|
t2 = t1.cast$2$0(0, t2, t2);
|
|
41531
41614
|
t2 = t2.get$entries(t2);
|
|
41532
41615
|
t2 = t2.get$iterator(t2);
|
|
41533
|
-
t1 = type$.JSArray_nullable_String;
|
|
41534
|
-
t4 = type$.WhereTypeIterable_String;
|
|
41535
41616
|
for (; t2.moveNext$0();) {
|
|
41536
|
-
|
|
41537
|
-
|
|
41538
|
-
if (t3._isWithinOrEquals$2(
|
|
41617
|
+
t1 = t2.get$current(t2);
|
|
41618
|
+
t4 = t1.key;
|
|
41619
|
+
if (t3._isWithinOrEquals$2(t4, source) !== B._PathRelation_within)
|
|
41539
41620
|
continue;
|
|
41540
|
-
|
|
41541
|
-
A._validateArgList("join", parts);
|
|
41542
|
-
destination = t3.joinAll$1(new A.WhereTypeIterable(parts, t4));
|
|
41621
|
+
destination = A.join(t1.value, t3.withoutExtension$1(t3.relative$2$from(source, t4)) + ".css", null);
|
|
41543
41622
|
if (t3._isWithinOrEquals$2(destination, source) !== B._PathRelation_equal)
|
|
41544
41623
|
return destination;
|
|
41545
41624
|
}
|
|
@@ -44633,7 +44712,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
44633
44712
|
var t1, t2, t0, _null = null;
|
|
44634
44713
|
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
44635
44714
|
t1 = $.$get$context();
|
|
44636
|
-
t2 = A._realCasePath(
|
|
44715
|
+
t2 = A._realCasePath(A.absolute(t1.normalize$1(resolved), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null));
|
|
44637
44716
|
t0 = t2;
|
|
44638
44717
|
t2 = t1;
|
|
44639
44718
|
t1 = t0;
|
|
@@ -67339,7 +67418,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
67339
67418
|
}
|
|
67340
67419
|
if (uri.get$scheme() === "") {
|
|
67341
67420
|
t2 = $.$get$context();
|
|
67342
|
-
uri = t2.toUri$1(
|
|
67421
|
+
uri = t2.toUri$1(A.absolute(t2.style.pathFromUri$1(A._parseUri(uri)), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null));
|
|
67343
67422
|
}
|
|
67344
67423
|
t2 = t1[2];
|
|
67345
67424
|
if (t2 == null)
|
|
@@ -79081,29 +79160,17 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
79081
79160
|
};
|
|
79082
79161
|
A._parseFunctions_closure0.prototype = {
|
|
79083
79162
|
call$2(signature, callback) {
|
|
79084
|
-
var
|
|
79085
|
-
|
|
79086
|
-
|
|
79087
|
-
|
|
79088
|
-
|
|
79089
|
-
|
|
79090
|
-
|
|
79091
|
-
|
|
79092
|
-
|
|
79093
|
-
|
|
79094
|
-
t3 = J.getInterceptor$z(t2);
|
|
79095
|
-
A.throwWithTrace0(new A.SassFormatException0('Invalid signature "' + signature + '": ' + error._span_exception$_message, A.SourceSpanException.prototype.get$span.call(t3, t2)), stackTrace);
|
|
79096
|
-
} else
|
|
79097
|
-
throw exception;
|
|
79163
|
+
var callable,
|
|
79164
|
+
t1 = this.result;
|
|
79165
|
+
if (!this.asynch) {
|
|
79166
|
+
callable = A._Cell$();
|
|
79167
|
+
callable._value = A.Callable_Callable$fromSignature(signature, new A._parseFunctions__closure2(callback, callable), true);
|
|
79168
|
+
t1.push(callable._readLocal$0());
|
|
79169
|
+
} else {
|
|
79170
|
+
callable = A._Cell$();
|
|
79171
|
+
callable._value = A.AsyncCallable_AsyncCallable$fromSignature(signature, new A._parseFunctions__closure3(callback, callable), true);
|
|
79172
|
+
t1.push(callable._readLocal$0());
|
|
79098
79173
|
}
|
|
79099
|
-
t2 = this.result;
|
|
79100
|
-
t3 = t1.tuple;
|
|
79101
|
-
t4 = t3.item1;
|
|
79102
|
-
t3 = t3.item2;
|
|
79103
|
-
if (!this.asynch)
|
|
79104
|
-
t2.push(new A.BuiltInCallable0(t4, A._setArrayType([new A.Tuple2(t3, new A._parseFunctions__closure2(t1, callback), type$.Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)], type$.JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value)));
|
|
79105
|
-
else
|
|
79106
|
-
t2.push(new A.AsyncBuiltInCallable0(t4, t3, new A._parseFunctions__closure3(t1, callback)));
|
|
79107
79174
|
},
|
|
79108
79175
|
$signature: 126
|
|
79109
79176
|
};
|
|
@@ -79115,11 +79182,11 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
79115
79182
|
if (result instanceof A.Value0)
|
|
79116
79183
|
return result;
|
|
79117
79184
|
t1 = result != null && result instanceof self.Promise;
|
|
79118
|
-
t2 = this.
|
|
79185
|
+
t2 = this.callable;
|
|
79119
79186
|
if (t1)
|
|
79120
|
-
throw A.wrapException(_s42_ +
|
|
79187
|
+
throw A.wrapException(_s42_ + J.get$name$x(t2.readLocal$0()) + '":\nPromises may only be returned for sass.compileAsync() and sass.compileStringAsync().');
|
|
79121
79188
|
else
|
|
79122
|
-
throw A.wrapException(_s42_ +
|
|
79189
|
+
throw A.wrapException(_s42_ + J.get$name$x(t2.readLocal$0()) + '": ' + A.S(result) + " is not a sass.Value.");
|
|
79123
79190
|
},
|
|
79124
79191
|
$signature: 3
|
|
79125
79192
|
};
|
|
@@ -79156,7 +79223,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
79156
79223
|
$async$goto = 1;
|
|
79157
79224
|
break;
|
|
79158
79225
|
}
|
|
79159
|
-
throw A.wrapException(string$.Invali +
|
|
79226
|
+
throw A.wrapException(string$.Invali + J.get$name$x($async$self.callable.readLocal$0()) + '": ' + A.S(result) + " is not a sass.Value.");
|
|
79160
79227
|
case 1:
|
|
79161
79228
|
// return
|
|
79162
79229
|
return A._asyncReturn($async$returnValue, $async$completer);
|
|
@@ -85096,7 +85163,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
85096
85163
|
var t1, t2, t0, _null = null;
|
|
85097
85164
|
if (J.$eq$(J.get$platform$x(self.process), "win32") || J.$eq$(J.get$platform$x(self.process), "darwin")) {
|
|
85098
85165
|
t1 = $.$get$context();
|
|
85099
|
-
t2 = A._realCasePath0(
|
|
85166
|
+
t2 = A._realCasePath0(A.absolute(t1.normalize$1(resolved), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null));
|
|
85100
85167
|
t0 = t2;
|
|
85101
85168
|
t2 = t1;
|
|
85102
85169
|
t1 = t0;
|
|
@@ -85805,15 +85872,13 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
85805
85872
|
return url.get$scheme() === "" || url.get$scheme() === "file" ? this._resolveLoadPath$2($.$get$context().style.pathFromUri$1(A._parseUri(url)), forImport) : null;
|
|
85806
85873
|
},
|
|
85807
85874
|
_resolveLoadPath$2(path, forImport) {
|
|
85808
|
-
var
|
|
85809
|
-
|
|
85810
|
-
cwdResult = this._tryPath$2(t1.absolute$7(path, _null, _null, _null, _null, _null, _null), forImport);
|
|
85875
|
+
var t1, t2, _i, t3, result, _null = null,
|
|
85876
|
+
cwdResult = this._tryPath$2(A.absolute(path, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), forImport);
|
|
85811
85877
|
if (cwdResult != null)
|
|
85812
85878
|
return cwdResult;
|
|
85813
|
-
for (
|
|
85814
|
-
|
|
85815
|
-
|
|
85816
|
-
result = this._tryPath$2(t1.absolute$7(t1.joinAll$1(new A.WhereTypeIterable(parts, t5)), _null, _null, _null, _null, _null, _null), forImport);
|
|
85879
|
+
for (t1 = this._includePaths, t2 = t1.length, _i = 0; _i < t2; ++_i) {
|
|
85880
|
+
t3 = A.join(t1[_i], path, _null);
|
|
85881
|
+
result = this._tryPath$2($.$get$context().absolute$15(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), forImport);
|
|
85817
85882
|
if (result != null)
|
|
85818
85883
|
return result;
|
|
85819
85884
|
}
|
|
@@ -86364,32 +86429,19 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
86364
86429
|
};
|
|
86365
86430
|
A._parseFunctions_closure.prototype = {
|
|
86366
86431
|
call$2(signature, callback) {
|
|
86367
|
-
var
|
|
86368
|
-
|
|
86369
|
-
|
|
86370
|
-
} catch (exception) {
|
|
86371
|
-
t1 = A.unwrapException(exception);
|
|
86372
|
-
if (t1 instanceof A.SassFormatException0) {
|
|
86373
|
-
error = t1;
|
|
86374
|
-
stackTrace = A.getTraceFromException(exception);
|
|
86375
|
-
t1 = error;
|
|
86376
|
-
t2 = J.getInterceptor$z(t1);
|
|
86377
|
-
A.throwWithTrace0(new A.SassFormatException0('Invalid signature "' + signature + '": ' + error._span_exception$_message, A.SourceSpanException.prototype.get$span.call(t2, t1)), stackTrace);
|
|
86378
|
-
} else
|
|
86379
|
-
throw exception;
|
|
86380
|
-
}
|
|
86381
|
-
t1 = _this.options;
|
|
86382
|
-
context = {options: A._contextOptions(t1, _this.start)};
|
|
86432
|
+
var fiber, _this = this,
|
|
86433
|
+
t1 = _this.options,
|
|
86434
|
+
context = {options: A._contextOptions(t1, _this.start)};
|
|
86383
86435
|
J.set$context$x(J.get$options$x(context), context);
|
|
86384
86436
|
fiber = J.get$fiber$x(t1);
|
|
86385
86437
|
if (fiber != null)
|
|
86386
|
-
_this.result.push(
|
|
86438
|
+
_this.result.push(A.Callable_Callable$fromSignature(signature, new A._parseFunctions__closure(fiber, callback, context), false));
|
|
86387
86439
|
else {
|
|
86388
86440
|
t1 = _this.result;
|
|
86389
86441
|
if (!_this.asynch)
|
|
86390
|
-
t1.push(
|
|
86442
|
+
t1.push(A.Callable_Callable$fromSignature(signature, new A._parseFunctions__closure0(callback, context), false));
|
|
86391
86443
|
else
|
|
86392
|
-
t1.push(
|
|
86444
|
+
t1.push(A.AsyncCallable_AsyncCallable$fromSignature(signature, new A._parseFunctions__closure1(callback, context), false));
|
|
86393
86445
|
}
|
|
86394
86446
|
},
|
|
86395
86447
|
$signature: 126
|
|
@@ -94259,9 +94311,6 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
94259
94311
|
parseSignature$1$requireParens(requireParens) {
|
|
94260
94312
|
return this.wrapSpanFormatException$1(new A.StylesheetParser_parseSignature_closure(this, requireParens));
|
|
94261
94313
|
},
|
|
94262
|
-
parseSignature$0() {
|
|
94263
|
-
return this.parseSignature$1$requireParens(true);
|
|
94264
|
-
},
|
|
94265
94314
|
_stylesheet0$_statement$1$root(root) {
|
|
94266
94315
|
var t2, _this = this,
|
|
94267
94316
|
t1 = _this.scanner;
|
|
@@ -99383,19 +99432,19 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
99383
99432
|
_static_1(A, "utils1__dartToJSUrl$closure", "dartToJSUrl", 585);
|
|
99384
99433
|
_static_1(A, "utils0__isPublic$closure", "isPublic0", 8);
|
|
99385
99434
|
_static(A, "path__absolute$closure", 1, function() {
|
|
99386
|
-
return [null, null, null, null, null, null];
|
|
99387
|
-
}, ["call$
|
|
99388
|
-
return A.absolute(part1, null, null, null, null, null, null);
|
|
99435
|
+
return [null, null, null, null, null, null, null, null, null, null, null, null, null, null];
|
|
99436
|
+
}, ["call$15", "call$1", "call$2", "call$3", "call$4", "call$6", "call$5"], ["absolute", function(part1) {
|
|
99437
|
+
return A.absolute(part1, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
99389
99438
|
}, function(part1, part2) {
|
|
99390
|
-
return A.absolute(part1, part2, null, null, null, null, null);
|
|
99439
|
+
return A.absolute(part1, part2, null, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
99391
99440
|
}, function(part1, part2, part3) {
|
|
99392
|
-
return A.absolute(part1, part2, part3, null, null, null, null);
|
|
99441
|
+
return A.absolute(part1, part2, part3, null, null, null, null, null, null, null, null, null, null, null, null);
|
|
99393
99442
|
}, function(part1, part2, part3, part4) {
|
|
99394
|
-
return A.absolute(part1, part2, part3, part4, null, null, null);
|
|
99443
|
+
return A.absolute(part1, part2, part3, part4, null, null, null, null, null, null, null, null, null, null, null);
|
|
99395
99444
|
}, function(part1, part2, part3, part4, part5, part6) {
|
|
99396
|
-
return A.absolute(part1, part2, part3, part4, part5, part6, null);
|
|
99445
|
+
return A.absolute(part1, part2, part3, part4, part5, part6, null, null, null, null, null, null, null, null, null);
|
|
99397
99446
|
}, function(part1, part2, part3, part4, part5) {
|
|
99398
|
-
return A.absolute(part1, part2, part3, part4, part5, null, null);
|
|
99447
|
+
return A.absolute(part1, part2, part3, part4, part5, null, null, null, null, null, null, null, null, null, null);
|
|
99399
99448
|
}], 586, 0);
|
|
99400
99449
|
_static_1(A, "path__prettyUri$closure", "prettyUri", 88);
|
|
99401
99450
|
_static_1(A, "character__isWhitespace$closure", "isWhitespace", 33);
|
|
@@ -99609,7 +99658,7 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
99609
99658
|
typeUniverse: {eC: new Map(), tR: {}, eT: {}, tPV: {}, sEA: []},
|
|
99610
99659
|
mangledGlobalNames: {int: "int", double: "double", num: "num", String: "String", bool: "bool", Null: "Null", List: "List"},
|
|
99611
99660
|
mangledNames: {},
|
|
99612
|
-
types: ["~()", "Null()", "Future<Null>()", "Value0(List<Value0>)", "Value(List<Value>)", "String(String)", "bool(CssNode)", "bool(CssNode0)", "bool(String)", "bool(Object?)", "SassNumber0(List<Value0>)", "SassNumber(List<Value>)", "int()", "bool(SimpleSelector0)", "bool(SimpleSelector)", "bool(ComplexSelector)", "bool(ComplexSelector0)", "SassString0(List<Value0>)", "SassString(List<Value>)", "SassBoolean0(List<Value0>)", "SassBoolean(List<Value>)", "SassList0(List<Value0>)", "SassList(List<Value>)", "SassColor(List<Value>)", "JSClass0()", "SassColor0(List<Value0>)", "bool()", "~(Object?)", "Null(~())", "Future<Null>(Future<~>())", "FileSpan()", "double(double)", "String()", "bool(int?)", "Value0?()", "Value()", "Value(Value)", "SassMap(List<Value>)", "Future<~>()", "Value?()", "SassMap0(List<Value0>)", "Value0(Value0)", "bool(num,num)", "String?()", "String(Object)", "bool(Value0)", "bool(ComplexSelectorComponent0)", "SelectorList()", "List<String>()", "SelectorList0()", "bool(ComplexSelectorComponent)", "Value0()", "double(SassColor0)", "bool(int)", "ValueExpression0(Value0)", "~(Value,Value)", "~(Value0,Value0)", "double(double,double)", "ValueExpression(Value)", "~(Value)", "~(Value0)", "bool(SelectorList0)", "~(Module0<Callable0>)", "bool(Value)", "Null(@)", "bool(SelectorList)", "Null(Object,StackTrace)", "ComplexSelector(ComplexSelector)", "ComplexSelector0(ComplexSelector0)", "Future<Value0>()", "~(Module<Callable>)", "Future<Value?>()", "Future<Value>()", "Future<Value0?>()", "~(Object,StackTrace)", "Frame()", "@(@)", "Future<Value?>(Statement)", "~(String,Value)", "SassRuntimeException(AstNode)", "Future<String>(Object?)", "Uri(Uri)", "List<CssMediaQuery0>?(List<CssMediaQuery0>)", "Declaration(List<Statement>,FileSpan)", "Value?(Statement)", "Object()", "~(String,Value0)", "Null(_NodeSassColor,num)", "String(@)", "@()", "Null([Object?])", "Stylesheet?()", "Future<Value0>(List<Value0>)", "Frame(String)", "double(Value)", "double(Value0)", "int(Uri)", "Value0?(Statement0)", "SassRuntimeException0(AstNode0)", "Future<Value0?>(Statement0)", "Declaration0(List<Statement0>,FileSpan)", "List<CssMediaQuery>?(List<CssMediaQuery>)", "Tuple3<Importer,Uri,Uri>?()", "List<CssMediaQuery>()", "bool(_Highlight)", "Null(Module0<AsyncCallable0>)", "Callable?()", "List<CssMediaQuery0>()", "bool(ModifiableCssNode0)", "Null(Module<AsyncCallable>)", "AsyncCallable?()", "String(Expression0)", "bool(Object)", "String(String{color:@})", "Statement()", "AsyncCallable0?()", "AtRootQuery()", "bool(Module0<AsyncCallable0>)", "~(Object)", "~(String)", "Map<ComplexSelector,Extension>()", "Iterable<String>(Module0<AsyncCallable0>)", "int(_NodeSassColor)", "bool(Module<Callable>)", "int(SassColor0)", "Iterable<String>(Module<Callable>)", "~(String,Object?)", "AtRootQuery0()", "bool(Module0<Callable0>)", "Callable0?()", "bool(Module<AsyncCallable>)", "Iterable<String>(Module<AsyncCallable>)", "Map<ComplexSelector0,Extension0>()", "String(Expression)", "bool(ModifiableCssNode)", "bool(@)", "Statement0()", "~(@)", "int(Object?)", "~(~())", "Iterable<String>(Module0<Callable0>)", "double(SassNumber0,SassNumber0[String?,String?])", "Uri?/()", "SelectorList(Value)", "SelectorList(SelectorList,SelectorList)", "Uri?()", "Uri(String)", "~(Object[StackTrace?])", "Iterable<String>()", "Iterable<String>(String)", "Iterable<String>(@)", "DateTime()", "~(String[~])", "bool(Statement)", "int(int)", "bool(Import)", "VariableDeclaration()", "AtRootRule(List<Statement>,FileSpan)", "AtRule(List<Statement>,FileSpan)", "Set<0^>()<Object?>", "Entry(Entry)", "int(double)", "~(@,@)", "double(double,String)", "AstNode(AstNode)", "SassFunction(List<Value>)", "~(Module<AsyncCallable>)", "~(Object?,Object?)", "List<ExtensionStore>()", "int(ComplexSelector)", "bool(ModifiableCssParentNode)", "AsyncCallable?(Module<AsyncCallable>)", "Future<SassNumber>()", "MapKeySet<Module<AsyncCallable>>(Map<Module<AsyncCallable>,AstNode>)", "bool(UseRule)", "bool(ForwardRule)", "Map<String,AsyncCallable>(Module<AsyncCallable>)", "Future<Object>()", "Future<Tuple3<AsyncImporter,Uri,Uri>?>()", "Trace(String)", "AstNode?()", "String(SassNumber)", "Frame(Tuple2<String,AstNode>)", "SassNumber()", "Future<Value>(List<Value>)", "int(Frame)", "String(Frame)", "Trace()", "bool(Frame)", "Callable?(Module<Callable>)", "bool(String?)", "MapKeySet<Module<Callable>>(Map<Module<Callable>,AstNode>)", "AsyncCallable0?(Module0<AsyncCallable0>)", "MapKeySet<Module0<AsyncCallable0>>(Map<Module0<AsyncCallable0>,AstNode0>)", "Map<String,AsyncCallable0>(Module0<AsyncCallable0>)", "AstNode0(AstNode0)", "SassFunction0(List<Value0>)", "Map<String,Callable>(Module<Callable>)", "~(Module0<AsyncCallable0>)", "List<ExtensionStore0>()", "~(Uint8List,String,int)", "bool(ModifiableCssParentNode0)", "~(Iterable<ExtensionStore>)", "Future<SassNumber0>()", "bool(UseRule0)", "bool(ForwardRule0)", "List<Extension>()", "AstNode0?()", "String(SassNumber0)", "Frame(Tuple2<String,AstNode0>)", "Future<Tuple3<AsyncImporter0,Uri,Uri>?>()", "0&(@[@])", "String(Value0)", "bool(Queue<Object?>)", "Future<NodeCompileResult>()", "AsyncImporter0(Object?)", "~([Object?])", "Object(Object)", "Callable0?(Module0<Callable0>)", "MapKeySet<Module0<Callable0>>(Map<Module0<Callable0>,AstNode0>)", "Map<String,Callable0>(Module0<Callable0>)", "~(String,@)", "String(int)", "Value0?(Value0)", "double?(String,num{assertPercent:bool,checkPercent:bool,checkUnitless:bool})", "SassNumber0()", "String(_NodeException)", "Future<~>?()", "List<Extension0>()", "double(double,double?,num)", "int(int,double?)", "bool(Statement0)", "bool(Import0)", "Tuple3<Importer0,Uri,Uri>?()", "Value0(int)", "@(Value0,num)", "Object(_NodeSassMap,int)", "Null(_NodeSassMap,int,Object)", "bool(SassNumber0)", "ImmutableList(SassNumber0)", "bool(SassNumber0,String)", "SassNumber0(SassNumber0,Object,Object[String?])", "SassNumber0(SassNumber0,SassNumber0[String?,String?])", "double(SassNumber0,Object,Object[String?])", "int(ComplexSelector0)", "~(String,Function)", "SelectorList0(Value0)", "SelectorList0(SelectorList0,SelectorList0)", "FileLocation(FileSpan)", "String(FileSpan)", "int(SourceLocation)", "AtRootRule0(List<Statement0>,FileSpan)", "AtRule0(List<Statement0>,FileSpan)", "int(@,@)", "bool(Object?,Object?)", "~(Iterable<ExtensionStore0>)", "SassArgumentList0(Object,Object,Object[String?])", "CssValue<String>(Interpolation)", "UseRule()", "UserDefinedCallable<Environment>(ContentBlock)", "String(Combinator)", "Value(Expression)", "~(ContentBlock)", "~(List<Statement>)", "~(CssMediaQuery)", "~(MapEntry<Value,Value>)", "SourceFile()", "SourceFile?(int)", "String?(SourceFile?)", "int(_Line)", "~(String,int?)", "Object(_Line)", "Object(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(MapEntry<Object,List<_Highlight>>)", "SourceSpanWithContext()", "List<Frame>(Trace)", "int(Trace)", "int(int,SimpleSelector)", "String(Trace)", "StyleRule(List<Statement>,FileSpan)", "String(MapEntry<String,ConfiguredValue>)", "Frame(String,String)", "int(String?)", "EachRule(List<Statement>,FileSpan)", "Frame(Frame)", "int(int,int)", "Value?(Module<Callable>)", "Module<Callable>?(Module<Callable>)", "String(Argument0)", "FunctionRule(List<Statement>,FileSpan)", "ForRule(List<Statement>,FileSpan)", "ImmutableMap(SassArgumentList0)", "ContentBlock(List<Statement>,FileSpan)", "WhileRule(List<Statement>,FileSpan)", "Value0?(Module0<AsyncCallable0>)", "Module0<AsyncCallable0>?(Module0<AsyncCallable0>)", "MediaRule(List<Statement>,FileSpan)", "MixinRule(List<Statement>,FileSpan)", "FileSpan?(MapEntry<Module0<AsyncCallable0>,AstNode0>)", "Map<String,Value0>(Module0<AsyncCallable0>)", "Map<String,AstNode0>(Module0<AsyncCallable0>)", "Expression(Expression)", "FileSpan?(MapEntry<Module<Callable>,AstNode>)", "Future<CssValue0<String>>(Interpolation0{trim:bool,warnForColor:bool})", "SupportsRule(List<Statement>,FileSpan)", "Map<String,Value>(Module<Callable>)", "Map<String,AstNode>(Module<Callable>)", "Null(@,StackTrace)", "~(Expression)", "Future<~>(List<Value0>)", "@(String)", "~(BinaryOperator)", "Future<EvaluateResult0>()", "Uint8List(@,@)", "Module0<AsyncCallable0>(Module0<AsyncCallable0>)", "SassNumber(Value)", "StringExpression(Interpolation)", "DateTime(StylesheetNode)", "Future<CssValue0<Value0>>(Expression0)", "Future<~>(String)", "List<WatchEvent>(List<WatchEvent>)", "Future<Value0?>(Value0)", "~(Uri,StylesheetNode?)", "bool(Extension)", "Future<CssValue0<String>>(Interpolation0)", "Set<ModifiableCssValue<SelectorList>>()", "SassList(ComplexSelector)", "Object?(Object?)", "String(Tuple2<Expression,Expression>)", "Iterable<ComplexSelector>(ComplexSelector)", "UserDefinedCallable0<AsyncEnvironment0>(ContentBlock0)", "Future<@>()", "~(SimpleSelector,Map<ComplexSelector,Extension>)", "~(ComplexSelector,Extension)", "Null(Map<SimpleSelector,Map<ComplexSelector,Extension>>)", "Map<SimpleSelector,Map<ComplexSelector,Extension>>?(List<Extension>)", "~(Set<ModifiableCssValue<SelectorList>>)", "Iterable<ComplexSelector>(List<ComplexSelector>)", "Future<Value0>(Expression0)", "List<SimpleSelector>(Extender)", "List<Extender>?(SimpleSelector)", "List<Extender>(PseudoSelector)", "SassScriptException()", "Value(Object)", "SassMap(Value)", "SingleUnitSassNumber(double)", "Future<Stylesheet0?>()", "bool(Tuple3<AsyncImporter0,Uri,Uri>)", "Uri(Tuple3<AsyncImporter0,Uri,Uri>)", "Future<CssValue<String>>(Interpolation{trim:bool,warnForColor:bool})", "0&(Object[Object?])", "List<List<Extender>>(List<Extender>)", "Expression0(Expression0)", "List<ComplexSelector>(ComplexSelector)", "PseudoSelector(ComplexSelector)", "~(SimpleSelector,Set<ModifiableCssValue<SelectorList>>)", "List<ComplexSelectorComponent>?(List<ComplexSelectorComponent>,List<ComplexSelectorComponent>)", "bool(Queue<List<ComplexSelectorComponent>>)", "SassMap(SassMap)", "0&(List<Value0>)", "Null(_NodeSassColor,num?[num?,num?,num?,SassColor0?])", "SassString(SimpleSelector)", "double(_NodeSassColor)", "bool(List<Iterable<ComplexSelectorComponent>>)", "SassColor0(Object,_Channels)", "SassColor0(SassColor0,_Channels)", "bool(PseudoSelector)", "SelectorList?(PseudoSelector)", "SimpleSelector(SimpleSelector)", "Future<~>(List<Value>)", "AsyncImporter0(NodeImporter0)", "0&(@)", "@(@,String)", "int(int,ComplexSelectorComponent0)", "String(Combinator0)", "int(int,SimpleSelector0)", "String(MapEntry<String,ConfiguredValue0>)", "String(BuiltInCallable0)", "Future<EvaluateResult>()", "~(String,Option)", "Value0?(Module0<Callable0>)", "Module0<Callable0>?(Module0<Callable0>)", "String(int,IfClause)", "Module<AsyncCallable>(Module<AsyncCallable>)", "FileSpan?(MapEntry<Module0<Callable0>,AstNode0>)", "Map<String,Value0>(Module0<Callable0>)", "Map<String,AstNode0>(Module0<Callable0>)", "bool(String?,String?)", "String(Argument)", "CssValue0<String>(Interpolation0{trim:bool,warnForColor:bool})", "_Future<@>(@)", "Object(Value0)", "bool(Tuple3<Importer,Uri,Uri>)", "EvaluateResult0()", "Module0<Callable0>(Module0<Callable0>)", "CssValue0<Value0>(Expression0)", "Future<CssValue<Value>>(Expression)", "~(int,@)", "CssValue0<String>(Interpolation0)", "Value?(Module<AsyncCallable>)", "UserDefinedCallable0<Environment0>(ContentBlock0)", "Value0(Expression0)", "Future<Value?>(Value)", "FileSpan(_NodeException)", "bool(Extension0)", "Set<ModifiableCssValue0<SelectorList0>>()", "Module<AsyncCallable>?(Module<AsyncCallable>)", "Future<CssValue<String>>(Interpolation)", "~(SimpleSelector0,Map<ComplexSelector0,Extension0>)", "~(ComplexSelector0,Extension0)", "Null(Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>)", "Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>?(List<Extension0>)", "~(Set<ModifiableCssValue0<SelectorList0>>)", "Iterable<ComplexSelector0>(List<ComplexSelector0>)", "String(BuiltInCallable)", "List<SimpleSelector0>(Extender0)", "List<Extender0>?(SimpleSelector0)", "List<Extender0>(PseudoSelector0)", "List<List<Extender0>>(List<Extender0>)", "List<ComplexSelector0>(ComplexSelector0)", "PseudoSelector0(ComplexSelector0)", "~(SimpleSelector0,Set<ModifiableCssValue0<SelectorList0>>)", "SassFunction0(Object,String,Value0(List<Value0>))", "List<ComplexSelectorComponent0>?(List<ComplexSelectorComponent0>,List<ComplexSelectorComponent0>)", "bool(Queue<List<ComplexSelectorComponent0>>)", "bool(List<Iterable<ComplexSelectorComponent0>>)", "~([Future<~>?])", "bool(PseudoSelector0)", "SelectorList0?(PseudoSelector0)", "String(int,IfClause0)", "~(@,StackTrace)", "CompoundSelector()", "~(Object?,Object,Object?)", "Tuple2<String,String>(String)", "Statement({root:bool})", "Stylesheet0?()", "bool(Tuple3<Importer0,Uri,Uri>)", "Uri(Tuple3<Importer0,Uri,Uri>)", "int(num)", "JSFunction0(JSFunction0)", "Object?(Object,String,String[Object?])", "Null(Object)", "String(Value)", "List<Value0>(Value0)", "bool(List<Value0>)", "SassList0(ComplexSelector0)", "Iterable<ComplexSelector0>(ComplexSelector0)", "SimpleSelector0(SimpleSelector0)", "Null(_NodeSassList,int?[bool?,SassList0?])", "UserDefinedCallable<AsyncEnvironment>(ContentBlock)", "Object(_NodeSassList,int)", "Null(_NodeSassList,int,Object)", "bool(_NodeSassList)", "Null(_NodeSassList,bool)", "int(_NodeSassList)", "SassList0(Object[Object?,_ConstructorOptions?])", "FileSpan?(MapEntry<Module<AsyncCallable>,AstNode>)", "String(Tuple2<Expression0,Expression0>)", "SassMap0(Value0)", "SassMap0(SassMap0)", "Null(_NodeSassMap,int?[SassMap0?])", "SassNumber0(int)", "Map<String,Value>(Module<AsyncCallable>)", "int(_NodeSassMap)", "Map<String,AstNode>(Module<AsyncCallable>)", "SassMap0(Object[ImmutableMap?])", "ImmutableMap(SassMap0)", "@(SassMap0,Object)", "SassNumber0(Value0)", "Value0(Object)", "~(String,WarnOptions)", "~(String,DebugOptions)", "Null(_NodeSassNumber,num?[String?,SassNumber0?])", "double(_NodeSassNumber)", "Null(_NodeSassNumber,num)", "String(_NodeSassNumber)", "Null(_NodeSassNumber,String)", "SassNumber0(Object,num[Object?])", "double(SassNumber0)", "int(int,ComplexSelectorComponent)", "int?(SassNumber0)", "Expression({bracketList:bool,singleEquals:bool,until:bool()?})", "int(SassNumber0[String?])", "double(SassNumber0,num,num[String?])", "SassNumber0(SassNumber0[String?])", "SassNumber0(SassNumber0,String[String?])", "Future<Value>(Expression)", "~(Symbol0,@)", "Stylesheet()", "Statement?()", "~(List<Value0>)", "SassScriptException0()", "VariableDeclaration(VariableDeclaration)", "String(Object,@,@[@])", "ArgumentDeclaration()", "~(String,StackTrace?)", "Future<Stylesheet?>()", "Uri(Tuple3<Importer,Uri,Uri>)", "SassString0(SimpleSelector0)", "CompoundSelector0()", "~(CssMediaQuery0)", "~(MapEntry<Value0,Value0>)", "SingleUnitSassNumber0(double)", "CssValue<String>(Interpolation{trim:bool,warnForColor:bool})", "JSUrl0?(FileSpan)", "bool(Tuple3<AsyncImporter,Uri,Uri>)", "~(List<Value>)", "Null(_NodeSassString,String?[SassString0?])", "String(_NodeSassString)", "Null(_NodeSassString,String)", "SassString0(Object[Object?,_ConstructorOptions1?])", "String(SassString0)", "bool(SassString0)", "int(SassString0)", "int(SassString0,Value0[String?])", "Statement0({root:bool})", "0&(List<Value>)", "Stylesheet0()", "Statement0?()", "VariableDeclaration0(VariableDeclaration0)", "ArgumentDeclaration0()", "Tuple2<String,ArgumentDeclaration0>()", "VariableDeclaration0()", "Null(@,@)", "StyleRule0(List<Statement0>,FileSpan)", "Uri(Tuple3<AsyncImporter,Uri,Uri>)", "EachRule0(List<Statement0>,FileSpan)", "FunctionRule0(List<Statement0>,FileSpan)", "ForRule0(List<Statement0>,FileSpan)", "ContentBlock0(List<Statement0>,FileSpan)", "MediaRule0(List<Statement0>,FileSpan)", "MixinRule0(List<Statement0>,FileSpan)", "EvaluateResult()", "SupportsRule0(List<Statement0>,FileSpan)", "WhileRule0(List<Statement0>,FileSpan)", "~(Expression0)", "~(BinaryOperator0)", "StringExpression0(Interpolation0)", "Null(~(Object?),~(Object?))", "ImmutableList(Value0)", "String?(Value0)", "int(Value0,Value0[String?])", "SassBoolean0(Value0[String?])", "SassColor0(Value0[String?])", "SassFunction0(Value0[String?])", "SassMap0(Value0[String?])", "SassNumber0(Value0[String?])", "SassString0(Value0[String?])", "SassMap0?(Value0)", "bool(Value0,Object?)", "int(Value0[Object?])", "Module<Callable>(Module<Callable>)", "List<Value>(Value)", "bool(List<Value>)", "~(Zone?,ZoneDelegate?,Zone,Object,StackTrace)", "0^(Zone?,ZoneDelegate?,Zone,0^())<Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^),1^)<Object?Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^,2^),1^,2^)<Object?Object?Object?>", "0^()(Zone,ZoneDelegate,Zone,0^())<Object?>", "0^(1^)(Zone,ZoneDelegate,Zone,0^(1^))<Object?Object?>", "0^(1^,2^)(Zone,ZoneDelegate,Zone,0^(1^,2^))<Object?Object?Object?>", "AsyncError?(Zone,ZoneDelegate,Zone,Object,StackTrace?)", "~(Zone?,ZoneDelegate?,Zone,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~(Timer))", "~(Zone,ZoneDelegate,Zone,String)", "Zone(Zone?,ZoneDelegate?,Zone,ZoneSpecification?,Map<Object?,Object?>?)", "CssValue<Value>(Expression)", "0^(0^,0^)<num>", "Value?(Value)", "Null(Function,Function)", "~(String,int)", "~(Object,StackTrace,EventSink<0^>)<Object?>", "List<0^>(0^,List<0^>?)<Object?>", "NodeCompileResult(String[CompileOptions?])", "NodeCompileResult(String[CompileStringOptions?])", "Promise(String[CompileOptions?])", "Promise(String[CompileStringOptions?])", "Importer0(Object?)", "List<Object?>(Object?)", "~(RenderOptions,~(Object?,RenderResult?))", "RenderResult(RenderOptions)", "Future<~>(List<String>)", "Uri(JSUrl0)", "JSUrl0(Uri)", "String(String[String?,String?,String?,String?,String?,String?])", "String(String?)", "Null(RenderResult)", "ArgParser()"],
|
|
99661
|
+
types: ["~()", "Null()", "Future<Null>()", "Value0(List<Value0>)", "Value(List<Value>)", "String(String)", "bool(CssNode)", "bool(CssNode0)", "bool(String)", "bool(Object?)", "SassNumber0(List<Value0>)", "SassNumber(List<Value>)", "int()", "bool(SimpleSelector0)", "bool(SimpleSelector)", "bool(ComplexSelector)", "bool(ComplexSelector0)", "SassString0(List<Value0>)", "SassString(List<Value>)", "SassBoolean0(List<Value0>)", "SassBoolean(List<Value>)", "SassList0(List<Value0>)", "SassList(List<Value>)", "SassColor(List<Value>)", "JSClass0()", "SassColor0(List<Value0>)", "bool()", "~(Object?)", "Null(~())", "Future<Null>(Future<~>())", "FileSpan()", "double(double)", "String()", "bool(int?)", "Value0?()", "Value()", "Value(Value)", "SassMap(List<Value>)", "Future<~>()", "Value?()", "SassMap0(List<Value0>)", "Value0(Value0)", "bool(num,num)", "String?()", "String(Object)", "bool(Value0)", "bool(ComplexSelectorComponent0)", "SelectorList()", "List<String>()", "SelectorList0()", "bool(ComplexSelectorComponent)", "Value0()", "double(SassColor0)", "bool(int)", "ValueExpression0(Value0)", "~(Value,Value)", "~(Value0,Value0)", "double(double,double)", "ValueExpression(Value)", "~(Value)", "~(Value0)", "bool(SelectorList0)", "~(Module0<Callable0>)", "bool(Value)", "Null(@)", "bool(SelectorList)", "Null(Object,StackTrace)", "ComplexSelector(ComplexSelector)", "ComplexSelector0(ComplexSelector0)", "Future<Value0>()", "~(Module<Callable>)", "Future<Value?>()", "Future<Value>()", "Future<Value0?>()", "~(Object,StackTrace)", "Frame()", "@(@)", "Future<Value?>(Statement)", "~(String,Value)", "SassRuntimeException(AstNode)", "Future<String>(Object?)", "Uri(Uri)", "List<CssMediaQuery0>?(List<CssMediaQuery0>)", "Declaration(List<Statement>,FileSpan)", "Value?(Statement)", "Object()", "~(String,Value0)", "Null(_NodeSassColor,num)", "String(@)", "@()", "Null([Object?])", "Stylesheet?()", "Future<Value0>(List<Value0>)", "Frame(String)", "double(Value)", "double(Value0)", "int(Uri)", "Value0?(Statement0)", "SassRuntimeException0(AstNode0)", "Future<Value0?>(Statement0)", "Declaration0(List<Statement0>,FileSpan)", "List<CssMediaQuery>?(List<CssMediaQuery>)", "Tuple3<Importer,Uri,Uri>?()", "List<CssMediaQuery>()", "bool(_Highlight)", "Null(Module0<AsyncCallable0>)", "Callable?()", "List<CssMediaQuery0>()", "bool(ModifiableCssNode0)", "Null(Module<AsyncCallable>)", "AsyncCallable?()", "String(Expression0)", "bool(Object)", "String(String{color:@})", "Statement()", "AsyncCallable0?()", "AtRootQuery()", "bool(Module0<AsyncCallable0>)", "~(Object)", "~(String)", "Map<ComplexSelector,Extension>()", "Iterable<String>(Module0<AsyncCallable0>)", "int(_NodeSassColor)", "bool(Module<Callable>)", "int(SassColor0)", "Iterable<String>(Module<Callable>)", "~(String,Object?)", "AtRootQuery0()", "bool(Module0<Callable0>)", "Callable0?()", "bool(Module<AsyncCallable>)", "Iterable<String>(Module<AsyncCallable>)", "Map<ComplexSelector0,Extension0>()", "String(Expression)", "bool(ModifiableCssNode)", "bool(@)", "Statement0()", "~(@)", "int(Object?)", "~(~())", "Iterable<String>(Module0<Callable0>)", "double(SassNumber0,SassNumber0[String?,String?])", "Uri?/()", "SelectorList(Value)", "SelectorList(SelectorList,SelectorList)", "Uri?()", "Uri(String)", "~(Object[StackTrace?])", "Iterable<String>()", "Iterable<String>(String)", "Iterable<String>(@)", "DateTime()", "~(String[~])", "bool(Statement)", "int(int)", "bool(Import)", "VariableDeclaration()", "AtRootRule(List<Statement>,FileSpan)", "AtRule(List<Statement>,FileSpan)", "Set<0^>()<Object?>", "Entry(Entry)", "int(double)", "~(@,@)", "double(double,String)", "AstNode(AstNode)", "SassFunction(List<Value>)", "~(Module<AsyncCallable>)", "~(Object?,Object?)", "List<ExtensionStore>()", "int(ComplexSelector)", "bool(ModifiableCssParentNode)", "AsyncCallable?(Module<AsyncCallable>)", "Future<SassNumber>()", "MapKeySet<Module<AsyncCallable>>(Map<Module<AsyncCallable>,AstNode>)", "bool(UseRule)", "bool(ForwardRule)", "Map<String,AsyncCallable>(Module<AsyncCallable>)", "Future<Object>()", "Future<Tuple3<AsyncImporter,Uri,Uri>?>()", "Trace(String)", "AstNode?()", "String(SassNumber)", "Frame(Tuple2<String,AstNode>)", "SassNumber()", "Future<Value>(List<Value>)", "int(Frame)", "String(Frame)", "Trace()", "bool(Frame)", "Callable?(Module<Callable>)", "bool(String?)", "MapKeySet<Module<Callable>>(Map<Module<Callable>,AstNode>)", "AsyncCallable0?(Module0<AsyncCallable0>)", "MapKeySet<Module0<AsyncCallable0>>(Map<Module0<AsyncCallable0>,AstNode0>)", "Map<String,AsyncCallable0>(Module0<AsyncCallable0>)", "AstNode0(AstNode0)", "SassFunction0(List<Value0>)", "Map<String,Callable>(Module<Callable>)", "~(Module0<AsyncCallable0>)", "List<ExtensionStore0>()", "~(Uint8List,String,int)", "bool(ModifiableCssParentNode0)", "~(Iterable<ExtensionStore>)", "Future<SassNumber0>()", "bool(UseRule0)", "bool(ForwardRule0)", "List<Extension>()", "AstNode0?()", "String(SassNumber0)", "Frame(Tuple2<String,AstNode0>)", "Future<Tuple3<AsyncImporter0,Uri,Uri>?>()", "0&(@[@])", "String(Value0)", "bool(Queue<Object?>)", "Future<NodeCompileResult>()", "AsyncImporter0(Object?)", "~([Object?])", "Object(Object)", "Callable0?(Module0<Callable0>)", "MapKeySet<Module0<Callable0>>(Map<Module0<Callable0>,AstNode0>)", "Map<String,Callable0>(Module0<Callable0>)", "~(String,@)", "String(int)", "Value0?(Value0)", "double?(String,num{assertPercent:bool,checkPercent:bool,checkUnitless:bool})", "SassNumber0()", "String(_NodeException)", "Future<~>?()", "List<Extension0>()", "double(double,double?,num)", "int(int,double?)", "bool(Statement0)", "bool(Import0)", "Tuple3<Importer0,Uri,Uri>?()", "Value0(int)", "@(Value0,num)", "Object(_NodeSassMap,int)", "Null(_NodeSassMap,int,Object)", "bool(SassNumber0)", "ImmutableList(SassNumber0)", "bool(SassNumber0,String)", "SassNumber0(SassNumber0,Object,Object[String?])", "SassNumber0(SassNumber0,SassNumber0[String?,String?])", "double(SassNumber0,Object,Object[String?])", "int(ComplexSelector0)", "~(String,Function)", "SelectorList0(Value0)", "SelectorList0(SelectorList0,SelectorList0)", "FileLocation(FileSpan)", "String(FileSpan)", "int(SourceLocation)", "AtRootRule0(List<Statement0>,FileSpan)", "AtRule0(List<Statement0>,FileSpan)", "int(@,@)", "bool(Object?,Object?)", "~(Iterable<ExtensionStore0>)", "SassArgumentList0(Object,Object,Object[String?])", "CssValue<String>(Interpolation)", "UseRule()", "UserDefinedCallable<Environment>(ContentBlock)", "String(Combinator)", "Value(Expression)", "~(ContentBlock)", "~(List<Statement>)", "~(CssMediaQuery)", "~(MapEntry<Value,Value>)", "SourceFile()", "SourceFile?(int)", "String?(SourceFile?)", "int(_Line)", "~(String,int?)", "Object(_Line)", "Object(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(MapEntry<Object,List<_Highlight>>)", "SourceSpanWithContext()", "List<Frame>(Trace)", "int(Trace)", "int(int,SimpleSelector)", "String(Trace)", "StyleRule(List<Statement>,FileSpan)", "String(MapEntry<String,ConfiguredValue>)", "Frame(String,String)", "int(String?)", "EachRule(List<Statement>,FileSpan)", "Frame(Frame)", "int(int,int)", "Value?(Module<Callable>)", "Module<Callable>?(Module<Callable>)", "String(Argument0)", "FunctionRule(List<Statement>,FileSpan)", "ForRule(List<Statement>,FileSpan)", "ImmutableMap(SassArgumentList0)", "ContentBlock(List<Statement>,FileSpan)", "WhileRule(List<Statement>,FileSpan)", "Value0?(Module0<AsyncCallable0>)", "Module0<AsyncCallable0>?(Module0<AsyncCallable0>)", "MediaRule(List<Statement>,FileSpan)", "MixinRule(List<Statement>,FileSpan)", "FileSpan?(MapEntry<Module0<AsyncCallable0>,AstNode0>)", "Map<String,Value0>(Module0<AsyncCallable0>)", "Map<String,AstNode0>(Module0<AsyncCallable0>)", "Expression(Expression)", "FileSpan?(MapEntry<Module<Callable>,AstNode>)", "Future<CssValue0<String>>(Interpolation0{trim:bool,warnForColor:bool})", "SupportsRule(List<Statement>,FileSpan)", "Map<String,Value>(Module<Callable>)", "Map<String,AstNode>(Module<Callable>)", "Null(@,StackTrace)", "~(Expression)", "Future<~>(List<Value0>)", "@(String)", "~(BinaryOperator)", "Future<EvaluateResult0>()", "Uint8List(@,@)", "Module0<AsyncCallable0>(Module0<AsyncCallable0>)", "SassNumber(Value)", "StringExpression(Interpolation)", "DateTime(StylesheetNode)", "Future<CssValue0<Value0>>(Expression0)", "Future<~>(String)", "List<WatchEvent>(List<WatchEvent>)", "Future<Value0?>(Value0)", "~(Uri,StylesheetNode?)", "bool(Extension)", "Future<CssValue0<String>>(Interpolation0)", "Set<ModifiableCssValue<SelectorList>>()", "SassList(ComplexSelector)", "Object?(Object?)", "String(Tuple2<Expression,Expression>)", "Iterable<ComplexSelector>(ComplexSelector)", "UserDefinedCallable0<AsyncEnvironment0>(ContentBlock0)", "Future<@>()", "~(SimpleSelector,Map<ComplexSelector,Extension>)", "~(ComplexSelector,Extension)", "Null(Map<SimpleSelector,Map<ComplexSelector,Extension>>)", "Map<SimpleSelector,Map<ComplexSelector,Extension>>?(List<Extension>)", "~(Set<ModifiableCssValue<SelectorList>>)", "Iterable<ComplexSelector>(List<ComplexSelector>)", "Future<Value0>(Expression0)", "List<SimpleSelector>(Extender)", "List<Extender>?(SimpleSelector)", "List<Extender>(PseudoSelector)", "SassScriptException()", "Value(Object)", "SassMap(Value)", "SingleUnitSassNumber(double)", "Future<Stylesheet0?>()", "bool(Tuple3<AsyncImporter0,Uri,Uri>)", "Uri(Tuple3<AsyncImporter0,Uri,Uri>)", "Future<CssValue<String>>(Interpolation{trim:bool,warnForColor:bool})", "0&(Object[Object?])", "List<List<Extender>>(List<Extender>)", "Expression0(Expression0)", "List<ComplexSelector>(ComplexSelector)", "PseudoSelector(ComplexSelector)", "~(SimpleSelector,Set<ModifiableCssValue<SelectorList>>)", "List<ComplexSelectorComponent>?(List<ComplexSelectorComponent>,List<ComplexSelectorComponent>)", "bool(Queue<List<ComplexSelectorComponent>>)", "SassMap(SassMap)", "0&(List<Value0>)", "Null(_NodeSassColor,num?[num?,num?,num?,SassColor0?])", "SassString(SimpleSelector)", "double(_NodeSassColor)", "bool(List<Iterable<ComplexSelectorComponent>>)", "SassColor0(Object,_Channels)", "SassColor0(SassColor0,_Channels)", "bool(PseudoSelector)", "SelectorList?(PseudoSelector)", "SimpleSelector(SimpleSelector)", "Future<~>(List<Value>)", "AsyncImporter0(NodeImporter0)", "0&(@)", "@(@,String)", "int(int,ComplexSelectorComponent0)", "String(Combinator0)", "int(int,SimpleSelector0)", "String(MapEntry<String,ConfiguredValue0>)", "String(BuiltInCallable0)", "Future<EvaluateResult>()", "~(String,Option)", "Value0?(Module0<Callable0>)", "Module0<Callable0>?(Module0<Callable0>)", "String(int,IfClause)", "Module<AsyncCallable>(Module<AsyncCallable>)", "FileSpan?(MapEntry<Module0<Callable0>,AstNode0>)", "Map<String,Value0>(Module0<Callable0>)", "Map<String,AstNode0>(Module0<Callable0>)", "bool(String?,String?)", "String(Argument)", "CssValue0<String>(Interpolation0{trim:bool,warnForColor:bool})", "_Future<@>(@)", "Object(Value0)", "bool(Tuple3<Importer,Uri,Uri>)", "EvaluateResult0()", "Module0<Callable0>(Module0<Callable0>)", "CssValue0<Value0>(Expression0)", "Future<CssValue<Value>>(Expression)", "~(int,@)", "CssValue0<String>(Interpolation0)", "Value?(Module<AsyncCallable>)", "UserDefinedCallable0<Environment0>(ContentBlock0)", "Value0(Expression0)", "Future<Value?>(Value)", "FileSpan(_NodeException)", "bool(Extension0)", "Set<ModifiableCssValue0<SelectorList0>>()", "Module<AsyncCallable>?(Module<AsyncCallable>)", "Future<CssValue<String>>(Interpolation)", "~(SimpleSelector0,Map<ComplexSelector0,Extension0>)", "~(ComplexSelector0,Extension0)", "Null(Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>)", "Map<SimpleSelector0,Map<ComplexSelector0,Extension0>>?(List<Extension0>)", "~(Set<ModifiableCssValue0<SelectorList0>>)", "Iterable<ComplexSelector0>(List<ComplexSelector0>)", "String(BuiltInCallable)", "List<SimpleSelector0>(Extender0)", "List<Extender0>?(SimpleSelector0)", "List<Extender0>(PseudoSelector0)", "List<List<Extender0>>(List<Extender0>)", "List<ComplexSelector0>(ComplexSelector0)", "PseudoSelector0(ComplexSelector0)", "~(SimpleSelector0,Set<ModifiableCssValue0<SelectorList0>>)", "SassFunction0(Object,String,Value0(List<Value0>))", "List<ComplexSelectorComponent0>?(List<ComplexSelectorComponent0>,List<ComplexSelectorComponent0>)", "bool(Queue<List<ComplexSelectorComponent0>>)", "bool(List<Iterable<ComplexSelectorComponent0>>)", "~([Future<~>?])", "bool(PseudoSelector0)", "SelectorList0?(PseudoSelector0)", "String(int,IfClause0)", "~(@,StackTrace)", "CompoundSelector()", "~(Object?,Object,Object?)", "Tuple2<String,String>(String)", "Statement({root:bool})", "Stylesheet0?()", "bool(Tuple3<Importer0,Uri,Uri>)", "Uri(Tuple3<Importer0,Uri,Uri>)", "int(num)", "JSFunction0(JSFunction0)", "Object?(Object,String,String[Object?])", "Null(Object)", "String(Value)", "List<Value0>(Value0)", "bool(List<Value0>)", "SassList0(ComplexSelector0)", "Iterable<ComplexSelector0>(ComplexSelector0)", "SimpleSelector0(SimpleSelector0)", "Null(_NodeSassList,int?[bool?,SassList0?])", "UserDefinedCallable<AsyncEnvironment>(ContentBlock)", "Object(_NodeSassList,int)", "Null(_NodeSassList,int,Object)", "bool(_NodeSassList)", "Null(_NodeSassList,bool)", "int(_NodeSassList)", "SassList0(Object[Object?,_ConstructorOptions?])", "FileSpan?(MapEntry<Module<AsyncCallable>,AstNode>)", "String(Tuple2<Expression0,Expression0>)", "SassMap0(Value0)", "SassMap0(SassMap0)", "Null(_NodeSassMap,int?[SassMap0?])", "SassNumber0(int)", "Map<String,Value>(Module<AsyncCallable>)", "int(_NodeSassMap)", "Map<String,AstNode>(Module<AsyncCallable>)", "SassMap0(Object[ImmutableMap?])", "ImmutableMap(SassMap0)", "@(SassMap0,Object)", "SassNumber0(Value0)", "Value0(Object)", "~(String,WarnOptions)", "~(String,DebugOptions)", "Null(_NodeSassNumber,num?[String?,SassNumber0?])", "double(_NodeSassNumber)", "Null(_NodeSassNumber,num)", "String(_NodeSassNumber)", "Null(_NodeSassNumber,String)", "SassNumber0(Object,num[Object?])", "double(SassNumber0)", "int(int,ComplexSelectorComponent)", "int?(SassNumber0)", "Expression({bracketList:bool,singleEquals:bool,until:bool()?})", "int(SassNumber0[String?])", "double(SassNumber0,num,num[String?])", "SassNumber0(SassNumber0[String?])", "SassNumber0(SassNumber0,String[String?])", "Future<Value>(Expression)", "~(Symbol0,@)", "Stylesheet()", "Statement?()", "~(List<Value0>)", "SassScriptException0()", "VariableDeclaration(VariableDeclaration)", "String(Object,@,@[@])", "ArgumentDeclaration()", "~(String,StackTrace?)", "Future<Stylesheet?>()", "Uri(Tuple3<Importer,Uri,Uri>)", "SassString0(SimpleSelector0)", "CompoundSelector0()", "~(CssMediaQuery0)", "~(MapEntry<Value0,Value0>)", "SingleUnitSassNumber0(double)", "CssValue<String>(Interpolation{trim:bool,warnForColor:bool})", "JSUrl0?(FileSpan)", "bool(Tuple3<AsyncImporter,Uri,Uri>)", "~(List<Value>)", "Null(_NodeSassString,String?[SassString0?])", "String(_NodeSassString)", "Null(_NodeSassString,String)", "SassString0(Object[Object?,_ConstructorOptions1?])", "String(SassString0)", "bool(SassString0)", "int(SassString0)", "int(SassString0,Value0[String?])", "Statement0({root:bool})", "0&(List<Value>)", "Stylesheet0()", "Statement0?()", "VariableDeclaration0(VariableDeclaration0)", "ArgumentDeclaration0()", "Tuple2<String,ArgumentDeclaration0>()", "VariableDeclaration0()", "Null(@,@)", "StyleRule0(List<Statement0>,FileSpan)", "Uri(Tuple3<AsyncImporter,Uri,Uri>)", "EachRule0(List<Statement0>,FileSpan)", "FunctionRule0(List<Statement0>,FileSpan)", "ForRule0(List<Statement0>,FileSpan)", "ContentBlock0(List<Statement0>,FileSpan)", "MediaRule0(List<Statement0>,FileSpan)", "MixinRule0(List<Statement0>,FileSpan)", "EvaluateResult()", "SupportsRule0(List<Statement0>,FileSpan)", "WhileRule0(List<Statement0>,FileSpan)", "~(Expression0)", "~(BinaryOperator0)", "StringExpression0(Interpolation0)", "Null(~(Object?),~(Object?))", "ImmutableList(Value0)", "String?(Value0)", "int(Value0,Value0[String?])", "SassBoolean0(Value0[String?])", "SassColor0(Value0[String?])", "SassFunction0(Value0[String?])", "SassMap0(Value0[String?])", "SassNumber0(Value0[String?])", "SassString0(Value0[String?])", "SassMap0?(Value0)", "bool(Value0,Object?)", "int(Value0[Object?])", "Module<Callable>(Module<Callable>)", "List<Value>(Value)", "bool(List<Value>)", "~(Zone?,ZoneDelegate?,Zone,Object,StackTrace)", "0^(Zone?,ZoneDelegate?,Zone,0^())<Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^),1^)<Object?Object?>", "0^(Zone?,ZoneDelegate?,Zone,0^(1^,2^),1^,2^)<Object?Object?Object?>", "0^()(Zone,ZoneDelegate,Zone,0^())<Object?>", "0^(1^)(Zone,ZoneDelegate,Zone,0^(1^))<Object?Object?>", "0^(1^,2^)(Zone,ZoneDelegate,Zone,0^(1^,2^))<Object?Object?Object?>", "AsyncError?(Zone,ZoneDelegate,Zone,Object,StackTrace?)", "~(Zone?,ZoneDelegate?,Zone,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~())", "Timer(Zone,ZoneDelegate,Zone,Duration,~(Timer))", "~(Zone,ZoneDelegate,Zone,String)", "Zone(Zone?,ZoneDelegate?,Zone,ZoneSpecification?,Map<Object?,Object?>?)", "CssValue<Value>(Expression)", "0^(0^,0^)<num>", "Value?(Value)", "Null(Function,Function)", "~(String,int)", "~(Object,StackTrace,EventSink<0^>)<Object?>", "List<0^>(0^,List<0^>?)<Object?>", "NodeCompileResult(String[CompileOptions?])", "NodeCompileResult(String[CompileStringOptions?])", "Promise(String[CompileOptions?])", "Promise(String[CompileStringOptions?])", "Importer0(Object?)", "List<Object?>(Object?)", "~(RenderOptions,~(Object?,RenderResult?))", "RenderResult(RenderOptions)", "Future<~>(List<String>)", "Uri(JSUrl0)", "JSUrl0(Uri)", "String(String[String?,String?,String?,String?,String?,String?,String?,String?,String?,String?,String?,String?,String?,String?])", "String(String?)", "Null(RenderResult)", "ArgParser()"],
|
|
99613
99662
|
interceptorsByTag: null,
|
|
99614
99663
|
leafTags: null,
|
|
99615
99664
|
arrayRti: Symbol("$ti")
|
|
@@ -99972,8 +100021,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
99972
100021
|
JSArray_Tuple2_Expression_Expression_2: findType("JSArray<Tuple2<Expression0,Expression0>>"),
|
|
99973
100022
|
JSArray_Tuple2_String_AstNode: findType("JSArray<Tuple2<String,AstNode>>"),
|
|
99974
100023
|
JSArray_Tuple2_String_AstNode_2: findType("JSArray<Tuple2<String,AstNode0>>"),
|
|
99975
|
-
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("JSArray<Tuple2<
|
|
99976
|
-
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("JSArray<Tuple2<
|
|
100024
|
+
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("JSArray<Tuple2<ArgumentDeclaration,Value(List<Value>)>>"),
|
|
100025
|
+
JSArray_Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("JSArray<Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>>"),
|
|
99977
100026
|
JSArray_Tuple4_of_Uri_and_bool_and_Importer_and_nullable_Uri: findType("JSArray<Tuple4<Uri,bool,Importer,Uri?>>"),
|
|
99978
100027
|
JSArray_Uri: findType("JSArray<Uri>"),
|
|
99979
100028
|
JSArray_UseRule: findType("JSArray<UseRule>"),
|
|
@@ -100147,8 +100196,8 @@ self.readline = _cli_pkg_requires.readline;
|
|
|
100147
100196
|
Tuple2_Uri_bool: findType("Tuple2<Uri,bool>"),
|
|
100148
100197
|
Tuple2_of_ArgumentDeclaration_and_FutureOr_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration,Value/(List<Value>)>"),
|
|
100149
100198
|
Tuple2_of_ArgumentDeclaration_and_FutureOr_Value_Function_List_Value_2: findType("Tuple2<ArgumentDeclaration0,Value0/(List<Value0>)>"),
|
|
100150
|
-
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("Tuple2<
|
|
100151
|
-
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("Tuple2<
|
|
100199
|
+
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value: findType("Tuple2<ArgumentDeclaration,Value(List<Value>)>"),
|
|
100200
|
+
Tuple2_of_ArgumentDeclaration_and_Value_Function_List_Value_2: findType("Tuple2<ArgumentDeclaration0,Value0(List<Value0>)>"),
|
|
100152
100201
|
Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList: findType("Tuple2<ExtensionStore,Map<CssValue<SelectorList>,ModifiableCssValue<SelectorList>>>"),
|
|
100153
100202
|
Tuple2_of_ExtensionStore_and_Map_of_CssValue_SelectorList_and_ModifiableCssValue_SelectorList_2: findType("Tuple2<ExtensionStore0,Map<CssValue0<SelectorList0>,ModifiableCssValue0<SelectorList0>>>"),
|
|
100154
100203
|
Tuple2_of_List_Expression_and_Map_String_Expression: findType("Tuple2<List<Expression>,Map<String,Expression>>"),
|