We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that plugin doesn't recognize tact Map.get function, and represents it as a system keyword.
struct OK{ v: map<Address, Bool>; } extends mutates fun setOk(self: OK, key: Address) { //syntax error here let c = self.v.get(key); require(c == null, "Already set"); self.v.set(key, true); }
IDENTIFIER expected, got 'get', <function attribute>, IDENTIFIER or fun expected, got '('
IDENTIFIER expected, got 'get'
<function attribute>, IDENTIFIER or fun expected, got '('
Tact plugin version: 2.3 Webstorm version: 2024.2 Operation system: Arch Linux x86_64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that plugin doesn't recognize tact Map.get function, and represents it as a system keyword.
Code example:
Error messages:
IDENTIFIER expected, got 'get'
,<function attribute>, IDENTIFIER or fun expected, got '('
System information
Tact plugin version: 2.3
Webstorm version: 2024.2
Operation system: Arch Linux x86_64
The text was updated successfully, but these errors were encountered: