@@ -13,8 +13,8 @@ fun test(msg: Transfer) {
13
13
msg.<caret>
14
14
}
15
15
------------------------------------------------------------------------
16
- 9 amount: Int of Transfer
17
- 9 to: Address of Transfer
16
+ 9 amount: Int of Transfer
17
+ 9 to: Address of Transfer
18
18
19
19
========================================================================
20
20
Struct fields completion
@@ -31,9 +31,9 @@ fun test(p: Point) {
31
31
p.<caret>
32
32
}
33
33
------------------------------------------------------------------------
34
- 9 x: Int of Point
35
- 9 y: Int of Point
36
- 9 z: Int? of Point
34
+ 9 x: Int of Point
35
+ 9 y: Int of Point
36
+ 9 z: Int? of Point
37
37
38
38
========================================================================
39
39
Contract fields completion
@@ -55,8 +55,8 @@ fun test(c: Counter) {
55
55
c.<caret>
56
56
}
57
57
------------------------------------------------------------------------
58
- 9 owner: Address of Counter
59
- 9 val: Int of Counter
58
+ 9 owner: Address of Counter
59
+ 9 val: Int of Counter
60
60
61
61
========================================================================
62
62
Map fields completion
@@ -73,8 +73,8 @@ fun test(s: Storage) {
73
73
s.<caret>
74
74
}
75
75
------------------------------------------------------------------------
76
- 9 allowances: map<Address, Int> of Storage
77
- 9 balances: map<Address, Int> of Storage
76
+ 9 allowances: map<Address, Int> of Storage
77
+ 9 balances: map<Address, Int> of Storage
78
78
79
79
========================================================================
80
80
Optional fields completion
@@ -92,9 +92,9 @@ fun test(u: User?) {
92
92
u.<caret>
93
93
}
94
94
------------------------------------------------------------------------
95
- 9 address: Address? of User
96
- 9 age: Int? of User
97
- 9 name: of User
95
+ 9 address: Address? of User
96
+ 9 age: Int? of User
97
+ 9 name: of User
98
98
99
99
========================================================================
100
100
Nested fields completion
@@ -114,7 +114,7 @@ fun test(o: Outer) {
114
114
o.inner.<caret>
115
115
}
116
116
------------------------------------------------------------------------
117
- 9 value: Int of Inner
117
+ 9 value: Int of Inner
118
118
119
119
========================================================================
120
120
Message with TLB fields completion
@@ -134,11 +134,11 @@ fun test(msg: TokenTransfer) {
134
134
msg.<caret>
135
135
}
136
136
------------------------------------------------------------------------
137
- 9 amount: Int of TokenTransfer
138
- 9 from: Address of TokenTransfer
139
- 9 queryId: Int of TokenTransfer
140
- 9 responseDestination: Address? of TokenTransfer
141
- 9 to: Address of TokenTransfer
137
+ 9 amount: Int of TokenTransfer
138
+ 9 from: Address of TokenTransfer
139
+ 9 queryId: Int of TokenTransfer
140
+ 9 responseDestination: Address? of TokenTransfer
141
+ 9 to: Address of TokenTransfer
142
142
143
143
========================================================================
144
144
Field of bounced<struct>
@@ -159,9 +159,9 @@ contract Foo {
159
159
}
160
160
}
161
161
------------------------------------------------------------------------
162
- 9 address: Address? of User
163
- 9 age: Int? of User
164
- 9 name: String of User
162
+ 9 address: Address? of User
163
+ 9 age: Int? of User
164
+ 9 name: String of User
165
165
166
166
========================================================================
167
167
Field of option struct without unwrapping
@@ -180,9 +180,9 @@ fun foo(f: User?) {
180
180
f.<caret>
181
181
}
182
182
------------------------------------------------------------------------
183
- 9 address: Address? of User
184
- 9 age: Int? of User
185
- 9 name: String of User
183
+ 9 address: Address? of User
184
+ 9 age: Int? of User
185
+ 9 name: String of User
186
186
187
187
========================================================================
188
188
Field of option struct with unwrapping
@@ -201,6 +201,6 @@ fun foo(f: User?) {
201
201
f!!.<caret>
202
202
}
203
203
------------------------------------------------------------------------
204
- 9 address: Address? of User
205
- 9 age: Int? of User
206
- 9 name: String of User
204
+ 9 address: Address? of User
205
+ 9 age: Int? of User
206
+ 9 name: String of User
0 commit comments