Skip to content

Commit

Permalink
2.0.5 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypfau authored Jan 24, 2024
1 parent d23e7b9 commit 3855f1a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# TON Development Changelog

## [2.0.5]

- fixed builtin functions resolving for `load_int`, `load_uint`

## [2.0]

### Complete plugin rework
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.jvmargs=-Xmx4096m
pluginGroup=org.ton
pluginVersion=2.0.4
pluginVersion=2.0.5
publishChannel=release
publishToken=token
enableBuildSearchableOptions=false
Expand Down
6 changes: 6 additions & 0 deletions src/main/kotlin/org/ton/intellij/func/psi/FuncPsiFactory.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,15 @@ class FuncPsiFactory private constructor(val project: Project) {
;;; Throws exception [`excno`] with parameter [`x`] only if [`cond`] == `0`.
forall X -> () throw_arg_unless(X x, int excno, int cond) impure asm "THROWARGANYIFNOT";
;;; Loads a signed [`len`]-bit integer from slice [`s`].
(slice, int) load_int(slice s, int len) asm(s len -> 1 0) "LDIX";
;;; Loads a signed [`len`]-bit integer from slice [`s`].
(slice, int) ~load_int(slice s, int len) asm(s len -> 1 0) "LDIX";
;;; Loads a unsigned [`len`]-bit integer from slice [`s`].
(slice, int) load_uint(slice s, int len) asm(s len -> 1 0) "LDUX";
;;; Loads a unsigned [`len`]-bit integer from slice [`s`].
(slice, int) ~load_uint(slice s, int len) asm(s len -> 1 0) "LDUX";
Expand Down

0 comments on commit 3855f1a

Please sign in to comment.