|
| 1 | +// Copyright 2023 Google LLC. Use of this source code is governed by an |
| 2 | +// MIT-style license that can be found in the LICENSE file or at |
| 3 | +// https://opensource.org/licenses/MIT. |
| 4 | + |
| 5 | +import 'package:source_span/source_span.dart'; |
| 6 | + |
| 7 | +/// A wrapper for [FileSpan] that allows an expensive creation process to be |
| 8 | +/// deferred until the span is actually needed. |
| 9 | +class LazyFileSpan implements FileSpan { |
| 10 | + /// The function that creates the underlying span. |
| 11 | + final FileSpan Function() _builder; |
| 12 | + |
| 13 | + /// The underlying span this wraps, which is created the first time this |
| 14 | + /// getter is referenced. |
| 15 | + FileSpan get span => _span ??= _builder(); |
| 16 | + FileSpan? _span; |
| 17 | + |
| 18 | + /// Creates a new [LazyFileSpan] that defers calling [builder] until the |
| 19 | + /// underlying span is needed. |
| 20 | + LazyFileSpan(FileSpan Function() builder) : _builder = builder; |
| 21 | + |
| 22 | + @override |
| 23 | + int compareTo(SourceSpan other) => span.compareTo(other); |
| 24 | + |
| 25 | + @override |
| 26 | + String get context => span.context; |
| 27 | + |
| 28 | + @override |
| 29 | + FileLocation get end => span.end; |
| 30 | + |
| 31 | + @override |
| 32 | + FileSpan expand(FileSpan other) => span.expand(other); |
| 33 | + |
| 34 | + @override |
| 35 | + SourceFile get file => span.file; |
| 36 | + |
| 37 | + @override |
| 38 | + String highlight({color}) => span.highlight(color: color); |
| 39 | + |
| 40 | + @override |
| 41 | + int get length => span.length; |
| 42 | + |
| 43 | + @override |
| 44 | + String message(String message, {color}) => |
| 45 | + span.message(message, color: color); |
| 46 | + |
| 47 | + @override |
| 48 | + Uri? get sourceUrl => span.sourceUrl; |
| 49 | + |
| 50 | + @override |
| 51 | + FileLocation get start => span.start; |
| 52 | + |
| 53 | + @override |
| 54 | + String get text => span.text; |
| 55 | + |
| 56 | + @override |
| 57 | + SourceSpan union(SourceSpan other) => span.union(other); |
| 58 | +} |
0 commit comments