You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In C#, to add a new namespace scope, I need to check currentScope if that already existed, but this nestedScopesNotSymbols is not exposed to me, we do have getNestedScopes but I don't want that, I just need to check one level.
Related, instead of List<Scope>, (in C# would be IList<IScope>), would it better to be IReadonlyList<IScope>? And if the list could grow big (guess only in theory), IReadonlyDictionary can be faster to query on?
Best regards,
The text was updated successfully, but these errors were encountered:
In C#, to add a new namespace scope, I need to check currentScope if that already existed, but this nestedScopesNotSymbols is not exposed to me, we do have getNestedScopes but I don't want that, I just need to check one level.
Related, instead of
List<Scope>
, (in C# would beIList<IScope>
), would it better to beIReadonlyList<IScope>
? And if the list could grow big (guess only in theory),IReadonlyDictionary
can be faster to query on?Best regards,
The text was updated successfully, but these errors were encountered: