diff --git a/lib/src/parse/parser.dart b/lib/src/parse/parser.dart index 4c4d6ba5e..19ef3971c 100644 --- a/lib/src/parse/parser.dart +++ b/lib/src/parse/parser.dart @@ -651,7 +651,7 @@ class Parser { var span = scanner.spanFrom(state); return _interpolationMap == null ? span - : LazyFileSpan(() => _interpolationMap!.mapSpan(span)); + : LazyFileSpan(() => _interpolationMap.mapSpan(span)); } /// Throws an error associated with [span]. diff --git a/lib/src/visitor/async_evaluate.dart b/lib/src/visitor/async_evaluate.dart index 4dc806e67..aba5cee7c 100644 --- a/lib/src/visitor/async_evaluate.dart +++ b/lib/src/visitor/async_evaluate.dart @@ -1812,7 +1812,7 @@ final class _EvaluateVisitor if (result != null) { isDependency = _inDependency; } else { - result = await _nodeImporter!.loadAsync(originalUrl, previous, forImport); + result = await _nodeImporter.loadAsync(originalUrl, previous, forImport); if (result == null) return null; isDependency = true; } diff --git a/lib/src/visitor/evaluate.dart b/lib/src/visitor/evaluate.dart index e06601361..f9990c828 100644 --- a/lib/src/visitor/evaluate.dart +++ b/lib/src/visitor/evaluate.dart @@ -5,7 +5,7 @@ // DO NOT EDIT. This file was generated from async_evaluate.dart. // See tool/grind/synchronize.dart for details. // -// Checksum: 396c8f169d95c601598b8c3be1f4b948ca22effa +// Checksum: 3986f5db33dd220dcd971a39e8587ca4e52d9a3f // // ignore_for_file: unused_import @@ -1808,7 +1808,7 @@ final class _EvaluateVisitor if (result != null) { isDependency = _inDependency; } else { - result = _nodeImporter!.load(originalUrl, previous, forImport); + result = _nodeImporter.load(originalUrl, previous, forImport); if (result == null) return null; isDependency = true; }