intellij-ton
intellij-ton copied to clipboard
TON Development plugin for the IntelliJ Platform
I propose to add an IntelIJ trick that allows you to convert strings such as `const int i = 1;` to such `(int) i() asm "PUSHINT 1" ` and vice...
I suggest adding function body generation when writing it, as is done for example in Java.  This will help you write code much faster and more optimally, without being...
I propose to automatically convert such structure languages `if (i > b) { throw(error); } ` to such `throw_if(error, i > b);` due to the fact that due to the...
I propose to add a check for compliance of the returned value with the signature. Also add a proposal to change the signature, and correct the lines that call this...
While using multiple conditions, the lexer does not notice the error. Broken code: `(cpu > max_cpu | cpu < min_cpu)` Working code: `((cpu > max_cpu) | (cpu < min_cpu))`
, , , or '{' expected, got ': short-option' 
, , , or '{' expected, got ': -ROLL' 
Problem: Every time you have to copy the used schemes from block.tlb Suggested solution: Add block.tlb as background import, like stdlib.fc.
 
Syntax highlight fails on numeric type names ``` test$_ a:bits900 = 900Bits; ```