ton-blockchain / intellij-ton

TON Development plugin for the IntelliJ Platform
https://plugins.jetbrains.com/plugin/23382-ton
GNU General Public License v3.0
85 stars 12 forks source link

Add support for multiline asm functions in the FunC #80

Closed pyAndr3w closed 11 months ago

pyAndr3w commented 1 year ago

Plugin currently doesn't support multiline asm functions using triple quotes (""""). Example:

slice hello_world() asm """
  "Hello"
  " "
  "World"
  $+ $+ $>s
  PUSHSLICE
""";

Docs

pyAndr3w commented 1 year ago

At the moment it looks like this. image

andreypfau commented 1 year ago

Support for multiline strings coming soon in version 2.0

image