Fixed PermissionFrom()
This commit is contained in:
parent
af6f170833
commit
bef5b0328e
@ -78,7 +78,7 @@ func (token Token) Value () (value any) {
|
||||
|
||||
// Equals returns whether this token is equal to another token
|
||||
func (token Token) Equals (testToken Token) (match bool) {
|
||||
return token == testToken
|
||||
return token.value == testToken.value
|
||||
}
|
||||
|
||||
// Location returns the location of the token in its file.
|
||||
|
@ -15,8 +15,8 @@ type Permission struct {
|
||||
|
||||
func ModeFrom (char rune) (mode Mode) {
|
||||
switch (char) {
|
||||
case 'r': mode = ModeNone
|
||||
case 'n': mode = ModeRead
|
||||
case 'n': mode = ModeNone
|
||||
case 'r': mode = ModeRead
|
||||
case 'w': mode = ModeWrite
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user