Commits

Dave Zarzycki committed 86fd48456d1
Clean up var decl parsing This works now instead of giving a trail of parse errors: var x : Int, y : Int { get { return 42 } } This is now an explicit error rather than a trail of parse errors: var x, y : Int { get { return 42 } } Swift SVN r3811