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
from should only be highlighted as a keyword in Solidity when used in import statements. revert should only be highlighted as a keyword in Solidity when used in revert statements.
test case:
function f(addressfrom) virtual {}
function g(boolrevert) virtual {}
Note that there is this rule in Solidity's grammar:
/**
* Besides regular non-keyword Identifiers, some keywords like 'from' and 'error' can also be used as identifiers.
*/
identifier: Identifier | From | Error | Revert | Global | Transient | Layout | At;