Skip to content

Commit ff56533

Browse files
alangpierceGeoffreyBooth
authored andcommitted
Fix CS2 build after merge pulled in a bare super call (#4447)
[CS2] Fix CS2 build after merge pulled in a bare super call
1 parent e88619a commit ff56533

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

lib/coffee-script/lexer.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/coffee-script/nodes.js

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/nodes.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ exports.Call = class Call extends Base
783783
@variable.locationData.first_column = locationData.first_column
784784
base.updateLocationDataIfMissing locationData
785785
delete @needsUpdatedStartLocation
786-
super
786+
super locationData
787787

788788
# Tag this invocation as creating a new instance.
789789
newInstance: ->

0 commit comments

Comments
 (0)