Identifiers can no longer have arguments in them
Previously [[something something].something] would have been syntactically correct. This can lead to ugly and cluttered syntax due to violating the one thing per line guideline (that I've forgotten to write down) and would make the parser incredibly convoluded. Member selection in arf is not an operator and should not be treated as such. It would be much better to just use variables for this.
This commit is contained in:
@@ -41,7 +41,7 @@ func (identifier *Identifier) ToString () (output string) {
|
||||
output += "."
|
||||
}
|
||||
|
||||
output += trailItem.ToString(0, false)
|
||||
output += trailItem
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user