Fix null error when outlining a non-analyzed file

This commit is contained in:
Simon Binder 2020-01-06 20:01:41 +01:00
parent debf8b30f4
commit a6e4a3669c
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 2 additions and 1 deletions

View File

@ -74,8 +74,9 @@ class _OutlineVisitor extends RecursiveVisitor<void, void> {
final element = _startElement(ElementKind.TOP_LEVEL_VARIABLE, name, e);
// enrich information with variable types if the query has been analyzed.
// (resolvedQueries is null when the file isn't fully analyzed)
final resolved = request.parsedMoor.resolvedQueries
.firstWhere((q) => q.name == name, orElse: () => null);
?.firstWhere((q) => q.name == name, orElse: () => null);
if (resolved != null) {
final parameterBuilder = StringBuffer('(');