Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changes to new mut/rwmut/mem #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions migo.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,11 +430,11 @@ func (s *RecvStatement) String() string {

// NewMem creates a new memory or variable reference.
type NewMem struct {
Name string
Name NamedVar
}

func (s *NewMem) String() string {
return fmt.Sprintf("letmem %s", nameFilter.Replace(s.Name))
return fmt.Sprintf("letmem %s", s.Name.Name())
}

// MemRead is a memory read statement.
Expand All @@ -459,11 +459,11 @@ func (s *MemWrite) String() string {

// NewSyncMutex is a sync.Mutex initialisation statement.
type NewSyncMutex struct {
Name string
Name NamedVar
}

func (m *NewSyncMutex) String() string {
return fmt.Sprintf("letsync %s mutex", nameFilter.Replace(m.Name))
return fmt.Sprintf("letsync %s mutex", m.Name.Name())
}

// SyncMutexLock is a sync.Mutex Lock statement.
Expand All @@ -488,11 +488,11 @@ func (m *SyncMutexUnlock) String() string {

// NewSyncRWMutex is a sync.RWMutex initialisation statement.
type NewSyncRWMutex struct {
Name string
Name NamedVar
}

func (m *NewSyncRWMutex) String() string {
return fmt.Sprintf("letsync %s rwmutex", nameFilter.Replace(m.Name))
return fmt.Sprintf("letsync %s rwmutex", m.Name.Name())
}

// SyncRWMutexRLock is a sync.RWMutex RLock statement.
Expand Down