diff --git a/docs/v1/annotated-source/coffee-script.html b/docs/v1/annotated-source/coffee-script.html
index 99a4d22ab0..634839ba53 100644
--- a/docs/v1/annotated-source/coffee-script.html
+++ b/docs/v1/annotated-source/coffee-script.html
@@ -941,6 +941,7 @@
When setting the location, we sometimes need to update the start location to
+account for a newly-discovered new
operator to the left of us. This
+expands the range on the left, but not the right.
+
+
+
+ updateLocationDataIfMissing: (locationData) ->
+ if @locationData and @needsUpdatedStartLocation
+ @locationData.first_line = locationData.first_line
+ @locationData.first_column = locationData.first_column
+ base = @variable?.base or @variable
+ if base.needsUpdatedStartLocation
+ @variable.locationData.first_line = locationData.first_line
+ @variable.locationData.first_column = locationData.first_column
+ base.updateLocationDataIfMissing locationData
+ delete @needsUpdatedStartLocation
+ super
+
+
+
+
+