intellij-ton icon indicating copy to clipboard operation
intellij-ton copied to clipboard

TON Development plugin for the IntelliJ Platform

Results 71 intellij-ton issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

enhancement
good first issue

I suggest adding function body generation when writing it, as is done for example in Java. ![idea64_HDckgn8A9A](https://github.com/ton-blockchain/intellij-ton/assets/23459010/8ff2c373-215b-4d56-b69a-2d28e4cd989e) This will help you write code much faster and more optimally, without being...

enhancement

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...

enhancement

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...

enhancement

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))`

bug

, , , or '{' expected, got ': short-option' ![image](https://user-images.githubusercontent.com/761285/221715282-8c55caeb-351e-40b2-a658-171b41f391bd.png)

bug

, , , or '{' expected, got ': -ROLL' ![image](https://user-images.githubusercontent.com/761285/221715131-84586701-cb9c-41b6-8329-fbc8acd65cfe.png)

bug
good first issue

Problem: Every time you have to copy the used schemes from block.tlb Suggested solution: Add block.tlb as background import, like stdlib.fc.

enhancement

![изображение](https://user-images.githubusercontent.com/43111428/230227399-9c2cc419-d589-47a0-886b-a807a868f3e2.png) ![изображение](https://user-images.githubusercontent.com/43111428/230227261-e03a9adb-7c77-488b-8a03-92f15f5b0e88.png)

bug

Syntax highlight fails on numeric type names ``` test$_ a:bits900 = 900Bits; ```

help wanted