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
Currently we do not resolve fields in record initializers, e.g.,
typeX: record { field_name: string; };
global x: X = [ $field_name="" ];
# ^ hover missing
it would also be nice if we would be able to provide completion possible field names. This requires us to be able to resolve the type of the value we are creating (either from a type on the LHS, or from the type of a function argument) from potentially incomplete code.
The text was updated successfully, but these errors were encountered:
Currently we do not resolve fields in record initializers, e.g.,
it would also be nice if we would be able to provide completion possible field names. This requires us to be able to resolve the type of the value we are creating (either from a type on the LHS, or from the type of a function argument) from potentially incomplete code.
The text was updated successfully, but these errors were encountered: