Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lvyahui8 committed Jun 19, 2024
1 parent addf50c commit caf3ff0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ellyn_ast/program.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ import (
"path"
"strings"
"sync"
"sync/atomic"
)

type ProgramContext struct {
rootPkgPath string
extra sync.Map
rootPkgPath string
extra sync.Map
funcCounter atomic.Int32

Check failure on line 20 in ellyn_ast/program.go

View workflow job for this annotation

GitHub Actions / build

undefined: atomic.Int32
blockCounter atomic.Int32

Check failure on line 21 in ellyn_ast/program.go

View workflow job for this annotation

GitHub Actions / build

undefined: atomic.Int32
}

func (p *ProgramContext) RootPkgPath() string {
Expand Down

0 comments on commit caf3ff0

Please sign in to comment.