@@ -9,17 +9,17 @@ native <caret>test3();
9
9
10
10
native <caret>test4();
11
11
------------------------------------------------------------------------
12
- ```
12
+ ```tact
13
13
fun test1()
14
14
```
15
- ```
15
+ ```tact
16
16
extends fun test2()
17
17
```
18
- ```
18
+ ```tact
19
19
@name(__foo)
20
20
native test3()
21
21
```
22
- ```
22
+ ```tact
23
23
native test4()
24
24
```
25
25
@@ -31,7 +31,7 @@ primitive Int;
31
31
32
32
fun <caret>test(name: String, age: Int) {}
33
33
------------------------------------------------------------------------
34
- ```
34
+ ```tact
35
35
fun test(name: String, age: Int)
36
36
```
37
37
@@ -43,7 +43,7 @@ primitive Int;
43
43
44
44
fun <caret>test(name: String): String {}
45
45
------------------------------------------------------------------------
46
- ```
46
+ ```tact
47
47
fun test(name: String): String
48
48
```
49
49
@@ -53,11 +53,11 @@ Asm function documentation
53
53
asm fun <caret>test() { ONE TWO THREE }
54
54
asm(self other) fun <caret>test() { b{00} PUSHSLICE }
55
55
------------------------------------------------------------------------
56
- ```
56
+ ```tact
57
57
asm fun test() { ONE TWO THREE }
58
58
```
59
59
Gas: `~36`
60
- ```
60
+ ```tact
61
61
asm(self other) fun test() { b{00} PUSHSLICE }
62
62
```
63
63
Gas: `~22`
@@ -67,7 +67,7 @@ Asm function documentation with one line body
67
67
========================================================================
68
68
asm fun <caret>test() { ONE }
69
69
------------------------------------------------------------------------
70
- ```
70
+ ```tact
71
71
asm fun test() { ONE }
72
72
```
73
73
Gas: `18`
@@ -79,7 +79,7 @@ asm fun <caret>test() {
79
79
ONE
80
80
}
81
81
------------------------------------------------------------------------
82
- ```
82
+ ```tact
83
83
asm fun test()
84
84
```
85
85
Gas: `18`
@@ -92,7 +92,7 @@ fun <caret>test() {
92
92
test();
93
93
}
94
94
------------------------------------------------------------------------
95
- ```
95
+ ```tact
96
96
fun test()
97
97
```
98
98
This is one line comment
@@ -105,7 +105,7 @@ fun <caret>test() {
105
105
test();
106
106
}
107
107
------------------------------------------------------------------------
108
- ```
108
+ ```tact
109
109
fun test()
110
110
```
111
111
This is one line comment
@@ -138,7 +138,7 @@ Function documentation with complex /// doc comment
138
138
///
139
139
asm fun <caret>getOriginalFwdFee(fwdFee: Int, isMasterchain: Bool): Int { GETORIGINALFWDFEE }
140
140
------------------------------------------------------------------------
141
- ```
141
+ ```tact
142
142
asm fun getOriginalFwdFee(fwdFee: Int, isMasterchain: Bool): Int { GETORIGINALFWDFEE }
143
143
```
144
144
0 commit comments