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
{{ message }}
This repository has been archived by the owner on Jan 16, 2018. It is now read-only.
In BackboneJS we declare models/views like the following:
var AppView = Backbone.View.extend({
or var TagModel = Backbone.Model.extend({
or var TagsCollection = Backbone.Collection.extend({.
None of that could be found by goto-definition right now.
Probably, we should have something like /(^|\s)var\s+{word}(\s|$)/ in JavaScript.regexes or something backbone specific if by some reason we should not detect all var here.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In BackboneJS we declare models/views like the following:
var AppView = Backbone.View.extend({
or
var TagModel = Backbone.Model.extend({
or
var TagsCollection = Backbone.Collection.extend({
.None of that could be found by goto-definition right now.
Probably, we should have something like
/(^|\s)var\s+{word}(\s|$)/
inJavaScript.regexes
or something backbone specific if by some reason we should not detect allvar
here.The text was updated successfully, but these errors were encountered: