Don't use constructor symbol for search -- use class symbol and filter out only 'new C()' uses.

This commit is contained in:
Andy Hanson
2016-08-26 13:46:12 -07:00
parent f90d8ddca5
commit 7e6f18d765
3 changed files with 23 additions and 34 deletions

View File

@@ -28,6 +28,8 @@
//// }
//// method() { super(); }
////}
// Does not find 'super()' calls for a class that merely implements 'C',
// since those must be calling a different constructor.
////class E implements C {
//// constructor() { super(); }
////}