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
Function and constant attributes are represented as strings in AST. In order to emit error that involves an attribute, there is no way to gets its location.
Attributes should be represented as objects.
type AstFooAttribute = {
kind: 'foo';
loc: SrcInfo;
}
The text was updated successfully, but these errors were encountered:
Function and constant attributes are represented as strings in AST. In order to emit error that involves an attribute, there is no way to gets its location.
Attributes should be represented as objects.
The text was updated successfully, but these errors were encountered: