Require parentheses around operator and setter arguments.

This commit is contained in:
Bob Nystrom
2014-04-08 17:54:37 -07:00
parent 45701692af
commit dca58ff747
19 changed files with 40 additions and 35 deletions
+2 -2
View File
@@ -34,9 +34,9 @@ class List is Sequence {
return result
}
+ that {
+(other) {
var result = this[0..-1]
for (element in that) {
for (element in other) {
result.add(element)
}
return result