File tree Expand file tree Collapse file tree 1 file changed +18
-15
lines changed Expand file tree Collapse file tree 1 file changed +18
-15
lines changed Original file line number Diff line number Diff line change @@ -175,21 +175,24 @@ struct Module {
175
175
}
176
176
```
177
177
178
- | any | tag| | |
179
- | ---------| ---| -----------------------| -----------------------------|
180
- | undefined| 0| | |
181
- | null | 1| | |
182
- | false | 2| | |
183
- | true | 3| | |
184
- | number | 4| u64 | |
185
- | string | 5| String | |
186
- | bigint+ | 6| BigUInt | |
187
- | bigint- | 7| BigUInt | |
188
- | object | 8| Object | |
189
- | array | 9| Array<Any > | |
190
- | local_ref| 10| u32 | consts[ i] |
191
- | arg_ref | 11| u32 | args[ i] |
192
- | function | 12| Function | the last constant is a return|
178
+ | any | tag| | |
179
+ | --------------| ---| -----------------------| -----------------------------|
180
+ | undefined | 00| | |
181
+ | null | 01| | |
182
+ | false | 02| | |
183
+ | true | 03| | |
184
+ | number | 04| u64 | |
185
+ | string | 05| String | |
186
+ | bigint+ | 06| BigUInt | |
187
+ | bigint- | 07| BigUInt | |
188
+ | object | 08| Object | |
189
+ | array | 09| Array<Any > | |
190
+ | function | 0A| Function | the last constant is a return|
191
+ | ** operators:** | | | |
192
+ | local_ref | 10| u32 | consts[ i] |
193
+ | arg_ref | 11| u32 | args[ i] |
194
+
195
+ We will extend the command set in the future.
193
196
194
197
## Architecture
195
198
You can’t perform that action at this time.
0 commit comments