File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -209,11 +209,11 @@ class AsyncEnvironment {
209
209
_mixins.toList (),
210
210
_content);
211
211
212
- /// Returns a new global environment.
212
+ /// Returns a new environment to use for an imported file .
213
213
///
214
- /// The returned environment shares this environment's global variables,
215
- /// functions, and mixins, but not its modules.
216
- AsyncEnvironment global () => AsyncEnvironment ._(
214
+ /// The returned environment shares this environment's variables, functions ,
215
+ /// and mixins, but not its modules.
216
+ AsyncEnvironment forImport () => AsyncEnvironment ._(
217
217
{},
218
218
{},
219
219
null ,
Original file line number Diff line number Diff line change 5
5
// DO NOT EDIT. This file was generated from async_environment.dart.
6
6
// See tool/grind/synchronize.dart for details.
7
7
//
8
- // Checksum: b497eab76eb15ba7bfc4f1cecf71ff9f9c1fb2a5
8
+ // Checksum: f02d694ae04ee7fb2219d7930049480eda1fd734
9
9
//
10
10
// ignore_for_file: unused_import
11
11
@@ -215,11 +215,11 @@ class Environment {
215
215
_mixins.toList (),
216
216
_content);
217
217
218
- /// Returns a new global environment.
218
+ /// Returns a new environment to use for an imported file .
219
219
///
220
- /// The returned environment shares this environment's global variables,
221
- /// functions, and mixins, but not its modules.
222
- Environment global () => Environment ._(
220
+ /// The returned environment shares this environment's variables, functions ,
221
+ /// and mixins, but not its modules.
222
+ Environment forImport () => Environment ._(
223
223
{},
224
224
{},
225
225
null ,
Original file line number Diff line number Diff line change @@ -1383,7 +1383,7 @@ class _EvaluateVisitor
1383
1383
}
1384
1384
1385
1385
List <ModifiableCssNode > children;
1386
- var environment = _environment.global ();
1386
+ var environment = _environment.forImport ();
1387
1387
await _withEnvironment (environment, () async {
1388
1388
var oldImporter = _importer;
1389
1389
var oldStylesheet = _stylesheet;
Original file line number Diff line number Diff line change 5
5
// DO NOT EDIT. This file was generated from async_evaluate.dart.
6
6
// See tool/grind/synchronize.dart for details.
7
7
//
8
- // Checksum: eb095e782e2983223945d189caadc649b081a676
8
+ // Checksum: a5181b80dae7d37a33d231ca4a50487d204bb8c3
9
9
//
10
10
// ignore_for_file: unused_import
11
11
@@ -1380,7 +1380,7 @@ class _EvaluateVisitor
1380
1380
}
1381
1381
1382
1382
List <ModifiableCssNode > children;
1383
- var environment = _environment.global ();
1383
+ var environment = _environment.forImport ();
1384
1384
_withEnvironment (environment, () {
1385
1385
var oldImporter = _importer;
1386
1386
var oldStylesheet = _stylesheet;
You can’t perform that action at this time.
0 commit comments