cleaning up the grammar rule for Super

This commit is contained in:
Jeremy Ashkenas
2010-06-27 16:50:31 -04:00
parent af3b356d70
commit 3881324007
4 changed files with 10 additions and 10 deletions

View File

@@ -308,7 +308,7 @@ grammar: {
# Calling super.
Super: [
o "SUPER CALL_START ArgList OptComma CALL_END", -> new CallNode 'super', $3
o "SUPER Arguments", -> new CallNode 'super', $2
]
# A reference to the *this* current object.