fixed a bug of not setting the exception variable position in compile_catch()
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-10-21 01:19:53 +09:00
parent a2b840f41d
commit 9fd31c9c52
4 changed files with 16 additions and 20 deletions

View File

@ -136,22 +136,16 @@ class(#char #varying) String: FixedSizedCollection {
## // System logNl: 'xxxxx'.
## // System getUint8(ptr,offset)
##
## class System: Apex [
## [
## asyncsg ## async semaphore group
## gcfin_sem ## gc finalization semaphore
## gcfin_should_exit
## ossig_pid
## shr ## signal handler registry
## ]
##
## ] {
## ## var(#class) asyncsg.
## ## var(#class) gcfin_sem.
## ## var(#class) gcfin_should_exit := false.
## ## var(#class) ossig_pid.
## ## var(#class) shr. // signal handler registry
##
class System: Apex {
var(#class) asyncsg ## async semaphore group
var(#class) gcfin_sem ## gc finalization semaphore
var(#class) gcfin_should_exit
var(#class) ossig_pid
var(#class) shr ## signal handler registry
gcfin_should_exit := false
## ## pooldic Log
## ## {
## ## // -----------------------------------------------------------
@ -568,7 +562,7 @@ class(#char #varying) String: FixedSizedCollection {
## ##
## ## fun(#class,#primitive) getBytes (rawptr, offset, byte_array, offset_in_buffer, len_in_buffer).
## ## fun(#class,#primitive) putBytes (rawptr, offset, byte_array, offset_in_buffer, len_in_buffer).
## }
}
## ---------------------------------------------------------------------------------