You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting to go through nodes.coffee for comprehension, noticed that in the SimpleAssignable grammar rules, Value Accessor assumes that it can call .add() on the Value, but Super (which is a Value in the grammar) doesn't have an .add() method. So things like super.x.y and super['x'].y throw compiler errors when trying to call the missing .add() method
The text was updated successfully, but these errors were encountered:
helixbass
added a commit
to helixbass/copheescript
that referenced
this issue
Jun 26, 2017
Starting to go through
nodes.coffee
for comprehension, noticed that in theSimpleAssignable
grammar rules,Value Accessor
assumes that it can call.add()
on theValue
, butSuper
(which is aValue
in the grammar) doesn't have an.add()
method. So things likesuper.x.y
andsuper['x'].y
throw compiler errors when trying to call the missing.add()
methodThe text was updated successfully, but these errors were encountered: